1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-27 04:45:20 +01:00
psalm/tests/Traits/ValidCodeAnalysisTestTrait.php

99 lines
2.8 KiB
PHP
Raw Normal View History

<?php
namespace Psalm\Tests\Traits;
2019-07-05 22:24:00 +02:00
use function is_int;
use const PHP_VERSION;
use Psalm\Config;
use Psalm\Context;
use function strlen;
2019-07-05 22:24:00 +02:00
use function strpos;
use function substr;
2019-07-05 22:24:00 +02:00
use function version_compare;
2018-11-06 03:57:36 +01:00
trait ValidCodeAnalysisTestTrait
{
/**
2019-03-01 21:55:20 +01:00
* @return iterable<string,array{string,assertions?:array<string,string>,error_levels?:string[]}>
*/
2018-11-06 03:57:36 +01:00
abstract public function providerValidCodeParse();
/**
2018-11-06 03:57:36 +01:00
* @dataProvider providerValidCodeParse
2017-05-27 02:16:18 +02:00
*
* @param string $code
2017-06-29 16:25:41 +02:00
* @param array<string, string> $assertions
* @param array<string|int, string> $error_levels
2017-05-27 02:16:18 +02:00
*
* @small
*
* @return void
*/
public function testValidCode(
$code,
$assertions = [],
$error_levels = [],
string $php_version = '7.3'
) {
$test_name = $this->getTestName();
2019-04-03 23:08:37 +02:00
if (strpos($test_name, 'PHP73-') !== false) {
if (version_compare(PHP_VERSION, '7.3.0', '<')) {
$this->markTestSkipped('Test case requires PHP 7.3.');
return;
}
} elseif (strpos($test_name, 'PHP71-') !== false) {
2018-05-20 19:20:15 +02:00
if (version_compare(PHP_VERSION, '7.1.0', '<')) {
$this->markTestSkipped('Test case requires PHP 7.1.');
return;
}
} elseif (strpos($test_name, 'SKIPPED-') !== false) {
$this->markTestSkipped('Skipped due to a bug.');
}
foreach ($error_levels as $error_level_key => $error_level) {
if (is_int($error_level_key)) {
$issue_name = $error_level;
$error_level = Config::REPORT_SUPPRESS;
} else {
$issue_name = $error_level_key;
}
Config::getInstance()->setCustomErrorLevel($issue_name, $error_level);
}
if (\strtoupper(substr(\PHP_OS, 0, 3)) === 'WIN') {
2020-03-10 18:03:51 +01:00
$code = \str_replace("\n", "\r\n", $code);
}
$context = new Context();
$this->project_analyzer->setPhpVersion($php_version);
$file_path = self::$src_dir_path . 'somefile.php';
$this->addFile($file_path, $code);
$this->analyzeFile($file_path, $context);
$actual_vars = [];
foreach ($assertions as $var => $_) {
$exact = false;
if ($var && strpos($var, '===') === strlen($var) - 3) {
$var = substr($var, 0, -3);
$exact = true;
}
if (isset($context->vars_in_scope[$var])) {
if ($exact) {
$actual_vars[$var . '==='] = $context->vars_in_scope[$var]->getId();
} else {
$actual_vars[$var] = (string)$context->vars_in_scope[$var];
}
}
}
$this->assertSame($assertions, $actual_vars);
}
}