summaryrefslogtreecommitdiff
path: root/ext/standard/tests/file/copy_variation18.phpt
blob: 935cf2c7c3e05bc9742b3b3b48cb63c0a06b0e78 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
--TEST--
Test copy() function: usage variations - stat after copy
--FILE--
<?php
/* Prototype: bool copy ( string $source, string $dest );
   Description: Makes a copy of the file source to dest.
     Returns TRUE on success or FALSE on failure.
*/

/* Test copy(): checking stat of file before and after after copy operation */

$file_path = dirname(__FILE__);

require($file_path."/file.inc");

echo "*** Test copy() function: stat of file before and after copy ***\n";
$src_file_name = $file_path."/copy_variation18.tmp";
$file_handle =  fopen($src_file_name, "w");
fwrite($file_handle, str_repeat("Hello2world...\n", 100));
fclose($file_handle);

$dest_file_name = $file_path."/copy_copy_variation18.tmp";

clearstatcache();

$stat_before_copy = stat($src_file_name);
clearstatcache();

echo "Copy operation => ";
var_dump( copy($src_file_name, $dest_file_name) );

$stat_after_copy = stat($src_file_name);
clearstatcache();

// compare all stat fields except access time
$stat_keys_to_compare = array("dev", "ino", "mode", "nlink", "uid", "gid",
                       "rdev", "size", "mtime", "ctime",
                       "blksize", "blocks");

echo "Comparing the stats of file before and after copy operation => ";
var_dump( compare_stats($stat_before_copy, $stat_after_copy, $stat_keys_to_compare) );

echo "*** Done ***\n";
?>
--CLEAN--
<?php
unlink(dirname(__FILE__)."/copy_copy_variation18.tmp");
unlink(dirname(__FILE__)."/copy_variation18.tmp");
?>
--EXPECTF--
*** Test copy() function: stat of file before and after copy ***
Copy operation => bool(true)
Comparing the stats of file before and after copy operation => bool(true)
*** Done ***