/[LeafOK_CVS]/lbbs/src/test_lml.c
ViewVC logotype

Contents of /lbbs/src/test_lml.c

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.26 - (show annotations)
Sat Nov 1 07:00:27 2025 UTC (4 months, 2 weeks ago) by sysadm
Branch: MAIN
Changes since 1.25: +18 -4 lines
Content type: text/x-csrc
Fix inconsistent behavior between web / telnet version of LML()
Add time cost benchmark in test_lml

1 /***************************************************************************
2 test_lml.c - description
3 -------------------
4 Copyright : (C) 2004-2025 by Leaflet
5 Email : leaflet@leafok.com
6 ***************************************************************************/
7
8 /***************************************************************************
9 * *
10 * This program is free software; you can redistribute it and/or modify *
11 * it under the terms of the GNU General Public License as published by *
12 * the Free Software Foundation; either version 3 of the License, or *
13 * (at your option) any later version. *
14 * *
15 ***************************************************************************/
16
17 #include "lml.h"
18 #include "log.h"
19 #include <errno.h>
20 #include <stdio.h>
21 #include <string.h>
22 #include <time.h>
23 #include <unistd.h>
24
25 #define STR_OUT_BUF_SIZE 256
26
27 const char *str_in[] = {
28 "[left]ABCD[right]EFG",
29 "A[u]B[italic]CD[/i]E[/u]F[b]G[/bold]",
30 "A[url BC DE]测试a网址[/url]FG",
31 "AB[email CDE]F[/eMAil]G01[emaiL]23456[/email]789",
32 "A[user DE]BC[/User]FG",
33 "[article A B CD]EF[ /article]G[article 789]123[/article]456",
34 "A[ image BCD]EFG",
35 "AB[ Flash CDE ]FG",
36 "AB[bwf]CDEFG",
37 "[lef]A[rightBCD[right]EF[left[left[]G[left",
38 "A[ color BCD]EF[/color]G[color black]0[/color][color magenta]1[color cyan]23[/color]4[color red]5[/color]6[color yellOw]7[/color]8[color green]9[color blue]0[/color]",
39 "A[quote]B[quote]C[quote]D[quote]E[/quote]F[/quote]G[/quote]0[/quote]1[/quote]2[quote]3[/quote]4[/quote]56789",
40 ": ABCDE[quote]FG\r\nab[/quote]cd[quote]ef[quote]g\r\n: : 012[/quote]345[/quote]6789\nABC[quote]DEFG",
41 "\033[1;35;42mABC\033[0mDE\033[334mF\033[33mG\033[12345\033[m",
42 "123456",
43 "[color red]Red[/color][plain][color blue]Blue[/color][plain]",
44 "[color yellow]Yellow[/color][nolml][left][color blue]Blue[/color][right][lml][color red]Red[/color]",
45 "[abc][left ][ right ][ colory ][left \nABCD[left]EFG[right ",
46 "ABCD]EFG",
47 ": : A123456789B123456789C123456789D123456789E123456789F123456789G123456789H123456789I123456789J123456789",
48 "\033[0m\033[I \033[1;32m;, ;,\033[m",
49 "\n01234567890123456789012345678901234567890123456789012345678901234567890123456789\n2\n01234567890123456789012345678901234567890123456789012345678901234567890123456789\n4\n5\n",
50 "A[012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789]B",
51 };
52
53 const int str_cnt = sizeof(str_in) / sizeof(const char *);
54
55 int main(int argc, char *argv[])
56 {
57 clock_t clock_begin;
58 clock_t clock_end;
59 double prog_time_spent;
60 double lml_time_spent;
61
62 char str_out_buf[STR_OUT_BUF_SIZE];
63 int i;
64 int j;
65
66 if (log_begin("../log/bbsd.log", "../log/error.log") < 0)
67 {
68 printf("Open log error\n");
69 return -1;
70 }
71
72 log_common_redir(STDOUT_FILENO);
73 log_error_redir(STDERR_FILENO);
74
75 clock_begin = clock();
76
77 printf("Test #1: quote_mode = 0\n");
78 for (i = 0; i < str_cnt; i++)
79 {
80 j = lml_render(str_in[i], str_out_buf, sizeof(str_out_buf), 80, 0);
81
82 printf("Input(len=%ld): %s\nOutput(len=%d): %s\n", strlen(str_in[i]), str_in[i], j, str_out_buf);
83 }
84 printf("Test #1: Done\n\n");
85
86 printf("Test #2: quote_mode = 1\n");
87 for (i = 0; i < str_cnt; i++)
88 {
89 j = lml_render(str_in[i], str_out_buf, sizeof(str_out_buf), 80, 1);
90
91 printf("Input(len=%ld): %s\nOutput(len=%d): %s\n", strlen(str_in[i]), str_in[i], j, str_out_buf);
92 }
93 printf("Test #2: Done\n\n");
94
95 clock_end = clock();
96 prog_time_spent = (double)(clock_end - clock_begin) / (CLOCKS_PER_SEC / 1000);
97 lml_time_spent = (double)lml_total_exec_duration / (CLOCKS_PER_SEC / 1000);
98
99 printf("\npage_exec_duration=%.2f, lml_exec_duration=%.2f\n", prog_time_spent, lml_time_spent);
100
101 log_end();
102
103 return 0;
104 }

webmaster@leafok.com
ViewVC Help
Powered by ViewVC 1.3.0-beta1