create(ParserFactory::PREFER_PHP7); $config = \Psalm\Config::getInstance(); $config->throw_exception = true; $config->use_docblock_types = true; } public function setUp() { \Psalm\Checker\FileChecker::clearCache(); } public function testImplicitIntArrayCreation() { $stmts = self::$_parser->parse('check(true, true, $context); $this->assertEquals('array', (string) $context->vars_in_scope['foo']); } public function testImplicit2DIntArrayCreation() { $stmts = self::$_parser->parse('check(true, true, $context); $this->assertEquals('array>', (string) $context->vars_in_scope['foo']); } public function testImplicit3DIntArrayCreation() { $stmts = self::$_parser->parse('check(true, true, $context); $this->assertEquals('array>>', (string) $context->vars_in_scope['foo']); } public function testImplicit4DIntArrayCreation() { $stmts = self::$_parser->parse('check(true, true, $context); $this->assertEquals('array>>>', (string) $context->vars_in_scope['foo']); } public function testImplicitIndexedIntArrayCreation() { $stmts = self::$_parser->parse(' $text) { $bat[$text] = $bar[$i]; } '); $file_checker = new \Psalm\Checker\FileChecker('somefile.php', $stmts); $context = new Context('somefile.php'); $file_checker->check(true, true, $context); $this->assertEquals('array', (string) $context->vars_in_scope['foo']); $this->assertEquals('array', (string) $context->vars_in_scope['bar']); $this->assertEquals('array', (string) $context->vars_in_scope['bat']); } public function testImplicitStringArrayCreation() { $stmts = self::$_parser->parse('check(true, true, $context); $this->assertEquals('array', (string) $context->vars_in_scope['foo']); } public function testImplicit2DStringArrayCreation() { $stmts = self::$_parser->parse('check(true, true, $context); $this->assertEquals('array>', (string) $context->vars_in_scope['foo']); } public function testImplicit3DStringArrayCreation() { $stmts = self::$_parser->parse('check(true, true, $context); $this->assertEquals('array>>', (string) $context->vars_in_scope['foo']); } public function testImplicit4DStringArrayCreation() { $stmts = self::$_parser->parse('check(true, true, $context); $this->assertEquals('array>>>', (string) $context->vars_in_scope['foo']); } public function test2Step2DIntArrayCreation() { $stmts = self::$_parser->parse(' []]; $foo["bar"]["baz"] = "hello"; '); $file_checker = new \Psalm\Checker\FileChecker('somefile.php', $stmts); $context = new Context('somefile.php'); $file_checker->check(true, true, $context); $this->assertEquals('array>', (string) $context->vars_in_scope['foo']); } public function test2StepImplicit3DIntArrayCreation() { $stmts = self::$_parser->parse(' []]; $foo["bar"]["baz"]["bat"] = "hello"; '); $file_checker = new \Psalm\Checker\FileChecker('somefile.php', $stmts); $context = new Context('somefile.php'); $file_checker->check(true, true, $context); $this->assertEquals('array>>', (string) $context->vars_in_scope['foo']); } public function testConflictingTypes() { $stmts = self::$_parser->parse(' ["a" => "b"], "baz" => [1] ]; '); $file_checker = new \Psalm\Checker\FileChecker('somefile.php', $stmts); $context = new Context('somefile.php'); $file_checker->check(true, true, $context); $this->assertEquals('array>', (string) $context->vars_in_scope['foo']); } public function testConflictingTypesWithAssignment() { $stmts = self::$_parser->parse(' ["a" => "b"], "baz" => [1] ]; $foo["bar"]["bam"]["baz"] = "hello"; '); $file_checker = new \Psalm\Checker\FileChecker('somefile.php', $stmts); $context = new Context('somefile.php'); $file_checker->check(true, true, $context); $this->assertEquals('array>', (string) $context->vars_in_scope['foo']); } public function testConflictingTypesWithAssignment2() { $stmts = self::$_parser->parse('check(true, true, $context); $this->assertEquals('array', (string) $context->vars_in_scope['foo']); } public function testConflictingTypesWithAssignment3() { $stmts = self::$_parser->parse('check(true, true, $context); $this->assertEquals('array', (string) $context->vars_in_scope['foo']); } }