FreeRDP
TestThreadCommandLineToArgv.c
1 
2 #include <stdio.h>
3 #include <winpr/crt.h>
4 #include <winpr/thread.h>
5 
6 static const char* test_args_line_1 = "app.exe abc d e";
7 
8 static const char* test_args_list_1[] = { "app.exe", "abc", "d", "e", NULL };
9 
10 static const char* test_args_line_2 = "app.exe abc \t def";
11 
12 static const char* test_args_list_2[] = { "app.exe", "abc", "def", NULL };
13 
14 static const char* test_args_line_3 = "app.exe \"abc\" d e";
15 
16 static const char* test_args_list_3[] = { "app.exe", "abc", "d", "e", NULL };
17 
18 static const char* test_args_line_4 = "app.exe a\\\\b d\"e f\"g h";
19 
20 static const char* test_args_list_4[] = { "app.exe", "a\\\\b", "de fg", "h", NULL };
21 
22 static const char* test_args_line_5 = "app.exe a\\\\\\\"b c d";
23 
24 static const char* test_args_list_5[] = { "app.exe", "a\\\"b", "c", "d", NULL };
25 
26 static const char* test_args_line_6 = "app.exe a\\\\\\\\\"b c\" d e";
27 
28 static const char* test_args_list_6[] = { "app.exe", "a\\\\b c", "d", "e", NULL };
29 
30 static const char* test_args_line_7 = "app.exe a\\\\\\\\\"b c\" d e f\\\\\\\\\"g h\" i j";
31 
32 static const char* test_args_list_7[] = { "app.exe", "a\\\\b c", "d", "e",
33  "f\\\\g h", "i", "j", NULL };
34 
35 static int test_command_line_parsing_case(const char* line, const char** list)
36 {
37  LPSTR* pArgs = NULL;
38  int numArgs = 0;
39 
40  pArgs = NULL;
41  numArgs = 0;
42 
43  printf("Parsing: %s\n", line);
44 
45  pArgs = CommandLineToArgvA(line, &numArgs);
46 
47  printf("pNumArgs: %d\n", numArgs);
48 
49  for (int i = 0; i < numArgs; i++)
50  {
51  printf("argv[%d] = %s\n", i, pArgs[i]);
52  }
53 
54  free(pArgs);
55 
56  return 0;
57 }
58 
59 int TestThreadCommandLineToArgv(int argc, char* argv[])
60 {
61 
62  WINPR_UNUSED(argc);
63  WINPR_UNUSED(argv);
64 
65  test_command_line_parsing_case(test_args_line_1, test_args_list_1);
66  test_command_line_parsing_case(test_args_line_2, test_args_list_2);
67  test_command_line_parsing_case(test_args_line_3, test_args_list_3);
68  test_command_line_parsing_case(test_args_line_4, test_args_list_4);
69  test_command_line_parsing_case(test_args_line_5, test_args_list_5);
70  test_command_line_parsing_case(test_args_line_6, test_args_list_6);
71  test_command_line_parsing_case(test_args_line_7, test_args_list_7);
72 
73  return 0;
74 }