summaryrefslogtreecommitdiff
path: root/ext/standard/tests/array/range_errors.phpt
blob: e8bdf376e3c36dfe42d4911ab10e6d8796fd47c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
--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";
    }
}
?>
--EXPECTF--
*** 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

Deprecated: range(): Passing null to parameter #3 ($step) of type int|float is deprecated in %s on line %d
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