is_relative_test.c (2490B)
1 #include <cwalk.h> 2 #include <stdlib.h> 3 4 int is_relative_relative_windows(void) 5 { 6 cwk_path_set_style(CWK_STYLE_WINDOWS); 7 8 if (!cwk_path_is_relative("..\\hello\\world.txt")) { 9 return EXIT_FAILURE; 10 } 11 12 return EXIT_SUCCESS; 13 } 14 15 int is_relative_relative_drive(void) 16 { 17 cwk_path_set_style(CWK_STYLE_WINDOWS); 18 19 if (!cwk_path_is_relative("C:test.txt")) { 20 return EXIT_FAILURE; 21 } 22 23 return EXIT_SUCCESS; 24 } 25 26 int is_relative_device_question_mark(void) 27 { 28 cwk_path_set_style(CWK_STYLE_WINDOWS); 29 30 if (cwk_path_is_relative("\\\\?\\mydevice\\test")) { 31 return EXIT_FAILURE; 32 } 33 34 return EXIT_SUCCESS; 35 } 36 37 int is_relative_device_dot(void) 38 { 39 cwk_path_set_style(CWK_STYLE_WINDOWS); 40 cwk_path_is_absolute("\\\\.\\mydevice\\test"); 41 42 if (cwk_path_is_relative("\\\\.\\mydevice\\test")) { 43 return EXIT_FAILURE; 44 } 45 46 return EXIT_SUCCESS; 47 } 48 49 int is_relative_device_unc(void) 50 { 51 cwk_path_set_style(CWK_STYLE_WINDOWS); 52 53 if (cwk_path_is_relative("\\\\.\\UNC\\LOCALHOST\\c$\\temp\\test-file.txt")) { 54 return EXIT_FAILURE; 55 } 56 57 return EXIT_SUCCESS; 58 } 59 60 int is_relative_unc(void) 61 { 62 cwk_path_set_style(CWK_STYLE_WINDOWS); 63 64 if (cwk_path_is_relative("\\\\server\\folder\\data")) { 65 return EXIT_FAILURE; 66 } 67 68 return EXIT_SUCCESS; 69 } 70 71 int is_relative_absolute_drive(void) 72 { 73 cwk_path_set_style(CWK_STYLE_WINDOWS); 74 75 if (cwk_path_is_relative("C:\\test.txt")) { 76 return EXIT_FAILURE; 77 } 78 79 return EXIT_SUCCESS; 80 } 81 82 int is_relative_unix_drive(void) 83 { 84 cwk_path_set_style(CWK_STYLE_UNIX); 85 86 if (!cwk_path_is_relative("C:\\test.txt")) { 87 return EXIT_FAILURE; 88 } 89 90 return EXIT_SUCCESS; 91 } 92 93 int is_relative_unix_backslash(void) 94 { 95 cwk_path_set_style(CWK_STYLE_UNIX); 96 97 if (!cwk_path_is_relative("\\folder\\")) { 98 return EXIT_FAILURE; 99 } 100 101 return EXIT_SUCCESS; 102 } 103 104 int is_relative_windows_slash(void) 105 { 106 cwk_path_set_style(CWK_STYLE_WINDOWS); 107 108 if (cwk_path_is_relative("/test.txt")) { 109 return EXIT_FAILURE; 110 } 111 112 return EXIT_SUCCESS; 113 } 114 115 int is_relative_windows_backslash(void) 116 { 117 cwk_path_set_style(CWK_STYLE_WINDOWS); 118 119 if (cwk_path_is_relative("\\test.txt")) { 120 return EXIT_FAILURE; 121 } 122 123 return EXIT_SUCCESS; 124 } 125 126 int is_relative_relative(void) 127 { 128 cwk_path_set_style(CWK_STYLE_UNIX); 129 130 if (!cwk_path_is_relative("test.txt")) { 131 return EXIT_FAILURE; 132 } 133 134 return EXIT_SUCCESS; 135 } 136 137 int is_relative_absolute(void) 138 { 139 cwk_path_set_style(CWK_STYLE_UNIX); 140 if (cwk_path_is_relative("/test.txt")) { 141 return EXIT_FAILURE; 142 } 143 144 return EXIT_SUCCESS; 145 }