mirror of
https://github.com/php/php-src.git
synced 2025-08-19 17:04:47 +02:00

PHP requires boolean typehints to be written "bool" and disallows
"boolean" as an alias. This changes the error messages to match
the actual type name and avoids confusing messages like "must be
of type boolean, boolean given".
This a followup to ce1d69a1f6
, which
implements the same change for integer->int.
290 lines
6.6 KiB
PHP
290 lines
6.6 KiB
PHP
--TEST--
|
|
Test session_start() function : error functionality
|
|
--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() : error functionality ***\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
|
|
);
|
|
|
|
|
|
$iterator = 1;
|
|
foreach($inputs as $input) {
|
|
echo "\n-- Iteration $iterator --\n";
|
|
var_dump(session_start($input));
|
|
var_dump(session_destroy());
|
|
$iterator++;
|
|
};
|
|
|
|
fclose($fp);
|
|
echo "Done";
|
|
ob_end_flush();
|
|
?>
|
|
--EXPECTF--
|
|
*** Testing session_start() : error functionality ***
|
|
|
|
-- Iteration 1 --
|
|
|
|
Warning: session_start() expects parameter 1 to be array, int given in %s on line %d
|
|
bool(false)
|
|
|
|
Warning: session_destroy(): Trying to destroy uninitialized session in %s on line %d
|
|
bool(false)
|
|
|
|
-- Iteration 2 --
|
|
|
|
Warning: session_start() expects parameter 1 to be array, int given in %s on line %d
|
|
bool(false)
|
|
|
|
Warning: session_destroy(): Trying to destroy uninitialized session in %s on line %d
|
|
bool(false)
|
|
|
|
-- Iteration 3 --
|
|
|
|
Warning: session_start() expects parameter 1 to be array, int given in %s on line %d
|
|
bool(false)
|
|
|
|
Warning: session_destroy(): Trying to destroy uninitialized session in %s on line %d
|
|
bool(false)
|
|
|
|
-- Iteration 4 --
|
|
|
|
Warning: session_start() expects parameter 1 to be array, int given in %s on line %d
|
|
bool(false)
|
|
|
|
Warning: session_destroy(): Trying to destroy uninitialized session in %s on line %d
|
|
bool(false)
|
|
|
|
-- Iteration 5 --
|
|
|
|
Warning: session_start() expects parameter 1 to be array, float given in %s on line %d
|
|
bool(false)
|
|
|
|
Warning: session_destroy(): Trying to destroy uninitialized session in %s on line %d
|
|
bool(false)
|
|
|
|
-- Iteration 6 --
|
|
|
|
Warning: session_start() expects parameter 1 to be array, float given in %s on line %d
|
|
bool(false)
|
|
|
|
Warning: session_destroy(): Trying to destroy uninitialized session in %s on line %d
|
|
bool(false)
|
|
|
|
-- Iteration 7 --
|
|
|
|
Warning: session_start() expects parameter 1 to be array, float given in %s on line %d
|
|
bool(false)
|
|
|
|
Warning: session_destroy(): Trying to destroy uninitialized session in %s on line %d
|
|
bool(false)
|
|
|
|
-- Iteration 8 --
|
|
|
|
Warning: session_start() expects parameter 1 to be array, float given in %s on line %d
|
|
bool(false)
|
|
|
|
Warning: session_destroy(): Trying to destroy uninitialized session in %s on line %d
|
|
bool(false)
|
|
|
|
-- Iteration 9 --
|
|
|
|
Warning: session_start() expects parameter 1 to be array, float given in %s on line %d
|
|
bool(false)
|
|
|
|
Warning: session_destroy(): Trying to destroy uninitialized session in %s on line %d
|
|
bool(false)
|
|
|
|
-- Iteration 10 --
|
|
|
|
Warning: session_start() expects parameter 1 to be array, null given in %s on line %d
|
|
bool(false)
|
|
|
|
Warning: session_destroy(): Trying to destroy uninitialized session in %s on line %d
|
|
bool(false)
|
|
|
|
-- Iteration 11 --
|
|
|
|
Warning: session_start() expects parameter 1 to be array, null given in %s on line %d
|
|
bool(false)
|
|
|
|
Warning: session_destroy(): Trying to destroy uninitialized session in %s on line %d
|
|
bool(false)
|
|
|
|
-- Iteration 12 --
|
|
|
|
Warning: session_start() expects parameter 1 to be array, bool given in %s on line %d
|
|
bool(false)
|
|
|
|
Warning: session_destroy(): Trying to destroy uninitialized session in %s on line %d
|
|
bool(false)
|
|
|
|
-- Iteration 13 --
|
|
|
|
Warning: session_start() expects parameter 1 to be array, bool given in %s on line %d
|
|
bool(false)
|
|
|
|
Warning: session_destroy(): Trying to destroy uninitialized session in %s on line %d
|
|
bool(false)
|
|
|
|
-- Iteration 14 --
|
|
|
|
Warning: session_start() expects parameter 1 to be array, bool given in %s on line %d
|
|
bool(false)
|
|
|
|
Warning: session_destroy(): Trying to destroy uninitialized session in %s on line %d
|
|
bool(false)
|
|
|
|
-- Iteration 15 --
|
|
|
|
Warning: session_start() expects parameter 1 to be array, bool given in %s on line %d
|
|
bool(false)
|
|
|
|
Warning: session_destroy(): Trying to destroy uninitialized session in %s on line %d
|
|
bool(false)
|
|
|
|
-- Iteration 16 --
|
|
|
|
Warning: session_start() expects parameter 1 to be array, string given in %s on line %d
|
|
bool(false)
|
|
|
|
Warning: session_destroy(): Trying to destroy uninitialized session in %s on line %d
|
|
bool(false)
|
|
|
|
-- Iteration 17 --
|
|
|
|
Warning: session_start() expects parameter 1 to be array, string given in %s on line %d
|
|
bool(false)
|
|
|
|
Warning: session_destroy(): Trying to destroy uninitialized session in %s on line %d
|
|
bool(false)
|
|
|
|
-- Iteration 18 --
|
|
|
|
Warning: session_start() expects parameter 1 to be array, string given in %s on line %d
|
|
bool(false)
|
|
|
|
Warning: session_destroy(): Trying to destroy uninitialized session in %s on line %d
|
|
bool(false)
|
|
|
|
-- Iteration 19 --
|
|
|
|
Warning: session_start() expects parameter 1 to be array, string given in %s on line %d
|
|
bool(false)
|
|
|
|
Warning: session_destroy(): Trying to destroy uninitialized session in %s on line %d
|
|
bool(false)
|
|
|
|
-- Iteration 20 --
|
|
|
|
Warning: session_start() expects parameter 1 to be array, string given in %s on line %d
|
|
bool(false)
|
|
|
|
Warning: session_destroy(): Trying to destroy uninitialized session in %s on line %d
|
|
bool(false)
|
|
|
|
-- Iteration 21 --
|
|
|
|
Warning: session_start() expects parameter 1 to be array, object given in %s on line %d
|
|
bool(false)
|
|
|
|
Warning: session_destroy(): Trying to destroy uninitialized session in %s on line %d
|
|
bool(false)
|
|
|
|
-- Iteration 22 --
|
|
|
|
Warning: session_start() expects parameter 1 to be array, null given in %s on line %d
|
|
bool(false)
|
|
|
|
Warning: session_destroy(): Trying to destroy uninitialized session in %s on line %d
|
|
bool(false)
|
|
|
|
-- Iteration 23 --
|
|
|
|
Warning: session_start() expects parameter 1 to be array, null given in %s on line %d
|
|
bool(false)
|
|
|
|
Warning: session_destroy(): Trying to destroy uninitialized session in %s on line %d
|
|
bool(false)
|
|
|
|
-- Iteration 24 --
|
|
|
|
Warning: session_start() expects parameter 1 to be array, resource given in %s on line %d
|
|
bool(false)
|
|
|
|
Warning: session_destroy(): Trying to destroy uninitialized session in %s on line %d
|
|
bool(false)
|
|
Done
|