file_provider = new Provider\FakeFileProvider(); $this->project_checker = new \Psalm\Checker\ProjectChecker( new TestConfig(), $this->file_provider, new Provider\FakeParserCacheProvider() ); $this->project_checker->getCodebase()->collect_references = true; } /** * @dataProvider providerFileCheckerValidCodeParse * * @param string $code * @param array $assertions * @param array $error_levels * * @return void */ public function testValidCode($code) { $test_name = $this->getName(); if (strpos($test_name, 'PHP7-') !== false) { if (version_compare(PHP_VERSION, '7.0.0dev', '<')) { $this->markTestSkipped('Test case requires PHP 7.'); return; } } elseif (strpos($test_name, 'SKIPPED-') !== false) { $this->markTestSkipped('Skipped due to a bug.'); } $file_path = self::$src_dir_path . 'somefile.php'; $this->addFile( $file_path, $code ); $this->analyzeFile($file_path, new Context()); $this->project_checker->getCodebase()->checkClassReferences(); } /** * @dataProvider providerFileCheckerInvalidCodeParse * * @param string $code * @param string $error_message * * @return void */ public function testInvalidCode($code, $error_message) { if (strpos($this->getName(), 'SKIPPED-') !== false) { $this->markTestSkipped(); } $this->expectException('\Psalm\Exception\CodeException'); $this->expectExceptionMessageRegexp('/\b' . preg_quote($error_message, '/') . '\b/'); $file_path = self::$src_dir_path . 'somefile.php'; $this->addFile( $file_path, $code ); $this->analyzeFile($file_path, new Context()); $this->project_checker->getCodebase()->checkClassReferences(); } /** * @return array */ public function providerFileCheckerValidCodeParse() { return [ 'unset' => [ ' [ ' [ ' [ ' [ 'modify($name, $args[0]); } } private function modify(string $name, string $value): void { call_user_func(array($this, "modify_" . $name), $value); } public function modifyFoo(string $value): void { $this->value = $value; } public function getFoo() : string { return $this->value; } } $m = new A(); $m->foo("value"); $m->modifyFoo("value2"); echo $m->getFoo();', ], 'usedTraitMethod' => [ 'foo(); (new B)->foo();', ], 'usedInterfaceMethod' => [ 'foo();', ], 'dummyByRefVar' => [ ' [ ' 'UnusedVariable', ], 'ifInFunction' => [ ' 'UnusedVariable', ], 'unusuedVariableInBranchOfIf' => [ ' 'UnusedVariable', ], 'unusedClass' => [ ' 'UnusedClass', ], 'publicUnusedMethod' => [ ' 'PossiblyUnusedMethod', ], 'possiblyUnusedParam' => [ 'foo(4);', 'error_message' => 'PossiblyUnusedParam', ], 'unusedParam' => [ ' 'UnusedParam', ], 'possiblyUnusedProperty' => [ ' 'PossiblyUnusedProperty', ], 'unusedProperty' => [ ' 'UnusedProperty', ], 'privateUnusedMethod' => [ ' 'UnusedMethod', ], 'unevaluatedCode' => [ ' 'UnevaluatedCode', ], ]; } }