php-src/ext/date/tests/mktime_variation6.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

223 lines
4.5 KiB
PHP

--TEST--
Test mktime() function : usage variation - Passing unexpected values to sixth argument $year.
--FILE--
<?php
/* Prototype : int mktime ([ int $hour= date("H") [, int $minute= date("i") [, int $second= date("s") [, int $month= date("n") [, int $day= date("j") [, int $year= date("Y") [, int $is_dst= -1 ]]]]]]] )
* Description: Get Unix timestamp for a date
* Source code: ext/date/php_date.c
* Alias to functions:
*/
echo "*** Testing mktime() : usage variation - unexpected values to sixth argument \$year***\n";
//Set the default time zone
date_default_timezone_set("Europe/London");
//get an unset variable
$unset_var = 10;
unset ($unset_var);
// define some classes
class classWithToString
{
public function __toString() {
return "Class A object";
}
}
class classWithoutToString
{
}
// heredoc string
$heredoc = <<<EOT
hello world
EOT;
// add arrays
$index_array = array (1, 2, 3);
$assoc_array = array ('one' => 1, 'two' => 2);
// resource
$file_handle = fopen(__FILE__, 'r');
//array of values to iterate over
$inputs = array(
// int data
'int 0' => 0,
'int 12345' => 12345,
'int -12345' => -12345,
// float data
'float 10.5' => 10.5,
'float -10.5' => -10.5,
'float .5' => .5,
// array data
'empty array' => array(),
'int indexed array' => $index_array,
'associative array' => $assoc_array,
'nested arrays' => array('foo', $index_array, $assoc_array),
// null data
'uppercase NULL' => NULL,
'lowercase null' => null,
// boolean data
'lowercase true' => true,
'lowercase false' =>false,
'uppercase TRUE' =>TRUE,
'uppercase FALSE' =>FALSE,
// empty data
'empty string DQ' => "",
'empty string SQ' => '',
// string data
'string DQ' => "string",
'string SQ' => 'string',
'mixed case string' => "sTrInG",
'heredoc' => $heredoc,
// object data
'instance of classWithToString' => new classWithToString(),
'instance of classWithoutToString' => new classWithoutToString(),
// undefined data
'undefined var' => @$undefined_var,
// unset data
'unset var' => @$unset_var,
// resource
'resource' => $file_handle
);
$hour = 10;
$minute = 30;
$second = 45;
$month = 7;
$day = 2;
foreach($inputs as $variation =>$year) {
echo "\n-- $variation --\n";
var_dump( mktime($hour, $minute, $second, $month, $day, $year) );
};
// closing the resource
fclose( $file_handle );
?>
===DONE===
--EXPECTF--
*** Testing mktime() : usage variation - unexpected values to sixth argument $year***
-- int 0 --
int(%i)
-- int 12345 --
%rint\(-?[1-9][0-9]*\)|bool\(false\)%r
-- int -12345 --
%rint\(-?[1-9][0-9]*\)|bool\(false\)%r
-- float 10.5 --
int(%i)
-- float -10.5 --
%rint\(-?[1-9][0-9]*\)|bool\(false\)%r
-- float .5 --
int(%i)
-- empty array --
Warning: mktime() expects parameter 6 to be int, array given in %s on line %d
bool(false)
-- int indexed array --
Warning: mktime() expects parameter 6 to be int, array given in %s on line %d
bool(false)
-- associative array --
Warning: mktime() expects parameter 6 to be int, array given in %s on line %d
bool(false)
-- nested arrays --
Warning: mktime() expects parameter 6 to be int, array given in %s on line %d
bool(false)
-- uppercase NULL --
int(%i)
-- lowercase null --
int(%i)
-- lowercase true --
int(%i)
-- lowercase false --
int(%i)
-- uppercase TRUE --
int(%i)
-- uppercase FALSE --
int(%i)
-- empty string DQ --
Warning: mktime() expects parameter 6 to be int, string given in %s on line %d
bool(false)
-- empty string SQ --
Warning: mktime() expects parameter 6 to be int, string given in %s on line %d
bool(false)
-- string DQ --
Warning: mktime() expects parameter 6 to be int, string given in %s on line %d
bool(false)
-- string SQ --
Warning: mktime() expects parameter 6 to be int, string given in %s on line %d
bool(false)
-- mixed case string --
Warning: mktime() expects parameter 6 to be int, string given in %s on line %d
bool(false)
-- heredoc --
Warning: mktime() expects parameter 6 to be int, string given in %s on line %d
bool(false)
-- instance of classWithToString --
Warning: mktime() expects parameter 6 to be int, object given in %s on line %d
bool(false)
-- instance of classWithoutToString --
Warning: mktime() expects parameter 6 to be int, object given in %s on line %d
bool(false)
-- undefined var --
int(%i)
-- unset var --
int(%i)
-- resource --
Warning: mktime() expects parameter 6 to be int, resource given in %s on line %d
bool(false)
===DONE===