file_provider = new \Psalm\Tests\Internal\Provider\FakeFileProvider(); $config = $this->makeConfig(); $providers = new Providers( $this->file_provider, new Provider\FakeParserCacheProvider() ); $this->project_analyzer = new ProjectAnalyzer( $config, $providers ); $this->project_analyzer->setPhpVersion('7.3'); } public function tearDown() : void { FileAnalyzer::clearCache(); } /** * @param string $file_path * @param string $contents * * @return void */ public function addFile($file_path, $contents) { $this->file_provider->registerFile($file_path, $contents); $this->project_analyzer->getCodebase()->scanner->addFileToShallowScan($file_path); } /** * @param string $file_path * @param \Psalm\Context $context * * @return void */ public function analyzeFile($file_path, \Psalm\Context $context, bool $track_unused_suppressions = true) { $codebase = $this->project_analyzer->getCodebase(); $codebase->addFilesToAnalyze([$file_path => $file_path]); $codebase->scanFiles(); $codebase->config->visitStubFiles($codebase); if ($codebase->alter_code) { $this->project_analyzer->interpretRefactors(); } $this->project_analyzer->trackUnusedSuppressions(); $file_analyzer = new FileAnalyzer( $this->project_analyzer, $file_path, $codebase->config->shortenFileName($file_path) ); $file_analyzer->analyze($context); if ($codebase->taint) { while ($codebase->taint->hasNewSinksAndSources()) { $codebase->taint->clearNewSinksAndSources(); $file_analyzer->analyze($context); } } if ($track_unused_suppressions) { \Psalm\IssueBuffer::processUnusedSuppressions($codebase->file_provider); } } /** * @param bool $withDataSet * * @return string */ protected function getTestName($withDataSet = true) { $name = parent::getName($withDataSet); /** * @psalm-suppress TypeDoesNotContainNull PHPUnit 8.2 made it non-nullable again */ if (null === $name) { throw new RuntimeException('anonymous test - shouldn\'t happen'); } return $name; } }