php-src/ext/session/tests/session_start_variation6.phpt
Ant Phillips 168e58d2da New set of session extension tests for PHP 6.0 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.
2008-04-22 16:05:42 +00:00

104 lines
1.5 KiB
PHP

--TEST--
Test session_start() function : variation
--SKIPIF--
<?php include('skipif.inc'); ?>
--FILE--
<?php
ob_start();
/*
* Prototype : bool session_start(void)
* Description : Initialize session data
* Source code : ext/session/session.c
*/
echo "*** Testing session_start() : variation ***\n";
session_start();
$_SESSION['colour'] = 'green';
$_SESSION['animal'] = 'cat';
$_SESSION['person'] = 'julia';
$_SESSION['age'] = 6;
var_dump($_SESSION);
var_dump(session_write_close());
var_dump($_SESSION);
session_start();
var_dump($_SESSION);
session_destroy();
echo "Done";
ob_end_flush();
?>
--EXPECTF--
*** Testing session_start() : variation ***
array(4) {
["colour"]=>
string(5) "green"
["animal"]=>
string(3) "cat"
["person"]=>
string(5) "julia"
["age"]=>
int(6)
}
NULL
array(4) {
["colour"]=>
string(5) "green"
["animal"]=>
string(3) "cat"
["person"]=>
string(5) "julia"
["age"]=>
int(6)
}
array(4) {
["colour"]=>
string(5) "green"
["animal"]=>
string(3) "cat"
["person"]=>
string(5) "julia"
["age"]=>
int(6)
}
Done
--UEXPECTF--
*** Testing session_start() : variation ***
array(4) {
[u"colour"]=>
unicode(5) "green"
[u"animal"]=>
unicode(3) "cat"
[u"person"]=>
unicode(5) "julia"
[u"age"]=>
int(6)
}
NULL
array(4) {
[u"colour"]=>
unicode(5) "green"
[u"animal"]=>
unicode(3) "cat"
[u"person"]=>
unicode(5) "julia"
[u"age"]=>
int(6)
}
array(4) {
[u"colour"]=>
unicode(5) "green"
[u"animal"]=>
unicode(3) "cat"
[u"person"]=>
unicode(5) "julia"
[u"age"]=>
int(6)
}
Done