2
2
3
3
namespace PHPStan \Analyser ;
4
4
5
+ use PhpParser \Node \Expr \BinaryOp \Equal ;
6
+ use PhpParser \Node \Expr \FuncCall ;
7
+ use PhpParser \Node \Scalar \String_ ;
5
8
use PHPStan \ShouldNotHappenException ;
6
9
use PHPStan \Testing \PHPStanTestCase ;
10
+ use PHPStan \Type \NullType ;
7
11
8
12
class TypeSpecifierContextTest extends PHPStanTestCase
9
13
{
@@ -13,23 +17,27 @@ public function dataContext(): array
13
17
return [
14
18
[
15
19
TypeSpecifierContext::createTrue (),
16
- [true , true , false , false , false ],
20
+ [true , true , false , false , false , false ],
17
21
],
18
22
[
19
23
TypeSpecifierContext::createTruthy (),
20
- [true , true , false , false , false ],
24
+ [true , true , false , false , false , false ],
21
25
],
22
26
[
23
27
TypeSpecifierContext::createFalse (),
24
- [false , false , true , true , false ],
28
+ [false , false , true , true , false , false ],
25
29
],
26
30
[
27
31
TypeSpecifierContext::createFalsey (),
28
- [false , false , true , true , false ],
32
+ [false , false , true , true , false , false ],
29
33
],
30
34
[
31
35
TypeSpecifierContext::createNull (),
32
- [false , false , false , false , true ],
36
+ [false , false , false , false , true , false ],
37
+ ],
38
+ [
39
+ $ this ->createComparisonContext (),
40
+ [false , false , false , false , false , true ],
33
41
],
34
42
];
35
43
}
@@ -45,27 +53,40 @@ public function testContext(TypeSpecifierContext $context, array $results): void
45
53
$ this ->assertSame ($ results [2 ], $ context ->false ());
46
54
$ this ->assertSame ($ results [3 ], $ context ->falsey ());
47
55
$ this ->assertSame ($ results [4 ], $ context ->null ());
56
+
57
+ if ($ results [5 ]) {
58
+ $ this ->assertNotNull ($ context ->comparison ());
59
+ } else {
60
+ $ this ->assertNull ($ context ->comparison ());
61
+ }
48
62
}
49
63
50
64
public function dataNegate (): array
51
65
{
52
66
return [
53
67
[
54
68
TypeSpecifierContext::createTrue ()->negate (),
55
- [false , true , true , true , false ],
69
+ [false , true , true , true , false , false ],
56
70
],
57
71
[
58
72
TypeSpecifierContext::createTruthy ()->negate (),
59
- [false , false , true , true , false ],
73
+ [false , false , true , true , false , false ],
60
74
],
61
75
[
62
76
TypeSpecifierContext::createFalse ()->negate (),
63
- [true , true , false , true , false ],
77
+ [true , true , false , true , false , false ],
64
78
],
65
79
[
66
80
TypeSpecifierContext::createFalsey ()->negate (),
67
- [true , true , false , false , false ],
81
+ [true , true , false , false , false , false ],
82
+ ],
83
+ /*
84
+ // XXX should a comparison context be negatable?
85
+ [
86
+ $this->createComparisonContext()->negate(),
87
+ [false, false, false, false, false, true],
68
88
],
89
+ */
69
90
];
70
91
}
71
92
@@ -80,6 +101,12 @@ public function testNegate(TypeSpecifierContext $context, array $results): void
80
101
$ this ->assertSame ($ results [2 ], $ context ->false ());
81
102
$ this ->assertSame ($ results [3 ], $ context ->falsey ());
82
103
$ this ->assertSame ($ results [4 ], $ context ->null ());
104
+
105
+ if ($ results [5 ]) {
106
+ $ this ->assertNotNull ($ context ->comparison ());
107
+ } else {
108
+ $ this ->assertNull ($ context ->comparison ());
109
+ }
83
110
}
84
111
85
112
public function testNegateNull (): void
@@ -88,4 +115,17 @@ public function testNegateNull(): void
88
115
TypeSpecifierContext::createNull ()->negate ();
89
116
}
90
117
118
+ private function createComparisonContext (): TypeSpecifierContext
119
+ {
120
+ return TypeSpecifierContext::createComparison (
121
+ new TypeSpecifierComparisonContext (
122
+ new Equal (new String_ ('dummy ' ), new String_ ('dummy2 ' )),
123
+ new FuncCall ('dummyFunc ' ),
124
+ new NullType (),
125
+ TypeSpecifierContext::createNull (),
126
+ null ,
127
+ ),
128
+ );
129
+ }
130
+
91
131
}
0 commit comments