php-src/ext/session/tests/session_unregister_variation1.phpt
Ant Phillips 79b73d1218 New set of session extension tests for PHP 5.3 branch.
These hopefully test a reasonable set of basic, error and variations for
the twenty or so session functions. Note however that they do not
test all the session configuration settings, nor do they test anything
with register_globals enabled.
2008-04-22 16:04:30 +00:00

159 lines
2.1 KiB
PHP

--TEST--
Test session_unregister() function : variation
--SKIPIF--
<?php include('skipif.inc'); ?>
--FILE--
<?php
ob_start();
/*
* Prototype : bool session_unregister(string $name)
* Description : Unregister a global variable from the current session
* Source code : ext/session/session.c
*/
echo "*** Testing session_unregister() : variation ***\n";
// Get an unset variable
$unset_var = 10;
unset($unset_var);
class classA
{
public function __toString() {
return "Hello World!";
}
}
$heredoc = <<<EOT
Hello World!
EOT;
$fp = fopen(__FILE__, "r");
// Unexpected values to be passed as arguments
$inputs = array(
// Integer data
/*1*/ 0,
1,
12345,
-2345,
// Float data
/*5*/ 10.5,
-10.5,
12.3456789000e10,
12.3456789000E-10,
.5,
// Null data
/*10*/ NULL,
null,
// Boolean data
/*12*/ true,
false,
TRUE,
FALSE,
// Empty strings
/*16*/ "",
'',
// Invalid string data
/*18*/ "Nothing",
'Nothing',
$heredoc,
// Object data
/*21*/ new classA(),
// Undefined data
/*22*/ @$undefined_var,
// Unset data
/*23*/ @$unset_var,
// Resource variable
/*24*/ $fp
);
var_dump(session_start());
var_dump($_SESSION);
var_dump(session_register($inputs));
var_dump($_SESSION);
var_dump(session_destroy());
var_dump($_SESSION);
fclose($fp);
echo "Done";
ob_end_flush();
?>
--EXPECTF--
*** Testing session_unregister() : variation ***
bool(true)
array(0) {
}
bool(true)
array(13) {
["0"]=>
NULL
["1"]=>
NULL
["12345"]=>
NULL
["-2345"]=>
NULL
["10.5"]=>
NULL
["-10.5"]=>
NULL
["123456789000"]=>
NULL
["1.23456789E-9"]=>
NULL
["0.5"]=>
NULL
[""]=>
NULL
["Nothing"]=>
NULL
["Hello World!"]=>
NULL
["Resource id #%d"]=>
NULL
}
bool(true)
array(13) {
["0"]=>
NULL
["1"]=>
NULL
["12345"]=>
NULL
["-2345"]=>
NULL
["10.5"]=>
NULL
["-10.5"]=>
NULL
["123456789000"]=>
NULL
["1.23456789E-9"]=>
NULL
["0.5"]=>
NULL
[""]=>
NULL
["Nothing"]=>
NULL
["Hello World!"]=>
NULL
["Resource id #%d"]=>
NULL
}
Done