is_absolute_test.c (2813B)
1 #include <cwalk.h> 2 #include <stdlib.h> 3 4 int is_absolute_relative_windows(void) 5 { 6 cwk_path_set_style(CWK_STYLE_WINDOWS); 7 8 if (cwk_path_is_absolute("..\\hello\\world.txt")) { 9 return EXIT_FAILURE; 10 } 11 12 return EXIT_SUCCESS; 13 } 14 15 int is_absolute_relative_drive(void) 16 { 17 cwk_path_set_style(CWK_STYLE_WINDOWS); 18 19 if (cwk_path_is_absolute("C:test.txt")) { 20 return EXIT_FAILURE; 21 } 22 23 return EXIT_SUCCESS; 24 } 25 26 int is_absolute_device_question_mark(void) 27 { 28 cwk_path_set_style(CWK_STYLE_WINDOWS); 29 30 if (!cwk_path_is_absolute("\\\\?\\mydevice\\test")) { 31 return EXIT_FAILURE; 32 } 33 34 return EXIT_SUCCESS; 35 } 36 37 int is_absolute_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_absolute("\\\\.\\mydevice\\test")) { 43 return EXIT_FAILURE; 44 } 45 46 return EXIT_SUCCESS; 47 } 48 49 int is_absolute_device_unc(void) 50 { 51 cwk_path_set_style(CWK_STYLE_WINDOWS); 52 53 if (!cwk_path_is_absolute("\\\\.\\UNC\\LOCALHOST\\c$\\temp\\test-file.txt")) { 54 return EXIT_FAILURE; 55 } 56 57 return EXIT_SUCCESS; 58 } 59 60 int is_absolute_unc(void) 61 { 62 cwk_path_set_style(CWK_STYLE_WINDOWS); 63 64 if (!cwk_path_is_absolute("\\\\server\\folder\\data")) { 65 return EXIT_FAILURE; 66 } 67 68 return EXIT_SUCCESS; 69 } 70 71 int is_absolute_absolute_drive(void) 72 { 73 cwk_path_set_style(CWK_STYLE_WINDOWS); 74 75 if (!cwk_path_is_absolute("C:\\test.txt")) { 76 return EXIT_FAILURE; 77 } 78 79 return EXIT_SUCCESS; 80 } 81 82 int is_absolute_unix_drive(void) 83 { 84 cwk_path_set_style(CWK_STYLE_UNIX); 85 86 if (cwk_path_is_absolute("C:\\test.txt")) { 87 return EXIT_FAILURE; 88 } 89 90 return EXIT_SUCCESS; 91 } 92 93 int is_absolute_unix_backslash(void) 94 { 95 cwk_path_set_style(CWK_STYLE_UNIX); 96 97 if (cwk_path_is_absolute("\\folder\\")) { 98 return EXIT_FAILURE; 99 } 100 101 return EXIT_SUCCESS; 102 } 103 104 int is_absolute_windows_slash(void) 105 { 106 cwk_path_set_style(CWK_STYLE_WINDOWS); 107 108 if (!cwk_path_is_absolute("/test.txt")) { 109 return EXIT_FAILURE; 110 } 111 112 return EXIT_SUCCESS; 113 } 114 115 int is_absolute_windows_backslash(void) 116 { 117 cwk_path_set_style(CWK_STYLE_WINDOWS); 118 119 if (!cwk_path_is_absolute("\\test.txt")) { 120 return EXIT_FAILURE; 121 } 122 123 return EXIT_SUCCESS; 124 } 125 126 int is_absolute_relative(void) 127 { 128 cwk_path_set_style(CWK_STYLE_UNIX); 129 130 if (cwk_path_is_absolute("test.txt")) { 131 return EXIT_FAILURE; 132 } 133 134 return EXIT_SUCCESS; 135 } 136 137 int is_absolute_absolute(void) 138 { 139 cwk_path_set_style(CWK_STYLE_UNIX); 140 if (!cwk_path_is_absolute("/test.txt")) { 141 return EXIT_FAILURE; 142 } 143 144 return EXIT_SUCCESS; 145 } 146 147 int is_absolute_root(void) 148 { 149 cwk_path_set_style(CWK_STYLE_UNIX); 150 if (!cwk_path_is_absolute("/")) { 151 return EXIT_FAILURE; 152 } 153 154 return EXIT_SUCCESS; 155 } 156 157 int is_absolute_dir(void) 158 { 159 cwk_path_set_style(CWK_STYLE_UNIX); 160 if (!cwk_path_is_absolute("/dir")) { 161 return EXIT_FAILURE; 162 } 163 164 return EXIT_SUCCESS; 165 }