php-src/ext/session/tests/session_set_save_handler_class_005.phpt
2011-09-14 06:48:26 +00:00

55 lines
1.4 KiB
PHP

--TEST--
Test session_set_save_handler() : incomplete implementation
--INI--
session.save_handler=files
session.name=PHPSESSID
--SKIPIF--
<?php include('skipif.inc'); ?>
--FILE--
<?php
ob_start();
/*
* Prototype : bool session_set_save_handler(SessionHandler $handler [, bool $register_shutdown_function = true])
* Description : Sets user-level session storage functions
* Source code : ext/session/session.c
*/
echo "*** Testing session_set_save_handler() : incomplete implementation ***\n";
class MySession6 extends SessionHandler {
public function open($path, $name) {
// don't call parent
return true;
}
public function read($id) {
// should error because parent::open hasn't been called
return parent::read($id);
}
}
$handler = new MySession6;
session_set_save_handler($handler);
session_start();
var_dump(session_id(), ini_get('session.save_handler'), $_SESSION);
session_write_close();
session_unset();
--EXPECTF--
*** Testing session_set_save_handler() : incomplete implementation ***
Warning: SessionHandler::read(): Parent session handler is not open in %ssession_set_save_handler_class_005.php on line %d
string(%d) "%s"
string(4) "user"
array(0) {
}
Warning: SessionHandler::write(): Parent session handler is not open in %ssession_set_save_handler_class_005.php on line %d
Warning: SessionHandler::close(): Parent session handler is not open in %ssession_set_save_handler_class_005.php on line %d