summaryrefslogtreecommitdiff
path: root/ext/date/tests/timezone_name_get_error.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/date/tests/timezone_name_get_error.phpt')
-rw-r--r--ext/date/tests/timezone_name_get_error.phpt56
1 files changed, 56 insertions, 0 deletions
diff --git a/ext/date/tests/timezone_name_get_error.phpt b/ext/date/tests/timezone_name_get_error.phpt
new file mode 100644
index 0000000..3c33e33
--- /dev/null
+++ b/ext/date/tests/timezone_name_get_error.phpt
@@ -0,0 +1,56 @@
+--TEST--
+Test timezone_name_get() function : error conditions
+--FILE--
+<?php
+/* Prototype : string timezone_name_get ( DateTime $object )
+ * Description: Returns the name of the timezone
+ * Source code: ext/date/php_date.c
+ * Alias to functions: DateTimeZone::getName()
+ */
+
+// Set timezone
+date_default_timezone_set("Europe/London");
+
+echo "*** Testing timezone_name_get() : error conditions ***\n";
+
+echo "\n-- Testing timezone_name_get() function with zero arguments --\n";
+var_dump( timezone_name_get() );
+
+echo "\n-- Testing date_timezone_set() function with more than expected no. of arguments --\n";
+$datetime = date_create("2009-01-30 17:57:32");
+$extra_arg = 99;
+var_dump( timezone_name_get($datetime, $extra_arg) );
+
+echo "\n-- Testing timezone_name_get() function with an invalid values for \$object argument --\n";
+$invalid_obj = new stdClass();
+var_dump( timezone_name_get($invalid_obj) );
+$invalid_obj = 10;
+var_dump( timezone_name_get($invalid_obj) );
+$invalid_obj = null;
+var_dump( timezone_name_get($invalid_obj) );
+?>
+===DONE===
+--EXPECTF--
+*** Testing timezone_name_get() : error conditions ***
+
+-- Testing timezone_name_get() function with zero arguments --
+
+Warning: timezone_name_get() expects exactly 1 parameter, 0 given in %s on line %d
+bool(false)
+
+-- Testing date_timezone_set() function with more than expected no. of arguments --
+
+Warning: timezone_name_get() expects exactly 1 parameter, 2 given in %s on line %d
+bool(false)
+
+-- Testing timezone_name_get() function with an invalid values for $object argument --
+
+Warning: timezone_name_get() expects parameter 1 to be DateTimeZone, object given in %s on line %d
+bool(false)
+
+Warning: timezone_name_get() expects parameter 1 to be DateTimeZone, integer given in %s on line %d
+bool(false)
+
+Warning: timezone_name_get() expects parameter 1 to be DateTimeZone, null given in %s on line %d
+bool(false)
+===DONE===