summaryrefslogtreecommitdiffstats
path: root/tests/mocks/libraries/session.php
diff options
context:
space:
mode:
authordchill42 <dchill42@gmail.com>2012-08-29 16:09:29 +0200
committerdchill42 <dchill42@gmail.com>2012-08-29 16:09:29 +0200
commit9a949fab0c8428233f0de5b199bf955e61fb0e0a (patch)
tree2ec239870adaa5ce0394bf311122a2052d977ce7 /tests/mocks/libraries/session.php
parent6030719346e9b0eb0e0ea99c679cadeb1fe4afde (diff)
parent1e40c213610a4bb643e51c2b298629471664163b (diff)
Merge branch 'develop' of github.com:/EllisLab/CodeIgniter into load_config_units
Diffstat (limited to 'tests/mocks/libraries/session.php')
-rw-r--r--tests/mocks/libraries/session.php43
1 files changed, 43 insertions, 0 deletions
diff --git a/tests/mocks/libraries/session.php b/tests/mocks/libraries/session.php
new file mode 100644
index 000000000..9d6feee42
--- /dev/null
+++ b/tests/mocks/libraries/session.php
@@ -0,0 +1,43 @@
+<?php
+
+/**
+ * Mock library to add testing features to Session driver library
+ */
+class Mock_Libraries_Session extends CI_Session {
+ /**
+ * Simulate new page load
+ */
+ public function reload()
+ {
+ $this->_flashdata_sweep();
+ $this->_flashdata_mark();
+ $this->_tempdata_sweep();
+ }
+}
+
+/**
+ * Mock cookie driver to overload cookie setting
+ */
+class Mock_Libraries_Session_cookie extends CI_Session_cookie {
+ /**
+ * Overload _setcookie to manage $_COOKIE values, since actual cookies can't be set in unit testing
+ */
+ protected function _setcookie($name, $value = '', $expire = 0, $path = '', $domain = '', $secure = false,
+ $httponly = false)
+ {
+ if (empty($value) || $expire <= time()) {
+ // Clear cookie
+ unset($_COOKIE[$name]);
+ }
+ else {
+ // Set cookie
+ $_COOKIE[$name] = $value;
+ }
+ }
+}
+
+/**
+ * Mock native driver (just for consistency in loading)
+ */
+class Mock_Libraries_Session_native extends CI_Session_native { }
+