copy_variation16.phpt 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  1. --TEST--
  2. Test copy() function: usage variations - copy data file across dirs
  3. --SKIPIF--
  4. <?php
  5. if(substr(PHP_OS, 0, 3) == "WIN")
  6. die("skip Do not run on Windows");
  7. ?>
  8. --FILE--
  9. <?php
  10. /* Test copy() function: Trying to create copy of source file
  11. into different destination dir paths given in various notations */
  12. echo "*** Testing copy() function: copying data file across directories ***\n";
  13. $base_dir = __DIR__."/copy_variation16";
  14. mkdir($base_dir);
  15. $sub_dir = $base_dir."/copy_variation16_sub";
  16. mkdir($sub_dir);
  17. $dirname_with_blank = $sub_dir."/copy variation16";
  18. mkdir($dirname_with_blank);
  19. $src_file_name = __DIR__."/copy_variation16.tmp";
  20. $file_handle = fopen($src_file_name, "w");
  21. fwrite($file_handle, str_repeat("Hello world, this is 2007 year ...\n", 100));
  22. fclose($file_handle);
  23. echo "- Size of source file => ";
  24. var_dump( filesize($src_file_name) );
  25. clearstatcache();
  26. $dests = array(
  27. $base_dir."/copy_copy_variation16.tmp",
  28. $base_dir."/copy_variation16_sub/copy_copy_variation16.tmp",
  29. "$sub_dir/copy_copy_variation16.tmp",
  30. "$sub_dir/../copy_copy_variation16.tmp",
  31. "$sub_dir/../copy_variation16_sub/copy_copy_variation16.tmp",
  32. "$sub_dir/..///../copy_copy_variation16.tmp",
  33. "$sub_dir///../*",
  34. "$dirname_with_blank/copy_copy_variation16.tmp"
  35. );
  36. echo "\n--- Now applying copy() on source file to create copies ---";
  37. $count = 1;
  38. foreach($dests as $dest) {
  39. echo "\n-- Iteration $count --\n";
  40. echo "Size of source file => ";
  41. var_dump( filesize($src_file_name) );
  42. echo "Copy operation => ";
  43. var_dump( copy($src_file_name, $dest) );
  44. echo "Existence of destination file => ";
  45. var_dump( file_exists($dest) );
  46. echo "Destination file name is => ";
  47. print($dest);
  48. echo "\n";
  49. echo "Size of destination file => ";
  50. var_dump( filesize($dest) );
  51. clearstatcache();
  52. unlink("$dest");
  53. $count++;
  54. }
  55. unlink($src_file_name);
  56. rmdir($dirname_with_blank);
  57. rmdir($sub_dir);
  58. rmdir($base_dir);
  59. echo "*** Done ***\n";
  60. ?>
  61. --EXPECTF--
  62. *** Testing copy() function: copying data file across directories ***
  63. - Size of source file => int(3500)
  64. --- Now applying copy() on source file to create copies ---
  65. -- Iteration 1 --
  66. Size of source file => int(3500)
  67. Copy operation => bool(true)
  68. Existence of destination file => bool(true)
  69. Destination file name is => %s/copy_variation16/copy_copy_variation16.tmp
  70. Size of destination file => int(3500)
  71. -- Iteration 2 --
  72. Size of source file => int(3500)
  73. Copy operation => bool(true)
  74. Existence of destination file => bool(true)
  75. Destination file name is => %s/copy_variation16/copy_variation16_sub/copy_copy_variation16.tmp
  76. Size of destination file => int(3500)
  77. -- Iteration 3 --
  78. Size of source file => int(3500)
  79. Copy operation => bool(true)
  80. Existence of destination file => bool(true)
  81. Destination file name is => %s/copy_variation16/copy_variation16_sub/copy_copy_variation16.tmp
  82. Size of destination file => int(3500)
  83. -- Iteration 4 --
  84. Size of source file => int(3500)
  85. Copy operation => bool(true)
  86. Existence of destination file => bool(true)
  87. Destination file name is => %s/copy_variation16/copy_variation16_sub/../copy_copy_variation16.tmp
  88. Size of destination file => int(3500)
  89. -- Iteration 5 --
  90. Size of source file => int(3500)
  91. Copy operation => bool(true)
  92. Existence of destination file => bool(true)
  93. Destination file name is => %s/copy_variation16/copy_variation16_sub/../copy_variation16_sub/copy_copy_variation16.tmp
  94. Size of destination file => int(3500)
  95. -- Iteration 6 --
  96. Size of source file => int(3500)
  97. Copy operation => bool(true)
  98. Existence of destination file => bool(true)
  99. Destination file name is => %s/copy_variation16/copy_variation16_sub/..///../copy_copy_variation16.tmp
  100. Size of destination file => int(3500)
  101. -- Iteration 7 --
  102. Size of source file => int(3500)
  103. Copy operation => bool(true)
  104. Existence of destination file => bool(true)
  105. Destination file name is => %s/copy_variation16/copy_variation16_sub///../*
  106. Size of destination file => int(3500)
  107. -- Iteration 8 --
  108. Size of source file => int(3500)
  109. Copy operation => bool(true)
  110. Existence of destination file => bool(true)
  111. Destination file name is => %s/copy_variation16/copy_variation16_sub/copy variation16/copy_copy_variation16.tmp
  112. Size of destination file => int(3500)
  113. *** Done ***