copy_variation13.phpt 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. --TEST--
  2. Test copy() function: usage variations - src as dir and dest as an existing file(Bug #42243)
  3. --FILE--
  4. <?php
  5. /* Test copy(): Trying to copy dir to an existing file */
  6. echo "*** Test copy() function: Trying to copy dir to file ***\n";
  7. $file_path = __DIR__;
  8. $file = $file_path."/copy_variation13_dir.tmp";
  9. fclose(fopen($file, "w"));
  10. $dir = $file_path."/copy_variation13";
  11. mkdir($dir);
  12. echo "*** Testing copy() in copying dir to file ***\n";
  13. var_dump( copy($dir, $file) );
  14. var_dump( file_exists($file) );
  15. var_dump( file_exists($dir) );
  16. var_dump( is_file($dir) );
  17. var_dump( is_dir($dir) );
  18. var_dump( is_file($file) );
  19. var_dump( is_dir($file) );
  20. var_dump( filesize($file) );
  21. var_dump( filesize($dir) );
  22. echo "*** Done ***\n";
  23. ?>
  24. --CLEAN--
  25. <?php
  26. unlink(__DIR__."/copy_variation13_dir.tmp");
  27. rmdir(__DIR__."/copy_variation13");
  28. ?>
  29. --EXPECTF--
  30. *** Test copy() function: Trying to copy dir to file ***
  31. *** Testing copy() in copying dir to file ***
  32. Warning: copy(): The first argument to copy() function cannot be a directory in %scopy_variation13.php on line %d
  33. bool(false)
  34. bool(true)
  35. bool(true)
  36. bool(false)
  37. bool(true)
  38. bool(true)
  39. bool(false)
  40. int(%d)
  41. int(%d)
  42. *** Done ***