summaryrefslogtreecommitdiff
path: root/ext/date/tests/date_date_set_variation3.phpt
diff options
context:
space:
mode:
authorandy wharmby <wharmby@php.net>2009-03-18 23:35:25 +0000
committerandy wharmby <wharmby@php.net>2009-03-18 23:35:25 +0000
commita2e47734050969680a121972f31a59d92544fd5b (patch)
treea65cbba49ac46ba8333c9c950b50dd04c81f934f /ext/date/tests/date_date_set_variation3.phpt
parent3a30cfe1e04072364c76700e676460c2f96eb68f (diff)
downloadphp-git-a2e47734050969680a121972f31a59d92544fd5b.tar.gz
New tests for various date extension functions. Tested on Windows, Linux and linux 64
Diffstat (limited to 'ext/date/tests/date_date_set_variation3.phpt')
-rw-r--r--ext/date/tests/date_date_set_variation3.phpt329
1 files changed, 329 insertions, 0 deletions
diff --git a/ext/date/tests/date_date_set_variation3.phpt b/ext/date/tests/date_date_set_variation3.phpt
new file mode 100644
index 0000000000..80703414be
--- /dev/null
+++ b/ext/date/tests/date_date_set_variation3.phpt
@@ -0,0 +1,329 @@
+--TEST--
+Test date_date_set() function : usage variation - Passing unexpected values to third argument $month.
+--FILE--
+<?php
+/* Prototype : DateTime date_date_set ( DateTime $object , int $year , int $month , int $day )
+ * Description: Resets the current date of the DateTime object to a different date.
+ * Source code: ext/date/php_date.c
+ * Alias to functions: DateTime::setDate
+ */
+
+echo "*** Testing date_date_set() : usage variation - unexpected values to third argument \$month***\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
+);
+
+$object = date_create("2009-02-27 08:34:10");
+$day = 2;
+$year = 1963;
+
+foreach($inputs as $variation =>$month) {
+ echo "\n-- $variation --\n";
+ var_dump( date_date_set($object, $year, $month, $day) );
+};
+
+// closing the resource
+fclose( $file_handle );
+
+?>
+===DONE===
+--EXPECTF--
+*** Testing date_date_set() : usage variation - unexpected values to third argument $month***
+
+-- int 0 --
+object(DateTime)#%d (3) {
+ ["date"]=>
+ string(19) "1962-12-02 08:34:10"
+ ["timezone_type"]=>
+ int(3)
+ ["timezone"]=>
+ string(13) "Europe/London"
+}
+
+-- int 1 --
+object(DateTime)#%d (3) {
+ ["date"]=>
+ string(19) "1963-01-02 08:34:10"
+ ["timezone_type"]=>
+ int(3)
+ ["timezone"]=>
+ string(13) "Europe/London"
+}
+
+-- int 12345 --
+object(DateTime)#%d (3) {
+ ["date"]=>
+ string(19) "2991-09-02 08:34:10"
+ ["timezone_type"]=>
+ int(3)
+ ["timezone"]=>
+ string(13) "Europe/London"
+}
+
+-- int -12345 --
+object(DateTime)#%d (3) {
+ ["date"]=>
+ string(19) "0934-03-02 08:34:10"
+ ["timezone_type"]=>
+ int(3)
+ ["timezone"]=>
+ string(13) "Europe/London"
+}
+
+-- float 10.5 --
+object(DateTime)#%d (3) {
+ ["date"]=>
+ string(19) "1963-10-02 08:34:10"
+ ["timezone_type"]=>
+ int(3)
+ ["timezone"]=>
+ string(13) "Europe/London"
+}
+
+-- float -10.5 --
+object(DateTime)#%d (3) {
+ ["date"]=>
+ string(19) "1962-02-02 08:34:10"
+ ["timezone_type"]=>
+ int(3)
+ ["timezone"]=>
+ string(13) "Europe/London"
+}
+
+-- float .5 --
+object(DateTime)#%d (3) {
+ ["date"]=>
+ string(19) "1962-12-02 08:34:10"
+ ["timezone_type"]=>
+ int(3)
+ ["timezone"]=>
+ string(13) "Europe/London"
+}
+
+-- empty array --
+
+Warning: date_date_set() expects parameter 3 to be long, array given in %s on line %d
+bool(false)
+
+-- int indexed array --
+
+Warning: date_date_set() expects parameter 3 to be long, array given in %s on line %d
+bool(false)
+
+-- associative array --
+
+Warning: date_date_set() expects parameter 3 to be long, array given in %s on line %d
+bool(false)
+
+-- nested arrays --
+
+Warning: date_date_set() expects parameter 3 to be long, array given in %s on line %d
+bool(false)
+
+-- uppercase NULL --
+object(DateTime)#%d (3) {
+ ["date"]=>
+ string(19) "1962-12-02 08:34:10"
+ ["timezone_type"]=>
+ int(3)
+ ["timezone"]=>
+ string(13) "Europe/London"
+}
+
+-- lowercase null --
+object(DateTime)#%d (3) {
+ ["date"]=>
+ string(19) "1962-12-02 08:34:10"
+ ["timezone_type"]=>
+ int(3)
+ ["timezone"]=>
+ string(13) "Europe/London"
+}
+
+-- lowercase true --
+object(DateTime)#%d (3) {
+ ["date"]=>
+ string(19) "1963-01-02 08:34:10"
+ ["timezone_type"]=>
+ int(3)
+ ["timezone"]=>
+ string(13) "Europe/London"
+}
+
+-- lowercase false --
+object(DateTime)#%d (3) {
+ ["date"]=>
+ string(19) "1962-12-02 08:34:10"
+ ["timezone_type"]=>
+ int(3)
+ ["timezone"]=>
+ string(13) "Europe/London"
+}
+
+-- uppercase TRUE --
+object(DateTime)#%d (3) {
+ ["date"]=>
+ string(19) "1963-01-02 08:34:10"
+ ["timezone_type"]=>
+ int(3)
+ ["timezone"]=>
+ string(13) "Europe/London"
+}
+
+-- uppercase FALSE --
+object(DateTime)#%d (3) {
+ ["date"]=>
+ string(19) "1962-12-02 08:34:10"
+ ["timezone_type"]=>
+ int(3)
+ ["timezone"]=>
+ string(13) "Europe/London"
+}
+
+-- empty string DQ --
+
+Warning: date_date_set() expects parameter 3 to be long, string given in %s on line %d
+bool(false)
+
+-- empty string SQ --
+
+Warning: date_date_set() expects parameter 3 to be long, string given in %s on line %d
+bool(false)
+
+-- string DQ --
+
+Warning: date_date_set() expects parameter 3 to be long, string given in %s on line %d
+bool(false)
+
+-- string SQ --
+
+Warning: date_date_set() expects parameter 3 to be long, string given in %s on line %d
+bool(false)
+
+-- mixed case string --
+
+Warning: date_date_set() expects parameter 3 to be long, string given in %s on line %d
+bool(false)
+
+-- heredoc --
+
+Warning: date_date_set() expects parameter 3 to be long, string given in %s on line %d
+bool(false)
+
+-- instance of classWithToString --
+
+Warning: date_date_set() expects parameter 3 to be long, object given in %s on line %d
+bool(false)
+
+-- instance of classWithoutToString --
+
+Warning: date_date_set() expects parameter 3 to be long, object given in %s on line %d
+bool(false)
+
+-- undefined var --
+object(DateTime)#%d (3) {
+ ["date"]=>
+ string(19) "1962-12-02 08:34:10"
+ ["timezone_type"]=>
+ int(3)
+ ["timezone"]=>
+ string(13) "Europe/London"
+}
+
+-- unset var --
+object(DateTime)#%d (3) {
+ ["date"]=>
+ string(19) "1962-12-02 08:34:10"
+ ["timezone_type"]=>
+ int(3)
+ ["timezone"]=>
+ string(13) "Europe/London"
+}
+
+-- resource --
+
+Warning: date_date_set() expects parameter 3 to be long, resource given in %s on line %d
+bool(false)
+===DONE===