diff options
Diffstat (limited to 'ext/standard/tests/file/stat_variation7-win32.phpt')
-rw-r--r-- | ext/standard/tests/file/stat_variation7-win32.phpt | 298 |
1 files changed, 298 insertions, 0 deletions
diff --git a/ext/standard/tests/file/stat_variation7-win32.phpt b/ext/standard/tests/file/stat_variation7-win32.phpt new file mode 100644 index 0000000..d72305f --- /dev/null +++ b/ext/standard/tests/file/stat_variation7-win32.phpt @@ -0,0 +1,298 @@ +--TEST-- +Test stat() functions: usage variations - names of dir/file stored in objects +--SKIPIF-- +<?php +if (substr(PHP_OS, 0, 3) != 'WIN') { + die('skip.. only for Windows'); +} +?> +--FILE-- +<?php + +/* + * Prototype: array stat ( string $filename ); + * Description: Gives information about a file + */ + +/* test the stats of dir/file when their names are stored in objects */ + +$file_path = dirname(__FILE__); +require "$file_path/file.inc"; + + +/* create temp file and directory */ +mkdir("$file_path/stat_variation7/"); // temp dir + +$file_handle = fopen("$file_path/stat_variation7.tmp", "w"); // temp file +fclose($file_handle); + + +echo "\n*** Testing stat(): with filename + and directory name stored inside a object ***\n"; + +// creating object with members as numeric and non-numeric filename and directory name +class object_temp { +public $var_name; +public function object_temp($name) { +$this->var_name = $name; + } +} + +// directory as member +$obj1 = new object_temp("$file_path/stat_variation7/"); +$obj2 = new object_temp("$file_path/stat_variation7a/"); + +// file as member +$obj3 = new object_temp("$file_path/stat_variation7.tmp"); +$obj4 = new object_temp("$file_path/stat_variation7a.tmp"); + +echo "\n-- Testing stat() on filename stored inside an object --\n"; +var_dump( stat($obj3->var_name) ); + +$file_handle = fopen("$file_path/stat_variation7a.tmp", "w"); +fclose($file_handle); +var_dump( stat($obj4->var_name) ); + +echo "\n-- Testing stat() on directory name stored inside an object --\n"; +var_dump( stat($obj1->var_name) ); + +mkdir("$file_path/stat_variation7a/"); +var_dump( stat($obj2->var_name) ); + +echo "\n*** Done ***"; +?> + +--CLEAN-- +<?php +$file_path = dirname(__FILE__); +unlink("$file_path/stat_variation7.tmp"); +unlink("$file_path/stat_variation7a.tmp"); +rmdir("$file_path/stat_variation7"); +rmdir("$file_path/stat_variation7a"); +?> +--EXPECTF-- +*** Testing stat(): with filename + and directory name stored inside a object *** + +-- Testing stat() on filename stored inside an object -- +array(26) { + [0]=> + int(%d) + [1]=> + int(%d) + [2]=> + int(%d) + [3]=> + int(%d) + [4]=> + int(%d) + [5]=> + int(%d) + [6]=> + int(%d) + [7]=> + int(%d) + [8]=> + int(%d) + [9]=> + int(%d) + [10]=> + int(%d) + [11]=> + int(-%d) + [12]=> + int(-%d) + ["dev"]=> + int(%d) + ["ino"]=> + int(%d) + ["mode"]=> + int(%d) + ["nlink"]=> + int(%d) + ["uid"]=> + int(%d) + ["gid"]=> + int(%d) + ["rdev"]=> + int(%d) + ["size"]=> + int(%d) + ["atime"]=> + int(%d) + ["mtime"]=> + int(%d) + ["ctime"]=> + int(%d) + ["blksize"]=> + int(-%d) + ["blocks"]=> + int(-%d) +} +array(26) { + [0]=> + int(%d) + [1]=> + int(%d) + [2]=> + int(%d) + [3]=> + int(%d) + [4]=> + int(%d) + [5]=> + int(%d) + [6]=> + int(%d) + [7]=> + int(%d) + [8]=> + int(%d) + [9]=> + int(%d) + [10]=> + int(%d) + [11]=> + int(-%d) + [12]=> + int(-%d) + ["dev"]=> + int(%d) + ["ino"]=> + int(%d) + ["mode"]=> + int(%d) + ["nlink"]=> + int(%d) + ["uid"]=> + int(%d) + ["gid"]=> + int(%d) + ["rdev"]=> + int(%d) + ["size"]=> + int(%d) + ["atime"]=> + int(%d) + ["mtime"]=> + int(%d) + ["ctime"]=> + int(%d) + ["blksize"]=> + int(-%d) + ["blocks"]=> + int(-%d) +} + +-- Testing stat() on directory name stored inside an object -- +array(26) { + [0]=> + int(%d) + [1]=> + int(%d) + [2]=> + int(%d) + [3]=> + int(%d) + [4]=> + int(%d) + [5]=> + int(%d) + [6]=> + int(%d) + [7]=> + int(%d) + [8]=> + int(%d) + [9]=> + int(%d) + [10]=> + int(%d) + [11]=> + int(-%d) + [12]=> + int(-%d) + ["dev"]=> + int(%d) + ["ino"]=> + int(%d) + ["mode"]=> + int(%d) + ["nlink"]=> + int(%d) + ["uid"]=> + int(%d) + ["gid"]=> + int(%d) + ["rdev"]=> + int(%d) + ["size"]=> + int(%d) + ["atime"]=> + int(%d) + ["mtime"]=> + int(%d) + ["ctime"]=> + int(%d) + ["blksize"]=> + int(-%d) + ["blocks"]=> + int(-%d) +} +array(26) { + [0]=> + int(%d) + [1]=> + int(%d) + [2]=> + int(%d) + [3]=> + int(%d) + [4]=> + int(%d) + [5]=> + int(%d) + [6]=> + int(%d) + [7]=> + int(%d) + [8]=> + int(%d) + [9]=> + int(%d) + [10]=> + int(%d) + [11]=> + int(-%d) + [12]=> + int(-%d) + ["dev"]=> + int(%d) + ["ino"]=> + int(%d) + ["mode"]=> + int(%d) + ["nlink"]=> + int(%d) + ["uid"]=> + int(%d) + ["gid"]=> + int(%d) + ["rdev"]=> + int(%d) + ["size"]=> + int(%d) + ["atime"]=> + int(%d) + ["mtime"]=> + int(%d) + ["ctime"]=> + int(%d) + ["blksize"]=> + int(-%d) + ["blocks"]=> + int(-%d) +} + +*** Done *** + |