forked from php/php-src
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbasename_basic.phpt
173 lines (132 loc) · 3.14 KB
/
basename_basic.phpt
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
--TEST--
Test basename() function : basic functionality
--FILE--
<?php
/* Prototype: string basename ( string $path [, string $suffix] );
Description: Given a string containing a path to a file,
this function will return the base name of the file.
If the filename ends in suffix this will also be cut off.
*/
$file_paths = array (
/* simple paths */
array("bar"),
array("/foo/bar"),
array("foo/bar"),
array("/bar"),
/* simple paths with trailing slashes */
array("bar/"),
array("/bar/"),
array("/foo/bar/"),
array("foo/bar/"),
array("/bar/"),
/* paths with suffix removal */
array("bar.gz", ".gz"),
array("bar.gz", "bar.gz"),
array("/foo/bar.gz", ".gz"),
array("foo/bar.gz", ".gz"),
array("/bar.gz", ".gz"),
/* paths with suffix and trailing slashes with suffix removal*/
array("bar.gz/", ".gz"),
array("/bar.gz/", ".gz"),
array("/foo/bar.gz/", ".gz"),
array("foo/bar.gz/", ".gz"),
array("/bar.gz/", ".gz"),
/* paths with basename only suffix, with suffix removal*/
array("/.gz", ".gz"),
array(".gz", ".gz"),
array("/foo/.gz", ".gz"),
/* paths with basename only suffix & trailing slashes, with suffix removal*/
array(".gz/", ".gz"),
array("/foo/.gz/", ".gz"),
array("foo/.gz/", ".gz"),
/* paths with binary value to check if the function is binary safe*/
array("foo".chr(0)."bar"),
array("/foo".chr(0)."bar"),
array("/foo".chr(0)."bar/"),
array("foo".chr(0)."bar/"),
array("foo".chr(0)."bar/test"),
array("/foo".chr(0)."bar/bar.gz", ".gz"),
array("/foo".chr(0)."bar/bar.gz")
);
function check_basename( $path_arrays ) {
$loop_counter = 1;
foreach ($path_arrays as $path) {
echo "\n--Iteration $loop_counter--\n"; $loop_counter++;
if( 1 == count($path) ) { // no suffix provided
var_dump( basename($path[0]) );
} else { // path as well as suffix provided,
var_dump( basename($path[0], $path[1]) );
}
}
}
echo "*** Testing basic operations ***\n";
check_basename( $file_paths );
echo "Done\n";
?>
--EXPECT--
*** Testing basic operations ***
--Iteration 1--
string(3) "bar"
--Iteration 2--
string(3) "bar"
--Iteration 3--
string(3) "bar"
--Iteration 4--
string(3) "bar"
--Iteration 5--
string(3) "bar"
--Iteration 6--
string(3) "bar"
--Iteration 7--
string(3) "bar"
--Iteration 8--
string(3) "bar"
--Iteration 9--
string(3) "bar"
--Iteration 10--
string(3) "bar"
--Iteration 11--
string(6) "bar.gz"
--Iteration 12--
string(3) "bar"
--Iteration 13--
string(3) "bar"
--Iteration 14--
string(3) "bar"
--Iteration 15--
string(3) "bar"
--Iteration 16--
string(3) "bar"
--Iteration 17--
string(3) "bar"
--Iteration 18--
string(3) "bar"
--Iteration 19--
string(3) "bar"
--Iteration 20--
string(3) ".gz"
--Iteration 21--
string(3) ".gz"
--Iteration 22--
string(3) ".gz"
--Iteration 23--
string(3) ".gz"
--Iteration 24--
string(3) ".gz"
--Iteration 25--
string(3) ".gz"
--Iteration 26--
string(7) "foo bar"
--Iteration 27--
string(7) "foo bar"
--Iteration 28--
string(7) "foo bar"
--Iteration 29--
string(7) "foo bar"
--Iteration 30--
string(4) "test"
--Iteration 31--
string(3) "bar"
--Iteration 32--
string(6) "bar.gz"
Done