summaryrefslogtreecommitdiff
path: root/ext/session/tests/session_module_name_variation4.phpt
diff options
context:
space:
mode:
authorAnt Phillips <ant@php.net>2008-04-29 08:57:09 +0000
committerAnt Phillips <ant@php.net>2008-04-29 08:57:09 +0000
commit52af9124b594e8c0e518a4857ff14aa82d240e7e (patch)
tree67785ccedb0c29b841ca73c24347407b57d39131 /ext/session/tests/session_module_name_variation4.phpt
parent2ecf4bb0a7c66bc882ff82d66d86ac6be5bffdf7 (diff)
downloadphp-git-52af9124b594e8c0e518a4857ff14aa82d240e7e.tar.gz
More session tests to improve code coverage for untested extension code
Diffstat (limited to 'ext/session/tests/session_module_name_variation4.phpt')
-rw-r--r--ext/session/tests/session_module_name_variation4.phpt67
1 files changed, 67 insertions, 0 deletions
diff --git a/ext/session/tests/session_module_name_variation4.phpt b/ext/session/tests/session_module_name_variation4.phpt
new file mode 100644
index 0000000000..0748b3db2f
--- /dev/null
+++ b/ext/session/tests/session_module_name_variation4.phpt
@@ -0,0 +1,67 @@
+--TEST--
+Test session_module_name() function : variation
+--SKIPIF--
+<?php include('skipif.inc'); ?>
+--INI--
+session.gc_probability=1
+session.gc_divisor=1
+session.gc_maxlifetime=0
+--FILE--
+<?php
+
+ob_start();
+
+/*
+ * Prototype : string session_module_name([string $module])
+ * Description : Get and/or set the current session module
+ * Source code : ext/session/session.c
+ */
+
+echo "*** Testing session_module_name() : variation ***\n";
+
+require_once "save_handler.inc";
+$path = dirname(__FILE__);
+session_save_path($path);
+session_module_name("files");
+
+session_start();
+$_SESSION["Blah"] = "Hello World!";
+$_SESSION["Foo"] = FALSE;
+$_SESSION["Guff"] = 1234567890;
+var_dump($_SESSION);
+
+var_dump(session_write_close());
+session_start();
+var_dump($_SESSION);
+var_dump(session_destroy());
+session_start();
+var_dump($_SESSION);
+var_dump(session_destroy());
+
+ob_end_flush();
+?>
+--EXPECTF--
+*** Testing session_module_name() : variation ***
+
+array(3) {
+ ["Blah"]=>
+ string(12) "Hello World!"
+ ["Foo"]=>
+ bool(false)
+ ["Guff"]=>
+ int(1234567890)
+}
+NULL
+array(3) {
+ ["Blah"]=>
+ string(12) "Hello World!"
+ ["Foo"]=>
+ bool(false)
+ ["Guff"]=>
+ int(1234567890)
+}
+bool(true)
+array(0) {
+}
+bool(true)
+