php-src/ext/standard/tests/strings/dirname_basic.phpt
Peter Kokot b746e69887 Sync leading and final newlines in *.phpt sections
This patch adds missing newlines, trims multiple redundant final
newlines into a single one, and trims redundant leading newlines in all
*.phpt sections.

According to POSIX, a line is a sequence of zero or more non-' <newline>'
characters plus a terminating '<newline>' character. [1] Files should
normally have at least one final newline character.

C89 [2] and later standards [3] mention a final newline:
"A source file that is not empty shall end in a new-line character,
which shall not be immediately preceded by a backslash character."

Although it is not mandatory for all files to have a final newline
fixed, a more consistent and homogeneous approach brings less of commit
differences issues and a better development experience in certain text
editors and IDEs.

[1] http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap03.html#tag_03_206
[2] https://port70.net/~nsz/c/c89/c89-draft.html#2.1.1.2
[3] https://port70.net/~nsz/c/c99/n1256.html#5.1.1.2
2018-10-15 04:32:30 +02:00

153 lines
2.3 KiB
PHP

--TEST--
Test dirname() function : basic functionality
--FILE--
<?php
/* Prototype: string dirname ( string $path );
Description: Returns directory name component of path.
*/
$file_paths = array (
/* simple paths */
"bar",
"/foo/bar",
"foo/bar",
"/bar",
"bar/",
"/bar/",
"/foo/bar/",
"foo/bar/",
"/bar/",
/* path with only files and trailing slashes*/
"/foo/bar.gz",
"foo/bar.gz",
"bar.gz",
"bar.gz/",
"/bar.gz",
"/bar.gz/",
"/foo/bar.gz/",
"foo/bar.gz/",
"/bar.gz/",
/* path with file extension and trailing slashes */
"/.gz",
".gz",
"/foo/.gz",
".gz/",
"/foo/.gz/",
"foo/.gz/",
/* paths with binary value to check if the function is binary safe*/
"foo".chr(0)."bar",
"/foo".chr(0)."bar/",
"/foo".chr(0)."bar",
"foo".chr(0)."bar/",
"/foo".chr(0)."bar/t.gz"
);
function check_dirname( $paths ) {
$loop_counter = 0;
$noOfPaths = count($paths);
for( ; $loop_counter < $noOfPaths; $loop_counter++ ) {
echo "\n--Iteration ";
echo $loop_counter + 1;
echo " --\n";
var_dump( dirname($paths[$loop_counter]) );
}
}
echo "*** Testing basic operations ***\n";
check_dirname( $file_paths );
echo "Done\n";
?>
--EXPECTREGEX--
\*\*\* Testing basic operations \*\*\*
--Iteration 1 --
string\(1\) "."
--Iteration 2 --
string\(4\) "(\\|\/)foo"
--Iteration 3 --
string\(3\) "foo"
--Iteration 4 --
string\(1\) "(\\|\/)"
--Iteration 5 --
string\(1\) "."
--Iteration 6 --
string\(1\) "(\\|\/)"
--Iteration 7 --
string\(4\) "(\\|\/)foo"
--Iteration 8 --
string\(3\) "foo"
--Iteration 9 --
string\(1\) "(\\|\/)"
--Iteration 10 --
string\(4\) "(\\|\/)foo"
--Iteration 11 --
string\(3\) "foo"
--Iteration 12 --
string\(1\) "."
--Iteration 13 --
string\(1\) "."
--Iteration 14 --
string\(1\) "(\\|\/)"
--Iteration 15 --
string\(1\) "(\\|\/)"
--Iteration 16 --
string\(4\) "(\\|\/)foo"
--Iteration 17 --
string\(3\) "foo"
--Iteration 18 --
string\(1\) "(\\|\/)"
--Iteration 19 --
string\(1\) "(\\|\/)"
--Iteration 20 --
string\(1\) "."
--Iteration 21 --
string\(4\) "(\\|\/)foo"
--Iteration 22 --
string\(1\) "."
--Iteration 23 --
string\(4\) "(\\|\/)foo"
--Iteration 24 --
string\(3\) "foo"
--Iteration 25 --
string\(1\) "."
--Iteration 26 --
string\(1\) "(\\|\/)"
--Iteration 27 --
string\(1\) "(\\|\/)"
--Iteration 28 --
string\(1\) "."
--Iteration 29 --
string\(8\) "(\\|\/)foo\x00bar"
Done