php-src/ext/session/tests/004.phpt

123 lines
2.3 KiB
Plaintext
Raw Normal View History

2000-12-24 16:33:27 +00:00
--TEST--
session_set_save_handler test
--SKIPIF--
2002-04-19 07:55:24 +00:00
<?php include('skipif.inc'); ?>
--INI--
2002-10-03 15:11:01 +00:00
session.use_cookies=0
session.cache_limiter=
2002-10-13 11:14:49 +00:00
session.name=PHPSESSID
session.serialize_handler=php
2000-12-24 16:33:27 +00:00
--FILE--
<?php
2002-10-03 16:14:55 +00:00
error_reporting(E_ALL);
2000-12-24 16:33:27 +00:00
class handler {
2007-01-05 02:07:59 +00:00
public $data = 'baz|O:3:"foo":2:{s:3:"bar";s:2:"ok";s:3:"yes";i:1;}arr|a:1:{i:3;O:3:"foo":2:{s:3:"bar";s:2:"ok";s:3:"yes";i:1;}}';
2000-12-24 16:33:27 +00:00
function open($save_path, $session_name)
{
print "OPEN: $session_name\n";
2000-12-24 16:33:27 +00:00
return true;
}
function close()
{
return true;
}
function read($key)
{
print "READ: $key\n";
return $GLOBALS["hnd"]->data;
2000-12-24 16:33:27 +00:00
}
function write($key, $val)
{
print "WRITE: $key, $val\n";
$GLOBALS["hnd"]->data = $val;
2000-12-24 16:33:27 +00:00
return true;
}
function destroy($key)
{
print "DESTROY: $key\n";
return true;
}
function gc() { return true; }
2007-01-05 02:07:59 +00:00
function __construct()
{
if (ini_get("unicode.semantics")) {
/* Setup proper deserialization data for unicode.semantics mode */
$this->data = str_replace('s:', 'U:', $this->data);
}
}
2000-12-24 16:33:27 +00:00
}
$hnd = new handler;
class foo {
public $bar = "ok";
2000-12-24 16:33:27 +00:00
function method() { $this->yes++; }
}
session_set_save_handler(array($hnd, "open"), array($hnd, "close"), array($hnd, "read"), array($hnd, "write"), array($hnd, "destroy"), array($hnd, "gc"));
session_id("abtest");
2000-12-24 16:33:27 +00:00
session_start();
2007-01-05 02:07:59 +00:00
$baz = $_SESSION['baz'];
$arr = $_SESSION['arr'];
2000-12-24 16:33:27 +00:00
$baz->method();
$arr[3]->method();
var_dump($baz);
var_dump($arr);
session_write_close();
session_set_save_handler(array($hnd, "open"), array($hnd, "close"), array($hnd, "read"), array($hnd, "write"), array($hnd, "destroy"), array($hnd, "gc"));
session_start();
var_dump($baz);
var_dump($arr);
2000-12-24 16:33:27 +00:00
session_destroy();
?>
--EXPECTF--
OPEN: PHPSESSID
READ: abtest
2007-01-05 02:07:59 +00:00
object(foo)#%d (2) {
[u"bar"]=>
unicode(2) "ok"
[u"yes"]=>
int(2)
}
array(1) {
[3]=>
object(foo)#%d (2) {
[u"bar"]=>
unicode(2) "ok"
[u"yes"]=>
int(2)
}
}
WRITE: abtest, baz|O:3:"foo":2:{U:3:"bar";U:2:"ok";U:3:"yes";i:2;}arr|a:1:{i:3;O:3:"foo":2:{U:3:"bar";U:2:"ok";U:3:"yes";i:2;}}
OPEN: PHPSESSID
READ: abtest
object(foo)#%d (2) {
[u"bar"]=>
unicode(2) "ok"
[u"yes"]=>
int(2)
}
array(1) {
[3]=>
object(foo)#%d (2) {
[u"bar"]=>
unicode(2) "ok"
[u"yes"]=>
int(2)
}
}
DESTROY: abtest