fileinode_variation.phpt 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. --TEST--
  2. Test fileinode() function: Variations
  3. --SKIPIF--
  4. <?php
  5. if (PHP_OS_FAMILY === 'Windows') {
  6. require_once __DIR__ . '/windows_links/common.inc';
  7. skipIfSeCreateSymbolicLinkPrivilegeIsDisabled(__FILE__);
  8. }
  9. ?>
  10. --FILE--
  11. <?php
  12. echo "*** Testing fileinode() with files, links and directories ***\n";
  13. $file_path = __DIR__;
  14. $file1 = $file_path."/fileinode1_variation.tmp";
  15. $file2 = $file_path."/fileinode2_variation.tmp";
  16. $link1 = $file_path."/fileinode1_variation_link.tmp";
  17. $link2 = $file_path."/fileinode2_variation_link.tmp";
  18. echo "-- Testing with files --\n";
  19. //creating the files
  20. fclose( fopen( $file1, "w" ) );
  21. fclose( fopen( $file2, "w" ) );
  22. print( fileinode( $file1) )."\n";
  23. print( fileinode( $file2) )."\n";
  24. clearstatcache();
  25. echo "-- Testing with links: hard link --\n";
  26. link( $file1, $link1); // Creating an hard link
  27. print( fileinode( $file1) )."\n";
  28. clearstatcache();
  29. print( fileinode( $link1) )."\n";
  30. clearstatcache();
  31. echo "-- Testing with links: soft link --\n";
  32. symlink( $file2, $link2); // Creating a soft link
  33. print( fileinode( $file2) )."\n";
  34. clearstatcache();
  35. print( fileinode( $link2) )."\n";
  36. unlink( $link1 );
  37. unlink( $link2 );
  38. echo "-- Testing after copying a file --\n";
  39. copy( $file1, $file_path."/fileinode1_variation_new.tmp");
  40. print( fileinode( $file1) )."\n";
  41. clearstatcache();
  42. print( fileinode( $file_path."/fileinode1_variation_new.tmp") )."\n";
  43. unlink( $file_path."/fileinode1_variation_new.tmp");
  44. unlink( $file1);
  45. unlink( $file2);
  46. echo "-- Testing after renaming the file --\n";
  47. fclose( fopen("$file_path/old.txt", "w") );
  48. print( fileinode("$file_path/old.txt") )."\n";
  49. clearstatcache();
  50. rename("$file_path/old.txt", "$file_path/new.txt");
  51. print( fileinode("$file_path/new.txt") )."\n";
  52. unlink("$file_path/new.txt");
  53. echo "-- Testing with directories --\n";
  54. mkdir("$file_path/dir");
  55. print( fileinode("$file_path/dir") )."\n";
  56. clearstatcache();
  57. mkdir("$file_path/dir/subdir");
  58. print( fileinode("$file_path/dir/subdir") )."\n";
  59. clearstatcache();
  60. echo "-- Testing with binary input --\n";
  61. print( fileinode(b"$file_path/dir") )."\n";
  62. clearstatcache();
  63. print( fileinode(b"$file_path/dir/subdir") );
  64. rmdir("$file_path/dir/subdir");
  65. rmdir("$file_path/dir");
  66. echo "\n*** Done ***";
  67. ?>
  68. --EXPECTF--
  69. *** Testing fileinode() with files, links and directories ***
  70. -- Testing with files --
  71. %i
  72. %i
  73. -- Testing with links: hard link --
  74. %i
  75. %i
  76. -- Testing with links: soft link --
  77. %i
  78. %i
  79. -- Testing after copying a file --
  80. %i
  81. %i
  82. -- Testing after renaming the file --
  83. %i
  84. %i
  85. -- Testing with directories --
  86. %i
  87. %i
  88. -- Testing with binary input --
  89. %i
  90. %i
  91. *** Done ***