php-src/ext/date/tests/date_create_variation1.phpt
2018-10-14 19:45:12 +02:00

390 lines
7.2 KiB
PHP

--TEST--
Test date_create() function : usage variation - Passing unexpected values to first argument $time.
--FILE--
<?php
/* Prototype : DateTime date_create ([ string $time [, DateTimeZone $timezone ]] )
* Description: Returns new DateTime object
* Source code: ext/date/php_date.c
* Alias to functions: DateTime::__construct
*/
echo "*** Testing date_create() : usage variation - unexpected values to first argument \$time***\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 1' => 1,
'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
);
$timezone = new DateTimeZone("Europe/London");
foreach($inputs as $variation =>$time) {
echo "\n-- $variation --\n";
var_dump( date_create($time) );
var_dump( date_create($time, $timezone) );
};
// closing the resource
fclose( $file_handle);
?>
===DONE===
--EXPECTF--
*** Testing date_create() : usage variation - unexpected values to first argument $time***
-- int 0 --
bool(false)
bool(false)
-- int 1 --
bool(false)
bool(false)
-- int 12345 --
bool(false)
bool(false)
-- int -12345 --
bool(false)
bool(false)
-- float 10.5 --
object(DateTime)#%d (3) {
["date"]=>
string(26) "%s"
["timezone_type"]=>
int(3)
["timezone"]=>
string(13) "Europe/London"
}
object(DateTime)#%d (3) {
["date"]=>
string(26) "%s"
["timezone_type"]=>
int(3)
["timezone"]=>
string(13) "Europe/London"
}
-- float -10.5 --
bool(false)
bool(false)
-- float .5 --
object(DateTime)#%d (3) {
["date"]=>
string(26) "%s"
["timezone_type"]=>
int(3)
["timezone"]=>
string(13) "Europe/London"
}
object(DateTime)#%d (3) {
["date"]=>
string(26) "%s"
["timezone_type"]=>
int(3)
["timezone"]=>
string(13) "Europe/London"
}
-- empty array --
Warning: date_create() expects parameter 1 to be string, array given in %s on line %d
bool(false)
Warning: date_create() expects parameter 1 to be string, array given in %s on line %d
bool(false)
-- int indexed array --
Warning: date_create() expects parameter 1 to be string, array given in %s on line %d
bool(false)
Warning: date_create() expects parameter 1 to be string, array given in %s on line %d
bool(false)
-- associative array --
Warning: date_create() expects parameter 1 to be string, array given in %s on line %d
bool(false)
Warning: date_create() expects parameter 1 to be string, array given in %s on line %d
bool(false)
-- nested arrays --
Warning: date_create() expects parameter 1 to be string, array given in %s on line %d
bool(false)
Warning: date_create() expects parameter 1 to be string, array given in %s on line %d
bool(false)
-- uppercase NULL --
object(DateTime)#%d (3) {
["date"]=>
string(26) "%s"
["timezone_type"]=>
int(3)
["timezone"]=>
string(13) "Europe/London"
}
object(DateTime)#%d (3) {
["date"]=>
string(26) "%s"
["timezone_type"]=>
int(3)
["timezone"]=>
string(13) "Europe/London"
}
-- lowercase null --
object(DateTime)#%d (3) {
["date"]=>
string(26) "%s"
["timezone_type"]=>
int(3)
["timezone"]=>
string(13) "Europe/London"
}
object(DateTime)#%d (3) {
["date"]=>
string(26) "%s"
["timezone_type"]=>
int(3)
["timezone"]=>
string(13) "Europe/London"
}
-- lowercase true --
bool(false)
bool(false)
-- lowercase false --
object(DateTime)#%d (3) {
["date"]=>
string(26) "%s"
["timezone_type"]=>
int(3)
["timezone"]=>
string(13) "Europe/London"
}
object(DateTime)#%d (3) {
["date"]=>
string(26) "%s"
["timezone_type"]=>
int(3)
["timezone"]=>
string(13) "Europe/London"
}
-- uppercase TRUE --
bool(false)
bool(false)
-- uppercase FALSE --
object(DateTime)#%d (3) {
["date"]=>
string(26) "%s"
["timezone_type"]=>
int(3)
["timezone"]=>
string(13) "Europe/London"
}
object(DateTime)#%d (3) {
["date"]=>
string(26) "%s"
["timezone_type"]=>
int(3)
["timezone"]=>
string(13) "Europe/London"
}
-- empty string DQ --
object(DateTime)#%d (3) {
["date"]=>
string(26) "%s"
["timezone_type"]=>
int(3)
["timezone"]=>
string(13) "Europe/London"
}
object(DateTime)#%d (3) {
["date"]=>
string(26) "%s"
["timezone_type"]=>
int(3)
["timezone"]=>
string(13) "Europe/London"
}
-- empty string SQ --
object(DateTime)#%d (3) {
["date"]=>
string(26) "%s"
["timezone_type"]=>
int(3)
["timezone"]=>
string(13) "Europe/London"
}
object(DateTime)#%d (3) {
["date"]=>
string(26) "%s"
["timezone_type"]=>
int(3)
["timezone"]=>
string(13) "Europe/London"
}
-- string DQ --
bool(false)
bool(false)
-- string SQ --
bool(false)
bool(false)
-- mixed case string --
bool(false)
bool(false)
-- heredoc --
bool(false)
bool(false)
-- instance of classWithToString --
bool(false)
bool(false)
-- instance of classWithoutToString --
Warning: date_create() expects parameter 1 to be string, object given in %s on line %d
bool(false)
Warning: date_create() expects parameter 1 to be string, object given in %s on line %d
bool(false)
-- undefined var --
object(DateTime)#%d (3) {
["date"]=>
string(26) "%s"
["timezone_type"]=>
int(3)
["timezone"]=>
string(13) "Europe/London"
}
object(DateTime)#%d (3) {
["date"]=>
string(26) "%s"
["timezone_type"]=>
int(3)
["timezone"]=>
string(13) "Europe/London"
}
-- unset var --
object(DateTime)#%d (3) {
["date"]=>
string(26) "%s"
["timezone_type"]=>
int(3)
["timezone"]=>
string(13) "Europe/London"
}
object(DateTime)#%d (3) {
["date"]=>
string(26) "%s"
["timezone_type"]=>
int(3)
["timezone"]=>
string(13) "Europe/London"
}
-- resource --
Warning: date_create() expects parameter 1 to be string, resource given in %s on line %d
bool(false)
Warning: date_create() expects parameter 1 to be string, resource given in %s on line %d
bool(false)
===DONE===