mirror of
https://github.com/php/php-src.git
synced 2025-08-17 06:28:50 +02:00
132 lines
3.4 KiB
PHP
132 lines
3.4 KiB
PHP
--TEST--
|
|
Test range() function (errors)
|
|
--INI--
|
|
precision=14
|
|
--FILE--
|
|
<?php
|
|
|
|
echo "\n*** Testing error conditions ***\n";
|
|
|
|
echo "\n-- Testing ( (low < high) && (step = 0) ) --\n";
|
|
try {
|
|
var_dump( range(1, 2, 0) );
|
|
} catch (\ValueError $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
|
|
try {
|
|
var_dump( range("a", "b", 0) );
|
|
} catch (\ValueError $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
|
|
echo "\n\n-- Testing ( (low > high) && (step = 0) ) --\n";
|
|
try {
|
|
var_dump( range(2, 1, 0) );
|
|
} catch (\ValueError $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
|
|
try {
|
|
var_dump( range("b", "a", 0) );
|
|
} catch (\ValueError $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
|
|
echo "\n\n-- Testing ( (low < high) && (high-low < step) ) --\n";
|
|
try {
|
|
var_dump( range(1.0, 7.0, 6.5) );
|
|
} catch (\ValueError $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
|
|
echo "\n\n-- Testing ( (low > high) && (low-high < step) ) --\n";
|
|
try {
|
|
var_dump( range(7.0, 1.0, 6.5) );
|
|
} catch (\ValueError $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
|
|
echo "\n\n-- Testing ( (low < high) && (high-low < step) ) for characters --\n";
|
|
try {
|
|
var_dump(range('a', 'z', 100));
|
|
} catch (\ValueError $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
|
|
echo "\n\n-- Testing ( (low > high) && (low-high < step) ) for characters --\n";
|
|
try {
|
|
var_dump(range('z', 'a', 100));
|
|
} catch (\ValueError $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
|
|
echo "\n-- Testing other conditions --\n";
|
|
try {
|
|
var_dump( range(-1, -2, 2) );
|
|
} catch (\ValueError $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
|
|
try {
|
|
var_dump( range("a", "j", "z") );
|
|
} catch (\TypeError $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
|
|
try {
|
|
var_dump( range(0, 1, "140962482048819216326.24") );
|
|
} catch (\ValueError $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
|
|
echo "\n-- Testing Invalid steps --\n";
|
|
$step_arr = array( "string", NULL, FALSE, "", "\0" );
|
|
|
|
foreach( $step_arr as $step ) {
|
|
try {
|
|
var_dump( range( 1, 5, $step ) );
|
|
} catch (\TypeError | \ValueError $e) {
|
|
echo $e->getMessage(), "\n";
|
|
}
|
|
}
|
|
?>
|
|
--EXPECT--
|
|
*** Testing error conditions ***
|
|
|
|
-- Testing ( (low < high) && (step = 0) ) --
|
|
range(): Argument #3 ($step) must not exceed the specified range
|
|
range(): Argument #3 ($step) must not exceed the specified range
|
|
|
|
|
|
-- Testing ( (low > high) && (step = 0) ) --
|
|
range(): Argument #3 ($step) must not exceed the specified range
|
|
range(): Argument #3 ($step) must not exceed the specified range
|
|
|
|
|
|
-- Testing ( (low < high) && (high-low < step) ) --
|
|
range(): Argument #3 ($step) must not exceed the specified range
|
|
|
|
|
|
-- Testing ( (low > high) && (low-high < step) ) --
|
|
range(): Argument #3 ($step) must not exceed the specified range
|
|
|
|
|
|
-- Testing ( (low < high) && (high-low < step) ) for characters --
|
|
range(): Argument #3 ($step) must not exceed the specified range
|
|
|
|
|
|
-- Testing ( (low > high) && (low-high < step) ) for characters --
|
|
range(): Argument #3 ($step) must not exceed the specified range
|
|
|
|
-- Testing other conditions --
|
|
range(): Argument #3 ($step) must not exceed the specified range
|
|
range(): Argument #3 ($step) must be of type int|float, string given
|
|
range(): Argument #3 ($step) must not exceed the specified range
|
|
|
|
-- Testing Invalid steps --
|
|
range(): Argument #3 ($step) must be of type int|float, string given
|
|
range(): Argument #3 ($step) must not exceed the specified range
|
|
range(): Argument #3 ($step) must not exceed the specified range
|
|
range(): Argument #3 ($step) must be of type int|float, string given
|
|
range(): Argument #3 ($step) must be of type int|float, string given
|