1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-30 04:39:00 +01:00
psalm/tests/Traits/FileCheckerValidCodeParseTestTrait.php

64 lines
1.8 KiB
PHP

<?php
namespace Psalm\Tests\Traits;
use Psalm\Checker\FileChecker;
use Psalm\Config;
use Psalm\Context;
use Psalm\Type\Union;
trait FileCheckerValidCodeParseTestTrait
{
/**
* @return array
*/
abstract public function providerFileCheckerValidCodeParse();
/**
* @dataProvider providerFileCheckerValidCodeParse
*
* @param string $code
* @param array<string, string> $assertions
* @param array<string> $error_levels
* @param array<string, Union> $scope_vars
*
* @return void
*/
public function testValidCode($code, $assertions = [], $error_levels = [], $scope_vars = [])
{
$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.');
}
foreach ($error_levels as $error_level) {
Config::getInstance()->setCustomErrorLevel($error_level, Config::REPORT_SUPPRESS);
}
$context = new Context();
foreach ($scope_vars as $var => $value) {
$context->vars_in_scope[$var] = $value;
}
$this->addFile(
self::$src_dir_path . 'somefile.php',
$code
);
$file_checker = new FileChecker(self::$src_dir_path . 'somefile.php', $this->project_checker);
$file_checker->visitAndAnalyzeMethods($context);
$actual_vars = [];
foreach ($assertions as $var => $_) {
$actual_vars[$var] = (string)$context->vars_in_scope[$var];
}
$this->assertSame($assertions, $actual_vars);
}
}