1
0
mirror of https://github.com/php/php-src.git synced 2026-04-27 01:48:26 +02:00
Files
archived-php-src/ext/standard/tests/file/fgets_variation4.phpt
T
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

575 lines
13 KiB
PHP

--TEST--
Test fgets() function : usage variations - seek n read
--SKIPIF--
<?php
if (substr(PHP_OS, 0, 3) == 'WIN') {
die('skip Not valid for Windows');
}
?>
--FILE--
<?php
/*
Prototype: string fgets ( resource $handle [, int $length] );
Description: Gets a line from file pointer
*/
// include the file.inc for common test funcitons
include ("file.inc");
$file_modes = array("w+", "w+b", "w+t",
"a+", "a+b", "a+t",
"x+", "x+b", "x+t");
$file_content_types = array("numeric", "text", "text_with_new_line", "alphanumeric");
echo "*** Testing fgets() : usage variations ***\n";
$filename = dirname(__FILE__)."/fgets_variation4.tmp";
foreach($file_modes as $file_mode) {
echo "\n-- Testing fgets() with file opened using mode $file_mode --\n";
foreach($file_content_types as $file_content_type) {
echo "-- File content type : $file_content_type --\n";
/* create files with $file_content_type */
$file_handle = fopen($filename, $file_mode);
$data = fill_file($file_handle, $file_content_type, 50);
if ( !$file_handle ) {
echo "Error: failed to open file $filename!";
exit();
}
echo "-- fgets() with location set by fseek() with default length --\n";
var_dump( fseek($file_handle, 5, SEEK_SET) );
var_dump( ftell($file_handle) );
var_dump( fgets($file_handle ) );
var_dump( ftell($file_handle) ); // ensure the file pointer position
var_dump( feof($file_handle) ); // enusre if eof set
echo "-- fgets() with location set by fseek() with length = 20 --\n";
var_dump( fseek($file_handle, 25, SEEK_SET) );
var_dump( ftell($file_handle) );
var_dump( fgets($file_handle, 20 ) ); // expected 19 chars
var_dump( ftell($file_handle) ); // ensure the file pointer position
var_dump( feof($file_handle) ); // enusre if eof set
//close file
fclose($file_handle);
// delete file
delete_file($filename);
} // file_content_type loop
} // file_mode loop
echo "Done\n";
?>
--EXPECT--
*** Testing fgets() : usage variations ***
-- Testing fgets() with file opened using mode w+ --
-- File content type : numeric --
-- fgets() with location set by fseek() with default length --
int(0)
int(5)
string(45) "222222222222222222222222222222222222222222222"
int(50)
bool(true)
-- fgets() with location set by fseek() with length = 20 --
int(0)
int(25)
string(19) "2222222222222222222"
int(44)
bool(false)
-- File content type : text --
-- fgets() with location set by fseek() with default length --
int(0)
int(5)
string(45) "text text text text text text text text text "
int(50)
bool(true)
-- fgets() with location set by fseek() with length = 20 --
int(0)
int(25)
string(19) "text text text text"
int(44)
bool(false)
-- File content type : text_with_new_line --
-- fgets() with location set by fseek() with default length --
int(0)
int(5)
string(13) "line of text
"
int(18)
bool(false)
-- fgets() with location set by fseek() with length = 20 --
int(0)
int(25)
string(11) "ne of text
"
int(36)
bool(false)
-- File content type : alphanumeric --
-- fgets() with location set by fseek() with default length --
int(0)
int(5)
string(45) "ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 "
int(50)
bool(true)
-- fgets() with location set by fseek() with length = 20 --
int(0)
int(25)
string(19) "ab12 ab12 ab12 ab12"
int(44)
bool(false)
-- Testing fgets() with file opened using mode w+b --
-- File content type : numeric --
-- fgets() with location set by fseek() with default length --
int(0)
int(5)
string(45) "222222222222222222222222222222222222222222222"
int(50)
bool(true)
-- fgets() with location set by fseek() with length = 20 --
int(0)
int(25)
string(19) "2222222222222222222"
int(44)
bool(false)
-- File content type : text --
-- fgets() with location set by fseek() with default length --
int(0)
int(5)
string(45) "text text text text text text text text text "
int(50)
bool(true)
-- fgets() with location set by fseek() with length = 20 --
int(0)
int(25)
string(19) "text text text text"
int(44)
bool(false)
-- File content type : text_with_new_line --
-- fgets() with location set by fseek() with default length --
int(0)
int(5)
string(13) "line of text
"
int(18)
bool(false)
-- fgets() with location set by fseek() with length = 20 --
int(0)
int(25)
string(11) "ne of text
"
int(36)
bool(false)
-- File content type : alphanumeric --
-- fgets() with location set by fseek() with default length --
int(0)
int(5)
string(45) "ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 "
int(50)
bool(true)
-- fgets() with location set by fseek() with length = 20 --
int(0)
int(25)
string(19) "ab12 ab12 ab12 ab12"
int(44)
bool(false)
-- Testing fgets() with file opened using mode w+t --
-- File content type : numeric --
-- fgets() with location set by fseek() with default length --
int(0)
int(5)
string(45) "222222222222222222222222222222222222222222222"
int(50)
bool(true)
-- fgets() with location set by fseek() with length = 20 --
int(0)
int(25)
string(19) "2222222222222222222"
int(44)
bool(false)
-- File content type : text --
-- fgets() with location set by fseek() with default length --
int(0)
int(5)
string(45) "text text text text text text text text text "
int(50)
bool(true)
-- fgets() with location set by fseek() with length = 20 --
int(0)
int(25)
string(19) "text text text text"
int(44)
bool(false)
-- File content type : text_with_new_line --
-- fgets() with location set by fseek() with default length --
int(0)
int(5)
string(13) "line of text
"
int(18)
bool(false)
-- fgets() with location set by fseek() with length = 20 --
int(0)
int(25)
string(11) "ne of text
"
int(36)
bool(false)
-- File content type : alphanumeric --
-- fgets() with location set by fseek() with default length --
int(0)
int(5)
string(45) "ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 "
int(50)
bool(true)
-- fgets() with location set by fseek() with length = 20 --
int(0)
int(25)
string(19) "ab12 ab12 ab12 ab12"
int(44)
bool(false)
-- Testing fgets() with file opened using mode a+ --
-- File content type : numeric --
-- fgets() with location set by fseek() with default length --
int(0)
int(5)
string(45) "222222222222222222222222222222222222222222222"
int(50)
bool(true)
-- fgets() with location set by fseek() with length = 20 --
int(0)
int(25)
string(19) "2222222222222222222"
int(44)
bool(false)
-- File content type : text --
-- fgets() with location set by fseek() with default length --
int(0)
int(5)
string(45) "text text text text text text text text text "
int(50)
bool(true)
-- fgets() with location set by fseek() with length = 20 --
int(0)
int(25)
string(19) "text text text text"
int(44)
bool(false)
-- File content type : text_with_new_line --
-- fgets() with location set by fseek() with default length --
int(0)
int(5)
string(13) "line of text
"
int(18)
bool(false)
-- fgets() with location set by fseek() with length = 20 --
int(0)
int(25)
string(11) "ne of text
"
int(36)
bool(false)
-- File content type : alphanumeric --
-- fgets() with location set by fseek() with default length --
int(0)
int(5)
string(45) "ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 "
int(50)
bool(true)
-- fgets() with location set by fseek() with length = 20 --
int(0)
int(25)
string(19) "ab12 ab12 ab12 ab12"
int(44)
bool(false)
-- Testing fgets() with file opened using mode a+b --
-- File content type : numeric --
-- fgets() with location set by fseek() with default length --
int(0)
int(5)
string(45) "222222222222222222222222222222222222222222222"
int(50)
bool(true)
-- fgets() with location set by fseek() with length = 20 --
int(0)
int(25)
string(19) "2222222222222222222"
int(44)
bool(false)
-- File content type : text --
-- fgets() with location set by fseek() with default length --
int(0)
int(5)
string(45) "text text text text text text text text text "
int(50)
bool(true)
-- fgets() with location set by fseek() with length = 20 --
int(0)
int(25)
string(19) "text text text text"
int(44)
bool(false)
-- File content type : text_with_new_line --
-- fgets() with location set by fseek() with default length --
int(0)
int(5)
string(13) "line of text
"
int(18)
bool(false)
-- fgets() with location set by fseek() with length = 20 --
int(0)
int(25)
string(11) "ne of text
"
int(36)
bool(false)
-- File content type : alphanumeric --
-- fgets() with location set by fseek() with default length --
int(0)
int(5)
string(45) "ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 "
int(50)
bool(true)
-- fgets() with location set by fseek() with length = 20 --
int(0)
int(25)
string(19) "ab12 ab12 ab12 ab12"
int(44)
bool(false)
-- Testing fgets() with file opened using mode a+t --
-- File content type : numeric --
-- fgets() with location set by fseek() with default length --
int(0)
int(5)
string(45) "222222222222222222222222222222222222222222222"
int(50)
bool(true)
-- fgets() with location set by fseek() with length = 20 --
int(0)
int(25)
string(19) "2222222222222222222"
int(44)
bool(false)
-- File content type : text --
-- fgets() with location set by fseek() with default length --
int(0)
int(5)
string(45) "text text text text text text text text text "
int(50)
bool(true)
-- fgets() with location set by fseek() with length = 20 --
int(0)
int(25)
string(19) "text text text text"
int(44)
bool(false)
-- File content type : text_with_new_line --
-- fgets() with location set by fseek() with default length --
int(0)
int(5)
string(13) "line of text
"
int(18)
bool(false)
-- fgets() with location set by fseek() with length = 20 --
int(0)
int(25)
string(11) "ne of text
"
int(36)
bool(false)
-- File content type : alphanumeric --
-- fgets() with location set by fseek() with default length --
int(0)
int(5)
string(45) "ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 "
int(50)
bool(true)
-- fgets() with location set by fseek() with length = 20 --
int(0)
int(25)
string(19) "ab12 ab12 ab12 ab12"
int(44)
bool(false)
-- Testing fgets() with file opened using mode x+ --
-- File content type : numeric --
-- fgets() with location set by fseek() with default length --
int(0)
int(5)
string(45) "222222222222222222222222222222222222222222222"
int(50)
bool(true)
-- fgets() with location set by fseek() with length = 20 --
int(0)
int(25)
string(19) "2222222222222222222"
int(44)
bool(false)
-- File content type : text --
-- fgets() with location set by fseek() with default length --
int(0)
int(5)
string(45) "text text text text text text text text text "
int(50)
bool(true)
-- fgets() with location set by fseek() with length = 20 --
int(0)
int(25)
string(19) "text text text text"
int(44)
bool(false)
-- File content type : text_with_new_line --
-- fgets() with location set by fseek() with default length --
int(0)
int(5)
string(13) "line of text
"
int(18)
bool(false)
-- fgets() with location set by fseek() with length = 20 --
int(0)
int(25)
string(11) "ne of text
"
int(36)
bool(false)
-- File content type : alphanumeric --
-- fgets() with location set by fseek() with default length --
int(0)
int(5)
string(45) "ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 "
int(50)
bool(true)
-- fgets() with location set by fseek() with length = 20 --
int(0)
int(25)
string(19) "ab12 ab12 ab12 ab12"
int(44)
bool(false)
-- Testing fgets() with file opened using mode x+b --
-- File content type : numeric --
-- fgets() with location set by fseek() with default length --
int(0)
int(5)
string(45) "222222222222222222222222222222222222222222222"
int(50)
bool(true)
-- fgets() with location set by fseek() with length = 20 --
int(0)
int(25)
string(19) "2222222222222222222"
int(44)
bool(false)
-- File content type : text --
-- fgets() with location set by fseek() with default length --
int(0)
int(5)
string(45) "text text text text text text text text text "
int(50)
bool(true)
-- fgets() with location set by fseek() with length = 20 --
int(0)
int(25)
string(19) "text text text text"
int(44)
bool(false)
-- File content type : text_with_new_line --
-- fgets() with location set by fseek() with default length --
int(0)
int(5)
string(13) "line of text
"
int(18)
bool(false)
-- fgets() with location set by fseek() with length = 20 --
int(0)
int(25)
string(11) "ne of text
"
int(36)
bool(false)
-- File content type : alphanumeric --
-- fgets() with location set by fseek() with default length --
int(0)
int(5)
string(45) "ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 "
int(50)
bool(true)
-- fgets() with location set by fseek() with length = 20 --
int(0)
int(25)
string(19) "ab12 ab12 ab12 ab12"
int(44)
bool(false)
-- Testing fgets() with file opened using mode x+t --
-- File content type : numeric --
-- fgets() with location set by fseek() with default length --
int(0)
int(5)
string(45) "222222222222222222222222222222222222222222222"
int(50)
bool(true)
-- fgets() with location set by fseek() with length = 20 --
int(0)
int(25)
string(19) "2222222222222222222"
int(44)
bool(false)
-- File content type : text --
-- fgets() with location set by fseek() with default length --
int(0)
int(5)
string(45) "text text text text text text text text text "
int(50)
bool(true)
-- fgets() with location set by fseek() with length = 20 --
int(0)
int(25)
string(19) "text text text text"
int(44)
bool(false)
-- File content type : text_with_new_line --
-- fgets() with location set by fseek() with default length --
int(0)
int(5)
string(13) "line of text
"
int(18)
bool(false)
-- fgets() with location set by fseek() with length = 20 --
int(0)
int(25)
string(11) "ne of text
"
int(36)
bool(false)
-- File content type : alphanumeric --
-- fgets() with location set by fseek() with default length --
int(0)
int(5)
string(45) "ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 ab12 "
int(50)
bool(true)
-- fgets() with location set by fseek() with length = 20 --
int(0)
int(25)
string(19) "ab12 ab12 ab12 ab12"
int(44)
bool(false)
Done