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

Diff of /lbbs/src/test_lml.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

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


Legend:
Removed lines/characters  
Changed lines/characters
  Added lines/characters

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