-
Notifications
You must be signed in to change notification settings - Fork 568
Expand file tree
/
Copy pathInvalidUnaryOperationRuleTest.php
More file actions
183 lines (172 loc) · 3.7 KB
/
InvalidUnaryOperationRuleTest.php
File metadata and controls
183 lines (172 loc) · 3.7 KB
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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
<?php declare(strict_types = 1);
namespace PHPStan\Rules\Operators;
use PHPStan\Rules\Rule;
use PHPStan\Rules\RuleLevelHelper;
use PHPStan\Testing\RuleTestCase;
use PHPUnit\Framework\Attributes\RequiresPhp;
/**
* @extends RuleTestCase<InvalidUnaryOperationRule>
*/
class InvalidUnaryOperationRuleTest extends RuleTestCase
{
private bool $checkExplicitMixed = false;
private bool $checkImplicitMixed = false;
protected function getRule(): Rule
{
return new InvalidUnaryOperationRule(
new RuleLevelHelper(self::createReflectionProvider(), true, false, true, $this->checkExplicitMixed, $this->checkImplicitMixed, false, true),
);
}
public function testRule(): void
{
$this->analyse([__DIR__ . '/data/invalid-unary.php'], [
[
'Unary operation "+" on string results in an error.',
11,
],
[
'Unary operation "-" on string results in an error.',
12,
],
[
'Unary operation "+" on \'bla\' results in an error.',
19,
],
[
'Unary operation "-" on \'bla\' results in an error.',
20,
],
[
'Unary operation "~" on array{} results in an error.',
24,
],
[
'Unary operation "~" on bool results in an error.',
36,
],
[
'Unary operation "+" on array results in an error.',
38,
],
[
'Unary operation "-" on array results in an error.',
39,
],
[
'Unary operation "~" on array results in an error.',
40,
],
[
'Unary operation "+" on object results in an error.',
42,
],
[
'Unary operation "-" on object results in an error.',
43,
],
[
'Unary operation "~" on object results in an error.',
44,
],
[
'Unary operation "+" on resource results in an error.',
50,
],
[
'Unary operation "-" on resource results in an error.',
51,
],
[
'Unary operation "~" on resource results in an error.',
52,
],
[
'Unary operation "~" on null results in an error.',
61,
],
]);
}
#[RequiresPhp('>= 8.0')]
public function testMixed(): void
{
$this->checkImplicitMixed = true;
$this->checkExplicitMixed = true;
$this->analyse([__DIR__ . '/data/invalid-unary-mixed.php'], [
[
'Unary operation "+" on T results in an error.',
11,
],
[
'Unary operation "-" on T results in an error.',
12,
],
[
'Unary operation "~" on T results in an error.',
13,
],
[
'Unary operation "+" on mixed results in an error.',
18,
],
[
'Unary operation "-" on mixed results in an error.',
19,
],
[
'Unary operation "~" on mixed results in an error.',
20,
],
[
'Unary operation "+" on mixed results in an error.',
25,
],
[
'Unary operation "-" on mixed results in an error.',
26,
],
[
'Unary operation "~" on mixed results in an error.',
27,
],
]);
}
public function testUnion(): void
{
$this->analyse([__DIR__ . '/data/unary-union.php'], [
[
'Unary operation "+" on array|bool|float|int|object|string|null results in an error.',
21,
],
[
'Unary operation "-" on array|bool|float|int|object|string|null results in an error.',
22,
],
[
'Unary operation "~" on array|bool|float|int|object|string|null results in an error.',
23,
],
[
'Unary operation "+" on (array|object) results in an error.',
25,
],
[
'Unary operation "-" on (array|object) results in an error.',
26,
],
[
'Unary operation "~" on (array|object) results in an error.',
27,
],
]);
}
#[RequiresPhp('>= 8.4')]
public function testBcMathNumber(): void
{
$this->analyse([__DIR__ . '/data/unary-bcmath-number.php'], [
[
'Unary operation "~" on BcMath\Number results in an error.',
16,
],
]);
}
}