|
5 | 5 | use PhpParser\Node\Expr\ConstFetch;
|
6 | 6 | use PhpParser\Node\Name\FullyQualified;
|
7 | 7 | use PHPStan\Testing\PHPStanTestCase;
|
| 8 | +use PHPStan\TrinaryLogic; |
8 | 9 | use PHPStan\Type\Constant\ConstantArrayType;
|
9 | 10 | use PHPStan\Type\Constant\ConstantBooleanType;
|
10 | 11 | use PHPStan\Type\Constant\ConstantIntegerType;
|
11 | 12 | use PHPStan\Type\Constant\ConstantStringType;
|
12 | 13 | use PHPStan\Type\IntegerRangeType;
|
13 | 14 | use PHPStan\Type\ObjectType;
|
| 15 | +use PHPStan\Type\StringType; |
14 | 16 | use PHPStan\Type\Type;
|
15 | 17 | use PHPStan\Type\UnionType;
|
16 | 18 | use PHPStan\Type\VerbosityLevel;
|
17 | 19 |
|
| 20 | +/** |
| 21 | + * @covers \PHPStan\Analyser\MutatingScope |
| 22 | + */ |
18 | 23 | class ScopeTest extends PHPStanTestCase
|
19 | 24 | {
|
20 | 25 |
|
@@ -248,4 +253,26 @@ public function testGetConstantType(): void
|
248 | 253 | $this->assertSame('int<1, max>', $type->describe(VerbosityLevel::precise()));
|
249 | 254 | }
|
250 | 255 |
|
| 256 | + public function testDefinedVariables(): void |
| 257 | + { |
| 258 | + /** @var ScopeFactory $scopeFactory */ |
| 259 | + $scopeFactory = self::getContainer()->getByType(ScopeFactory::class); |
| 260 | + $scope = $scopeFactory->create(ScopeContext::create('file.php')) |
| 261 | + ->assignVariable('a', new ConstantStringType('a'), new StringType(), TrinaryLogic::createYes()) |
| 262 | + ->assignVariable('b', new ConstantStringType('b'), new StringType(), TrinaryLogic::createMaybe()); |
| 263 | + |
| 264 | + $this->assertSame(['a'], $scope->getDefinedVariables()); |
| 265 | + } |
| 266 | + |
| 267 | + public function testMaybeDefinedVariables(): void |
| 268 | + { |
| 269 | + /** @var ScopeFactory $scopeFactory */ |
| 270 | + $scopeFactory = self::getContainer()->getByType(ScopeFactory::class); |
| 271 | + $scope = $scopeFactory->create(ScopeContext::create('file.php')) |
| 272 | + ->assignVariable('a', new ConstantStringType('a'), new StringType(), TrinaryLogic::createYes()) |
| 273 | + ->assignVariable('b', new ConstantStringType('b'), new StringType(), TrinaryLogic::createMaybe()); |
| 274 | + |
| 275 | + $this->assertSame(['b'], $scope->getMaybeDefinedVariables()); |
| 276 | + } |
| 277 | + |
251 | 278 | }
|
0 commit comments