1--TEST--
2Test fopen() function : variation: use include path and stream context (absolute directories in path)
3--CREDITS--
4Dave Kelsey <d_kelsey@uk.ibm.com>
5--FILE--
6<?php
7/* Prototype  : resource fopen(string filename, string mode [, bool use_include_path [, resource context]])
8 * Description: Open a file or a URL and return a file pointer
9 * Source code: ext/standard/file.c
10 * Alias to functions:
11 */
12
13
14
15//create the include directory structure
16$thisTestDir =  basename(__FILE__, ".php") . ".dir";
17mkdir($thisTestDir);
18chdir($thisTestDir);
19
20$workingDir = "workdir";
21$filename = basename(__FILE__, ".php") . ".tmp";
22$scriptDir = __DIR__;
23$baseDir = getcwd();
24$secondFile = $baseDir."/dir2/".$filename;
25$firstFile = "../dir1/".$filename;
26$scriptFile = $scriptDir.'/'.$filename;
27
28$newdirs = array("dir1", "dir2", "dir3");
29$pathSep = ":";
30$newIncludePath = "";
31if(substr(PHP_OS, 0, 3) == 'WIN' ) {
32   $pathSep = ";";
33}
34foreach($newdirs as $newdir) {
35   mkdir($newdir);
36   $newIncludePath .= $baseDir.'/'.$newdir.$pathSep;
37}
38mkdir($workingDir);
39chdir($workingDir);
40
41//define the files to go into these directories, create one in dir2
42echo "\n--- testing include path ---\n";
43set_include_path($newIncludePath);
44$modes = array("r", "r+", "rt");
45foreach($modes as $mode) {
46    test_fopen($mode);
47}
48
49// remove the directory structure
50chdir($baseDir);
51rmdir($workingDir);
52foreach($newdirs as $newdir) {
53   rmdir($newdir);
54}
55
56chdir("..");
57rmdir($thisTestDir);
58
59
60function test_fopen($mode) {
61   global $scriptFile, $secondFile, $firstFile, $filename;
62
63   // create a file in the middle directory
64   $h = fopen($secondFile, "w");
65   fwrite($h, "in dir2");
66   fclose($h);
67
68   echo "\n** testing with mode=$mode **\n";
69   // should read dir2 file
70   $h = fopen($filename, $mode, true);
71   fpassthru($h);
72   fclose($h);
73   echo "\n";
74
75   //create a file in dir1
76   $h = fopen($firstFile, "w");
77   fwrite($h, "in dir1");
78   fclose($h);
79
80   //should now read dir1 file
81   $h = fopen($filename, $mode, true);
82   fpassthru($h);
83   fclose($h);
84   echo "\n";
85
86   // create a file in working directory
87   $h = fopen($filename, "w");
88   fwrite($h, "in working dir");
89   fclose($h);
90
91   //should still read dir1 file
92   $h = fopen($filename, $mode, true);
93   fpassthru($h);
94   fclose($h);
95   echo "\n";
96
97   unlink($firstFile);
98   unlink($secondFile);
99
100   //should read the file in working dir
101   $h = fopen($filename, $mode, true);
102   fpassthru($h);
103   fclose($h);
104   echo "\n";
105
106   // create a file in the script directory
107   $h = fopen($scriptFile, "w");
108   fwrite($h, "in script dir");
109   fclose($h);
110
111   //should read the file in script dir
112   $h = fopen($filename, $mode, true);
113   fpassthru($h);
114   fclose($h);
115   echo "\n";
116
117   //cleanup
118   unlink($filename);
119   unlink($scriptFile);
120
121}
122
123?>
124===DONE===
125--EXPECT--
126--- testing include path ---
127
128** testing with mode=r **
129in dir2
130in dir1
131in dir1
132in working dir
133in script dir
134
135** testing with mode=r+ **
136in dir2
137in dir1
138in dir1
139in working dir
140in script dir
141
142** testing with mode=rt **
143in dir2
144in dir1
145in dir1
146in working dir
147in script dir
148===DONE===
149