fnmatch_variation.phpt 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419
  1. --TEST--
  2. Test fnmatch() function: Variations
  3. --SKIPIF--
  4. <?php
  5. if (!function_exists('fnmatch'))
  6. die("skip fnmatch() function is not available");
  7. ?>
  8. --FILE--
  9. <?php
  10. echo "*** Testing fnmatch() with file and various patterns ***\n";
  11. $file_name = __DIR__."/match.tmp";
  12. /* avoid using \, it breaks the pattern */
  13. if (substr(PHP_OS, 0, 3) == 'WIN') {
  14. $file_name = str_replace('\\','/', $file_name);
  15. }
  16. fopen($file_name, "w");
  17. $pattern_arr = array(
  18. 0 => "*.tmp",
  19. 1 => "match*",
  20. 2 => "mat*",
  21. 3 => "mat*tmp",
  22. 4 => "m*t",
  23. 5 => "ma[pt]ch*",
  24. 6 => "*.t*",
  25. 7 => "***.tmp",
  26. 8 => "match**",
  27. 9 => "*.t*p",
  28. 10 => "",
  29. 11 => "match",
  30. 12 => ".tmp",
  31. 13 => "?match",
  32. 14 => "match?tmp",
  33. 15 => "?tmp",
  34. 16 => "match?",
  35. 17 => "?match?",
  36. 18 => "match.tmp",
  37. 19 => "/match.tmp",
  38. 20 => "/match.tmp/",
  39. 21 => 'match.tmp',
  40. 22 => 'match.tmp\0',
  41. 23 => "match.tmp\0",
  42. 24 => "match\0.tmp",
  43. 25 => chr(109).chr(97)."tch.tmp",
  44. 26 => chr(109).chr(97).chr(116).chr(99).chr(104).".tmp",
  45. 27 => chr(109).chr(97).chr(116).chr(99).chr(104).chr(46).chr(116).chr(120).chr(116),
  46. 28 => chr(109).chr(97).chr(116).chr(99).chr(104).".".chr(116).chr(120).chr(116),
  47. 29 => "MATCH.TMP",
  48. 30 => "MATCH*",
  49. 31 => $file_name,
  50. /* binary inputs */
  51. 32 => b"match*",
  52. 33 => b"*.tmp",
  53. 34 => b"mat*",
  54. 35 => b"mat*tmp",
  55. 36 => b"m*t",
  56. );
  57. for( $i = 0; $i<count($pattern_arr); $i++ ) {
  58. echo "-- Iteration $i --\n";
  59. try {
  60. var_dump( fnmatch($pattern_arr[$i], $file_name) );
  61. } catch (Error $e) {
  62. echo $e->getMessage(), "\n";
  63. }
  64. }
  65. unlink($file_name);
  66. echo "\n*** Testing fnmatch() with other types other than files ***";
  67. /* defining a common function */
  68. function match_( $pattern, $string ) {
  69. for( $i = 0; $i<count($pattern); $i++ ) {
  70. echo "-- Iteration $i --\n";
  71. for( $j = 0; $j<count($string); $j++ ) {
  72. try {
  73. var_dump( fnmatch($pattern[$i], $string[$j]) );
  74. } catch (Error $e) {
  75. echo $e->getMessage(), "\n";
  76. }
  77. }
  78. }
  79. }
  80. echo "\n--- With Integers ---\n";
  81. $int_arr = array(
  82. 16,
  83. 16.00,
  84. 020,
  85. 020.00,
  86. 0xF,
  87. 0xF0000
  88. );
  89. match_($int_arr, $int_arr);
  90. echo "\n--- With Strings ---\n";
  91. $str_arr = array(
  92. "string",
  93. "string\0",
  94. 'string',
  95. "str\0ing",
  96. "stringstring",
  97. /* binary input */
  98. b"string"
  99. );
  100. match_($str_arr, $str_arr);
  101. echo "\n--- With booleans ---\n";
  102. $bool_arr = array(
  103. TRUE,
  104. true,
  105. 1,
  106. 10,
  107. FALSE,
  108. false,
  109. 0,
  110. "",
  111. "string"
  112. );
  113. match_($bool_arr, $bool_arr);
  114. echo "\n--- With NULL ---\n";
  115. $null_arr = array(
  116. "",
  117. "\0",
  118. "string",
  119. 0
  120. );
  121. match_($null_arr, $null_arr);
  122. echo "\n*** Done ***\n";
  123. ?>
  124. --EXPECT--
  125. *** Testing fnmatch() with file and various patterns ***
  126. -- Iteration 0 --
  127. bool(true)
  128. -- Iteration 1 --
  129. bool(false)
  130. -- Iteration 2 --
  131. bool(false)
  132. -- Iteration 3 --
  133. bool(false)
  134. -- Iteration 4 --
  135. bool(false)
  136. -- Iteration 5 --
  137. bool(false)
  138. -- Iteration 6 --
  139. bool(true)
  140. -- Iteration 7 --
  141. bool(true)
  142. -- Iteration 8 --
  143. bool(false)
  144. -- Iteration 9 --
  145. bool(true)
  146. -- Iteration 10 --
  147. bool(false)
  148. -- Iteration 11 --
  149. bool(false)
  150. -- Iteration 12 --
  151. bool(false)
  152. -- Iteration 13 --
  153. bool(false)
  154. -- Iteration 14 --
  155. bool(false)
  156. -- Iteration 15 --
  157. bool(false)
  158. -- Iteration 16 --
  159. bool(false)
  160. -- Iteration 17 --
  161. bool(false)
  162. -- Iteration 18 --
  163. bool(false)
  164. -- Iteration 19 --
  165. bool(false)
  166. -- Iteration 20 --
  167. bool(false)
  168. -- Iteration 21 --
  169. bool(false)
  170. -- Iteration 22 --
  171. bool(false)
  172. -- Iteration 23 --
  173. fnmatch(): Argument #1 ($pattern) must not contain any null bytes
  174. -- Iteration 24 --
  175. fnmatch(): Argument #1 ($pattern) must not contain any null bytes
  176. -- Iteration 25 --
  177. bool(false)
  178. -- Iteration 26 --
  179. bool(false)
  180. -- Iteration 27 --
  181. bool(false)
  182. -- Iteration 28 --
  183. bool(false)
  184. -- Iteration 29 --
  185. bool(false)
  186. -- Iteration 30 --
  187. bool(false)
  188. -- Iteration 31 --
  189. bool(true)
  190. -- Iteration 32 --
  191. bool(false)
  192. -- Iteration 33 --
  193. bool(true)
  194. -- Iteration 34 --
  195. bool(false)
  196. -- Iteration 35 --
  197. bool(false)
  198. -- Iteration 36 --
  199. bool(false)
  200. *** Testing fnmatch() with other types other than files ***
  201. --- With Integers ---
  202. -- Iteration 0 --
  203. bool(true)
  204. bool(true)
  205. bool(true)
  206. bool(false)
  207. bool(false)
  208. bool(false)
  209. -- Iteration 1 --
  210. bool(true)
  211. bool(true)
  212. bool(true)
  213. bool(false)
  214. bool(false)
  215. bool(false)
  216. -- Iteration 2 --
  217. bool(true)
  218. bool(true)
  219. bool(true)
  220. bool(false)
  221. bool(false)
  222. bool(false)
  223. -- Iteration 3 --
  224. bool(false)
  225. bool(false)
  226. bool(false)
  227. bool(true)
  228. bool(false)
  229. bool(false)
  230. -- Iteration 4 --
  231. bool(false)
  232. bool(false)
  233. bool(false)
  234. bool(false)
  235. bool(true)
  236. bool(false)
  237. -- Iteration 5 --
  238. bool(false)
  239. bool(false)
  240. bool(false)
  241. bool(false)
  242. bool(false)
  243. bool(true)
  244. --- With Strings ---
  245. -- Iteration 0 --
  246. bool(true)
  247. fnmatch(): Argument #2 ($filename) must not contain any null bytes
  248. bool(true)
  249. fnmatch(): Argument #2 ($filename) must not contain any null bytes
  250. bool(false)
  251. bool(true)
  252. -- Iteration 1 --
  253. fnmatch(): Argument #1 ($pattern) must not contain any null bytes
  254. fnmatch(): Argument #1 ($pattern) must not contain any null bytes
  255. fnmatch(): Argument #1 ($pattern) must not contain any null bytes
  256. fnmatch(): Argument #1 ($pattern) must not contain any null bytes
  257. fnmatch(): Argument #1 ($pattern) must not contain any null bytes
  258. fnmatch(): Argument #1 ($pattern) must not contain any null bytes
  259. -- Iteration 2 --
  260. bool(true)
  261. fnmatch(): Argument #2 ($filename) must not contain any null bytes
  262. bool(true)
  263. fnmatch(): Argument #2 ($filename) must not contain any null bytes
  264. bool(false)
  265. bool(true)
  266. -- Iteration 3 --
  267. fnmatch(): Argument #1 ($pattern) must not contain any null bytes
  268. fnmatch(): Argument #1 ($pattern) must not contain any null bytes
  269. fnmatch(): Argument #1 ($pattern) must not contain any null bytes
  270. fnmatch(): Argument #1 ($pattern) must not contain any null bytes
  271. fnmatch(): Argument #1 ($pattern) must not contain any null bytes
  272. fnmatch(): Argument #1 ($pattern) must not contain any null bytes
  273. -- Iteration 4 --
  274. bool(false)
  275. fnmatch(): Argument #2 ($filename) must not contain any null bytes
  276. bool(false)
  277. fnmatch(): Argument #2 ($filename) must not contain any null bytes
  278. bool(true)
  279. bool(false)
  280. -- Iteration 5 --
  281. bool(true)
  282. fnmatch(): Argument #2 ($filename) must not contain any null bytes
  283. bool(true)
  284. fnmatch(): Argument #2 ($filename) must not contain any null bytes
  285. bool(false)
  286. bool(true)
  287. --- With booleans ---
  288. -- Iteration 0 --
  289. bool(true)
  290. bool(true)
  291. bool(true)
  292. bool(false)
  293. bool(false)
  294. bool(false)
  295. bool(false)
  296. bool(false)
  297. bool(false)
  298. -- Iteration 1 --
  299. bool(true)
  300. bool(true)
  301. bool(true)
  302. bool(false)
  303. bool(false)
  304. bool(false)
  305. bool(false)
  306. bool(false)
  307. bool(false)
  308. -- Iteration 2 --
  309. bool(true)
  310. bool(true)
  311. bool(true)
  312. bool(false)
  313. bool(false)
  314. bool(false)
  315. bool(false)
  316. bool(false)
  317. bool(false)
  318. -- Iteration 3 --
  319. bool(false)
  320. bool(false)
  321. bool(false)
  322. bool(true)
  323. bool(false)
  324. bool(false)
  325. bool(false)
  326. bool(false)
  327. bool(false)
  328. -- Iteration 4 --
  329. bool(false)
  330. bool(false)
  331. bool(false)
  332. bool(false)
  333. bool(true)
  334. bool(true)
  335. bool(false)
  336. bool(true)
  337. bool(false)
  338. -- Iteration 5 --
  339. bool(false)
  340. bool(false)
  341. bool(false)
  342. bool(false)
  343. bool(true)
  344. bool(true)
  345. bool(false)
  346. bool(true)
  347. bool(false)
  348. -- Iteration 6 --
  349. bool(false)
  350. bool(false)
  351. bool(false)
  352. bool(false)
  353. bool(false)
  354. bool(false)
  355. bool(true)
  356. bool(false)
  357. bool(false)
  358. -- Iteration 7 --
  359. bool(false)
  360. bool(false)
  361. bool(false)
  362. bool(false)
  363. bool(true)
  364. bool(true)
  365. bool(false)
  366. bool(true)
  367. bool(false)
  368. -- Iteration 8 --
  369. bool(false)
  370. bool(false)
  371. bool(false)
  372. bool(false)
  373. bool(false)
  374. bool(false)
  375. bool(false)
  376. bool(false)
  377. bool(true)
  378. --- With NULL ---
  379. -- Iteration 0 --
  380. bool(true)
  381. fnmatch(): Argument #2 ($filename) must not contain any null bytes
  382. bool(false)
  383. bool(false)
  384. -- Iteration 1 --
  385. fnmatch(): Argument #1 ($pattern) must not contain any null bytes
  386. fnmatch(): Argument #1 ($pattern) must not contain any null bytes
  387. fnmatch(): Argument #1 ($pattern) must not contain any null bytes
  388. fnmatch(): Argument #1 ($pattern) must not contain any null bytes
  389. -- Iteration 2 --
  390. bool(false)
  391. fnmatch(): Argument #2 ($filename) must not contain any null bytes
  392. bool(true)
  393. bool(false)
  394. -- Iteration 3 --
  395. bool(false)
  396. fnmatch(): Argument #2 ($filename) must not contain any null bytes
  397. bool(false)
  398. bool(true)
  399. *** Done ***