/[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.8 by sysadm, Sat Jun 14 10:03:32 2025 UTC Revision 1.13 by sysadm, Sun Oct 5 07:38:51 2025 UTC
# Line 16  Line 16 
16    
17  #include "lml.h"  #include "lml.h"
18  #include "log.h"  #include "log.h"
19    #include <errno.h>
20  #include <stdio.h>  #include <stdio.h>
21  #include <string.h>  #include <string.h>
22  #include <unistd.h>  #include <unistd.h>
 #include <errno.h>  
23    
24  #define STR_OUT_BUF_SIZE 256  #define STR_OUT_BUF_SIZE 256
25    
26  const char *str_in[] = {  const char *str_in[] = {
27          "[left]ABCD[right]EFG",          "[left]ABCD[right]EFG",
28          "A[u]B[italic]CD[/i]E[/u]F[b]G[/bold]",          "A[u]B[italic]CD[/i]E[/u]F[b]G[/bold]",
29          "A[url BCDE[/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 A B CD]EF[  /article]G",
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 39  const char *str_in[] = { Line 39  const char *str_in[] = {
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          "abc",          "abc",
41          "123456",          "123456",
42            "[color red]Red[/color][plain][color blue]Blue[/color][plain]",
43  };  };
44    
45  int str_cnt = 15;  int str_cnt = 16;
46    
47  int main(int argc, char *argv[])  int main(int argc, char *argv[])
48  {  {
# Line 58  int main(int argc, char *argv[]) Line 59  int main(int argc, char *argv[])
59          log_common_redir(STDOUT_FILENO);          log_common_redir(STDOUT_FILENO);
60          log_error_redir(STDERR_FILENO);          log_error_redir(STDERR_FILENO);
61    
62            printf("Test #1: lml_tag = 1\n");
63            for (i = 0; i < str_cnt; i++)
64            {
65                    j = lml_render(str_in[i], str_out_buf, sizeof(str_out_buf), 1);
66    
67                    printf("Input(len=%ld): %s\nOutput(len=%d): %s\n", strlen(str_in[i]), str_in[i], j, str_out_buf);
68            }
69            printf("Test #1: Done\n");
70    
71            printf("Test #2: lml_tag = 0\n");
72          for (i = 0; i < str_cnt; i++)          for (i = 0; i < str_cnt; i++)
73          {          {
74                  j = lml_plain(str_in[i], str_out_buf, sizeof(str_out_buf));                  j = lml_render(str_in[i], str_out_buf, sizeof(str_out_buf), 0);
75    
76                  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);
77          }          }
78            printf("Test #2: Done\n");
79    
80          log_end();          log_end();
81    


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

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