1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-27 12:55:26 +01:00
psalm/tests/TestConfig.php

74 lines
1.8 KiB
PHP
Raw Normal View History

2016-12-14 18:28:38 +01:00
<?php
2016-12-14 18:28:38 +01:00
namespace Psalm\Tests;
2019-07-05 22:24:00 +02:00
use Psalm\Config;
2021-12-04 21:55:53 +01:00
use Psalm\Config\ProjectFileFilter;
use Psalm\Internal\IncludeCollector;
2021-12-03 21:40:18 +01:00
use SimpleXMLElement;
2016-12-14 18:28:38 +01:00
2021-06-08 04:55:21 +02:00
use function getcwd;
use const DIRECTORY_SEPARATOR;
2016-12-14 18:28:38 +01:00
class TestConfig extends Config
{
2021-12-04 21:55:53 +01:00
/** @var ProjectFileFilter|null */
2019-04-29 20:05:43 +02:00
private static $cached_project_files = null;
2016-12-14 18:28:38 +01:00
public function __construct()
{
parent::__construct();
2016-12-19 01:00:32 +01:00
foreach ($this->php_extensions as $ext => $_enabled) {
$this->php_extensions[$ext] = true;
}
2016-12-19 01:00:32 +01:00
$this->throw_exception = true;
$this->use_docblock_types = true;
2020-02-17 22:33:28 +01:00
$this->level = 1;
2016-12-20 18:29:52 +01:00
$this->cache_directory = null;
2017-07-25 23:04:58 +02:00
$this->base_dir = getcwd() . DIRECTORY_SEPARATOR;
2019-04-29 20:05:43 +02:00
if (!self::$cached_project_files) {
2021-12-04 21:55:53 +01:00
self::$cached_project_files = ProjectFileFilter::loadFromXMLElement(
2021-12-03 21:40:18 +01:00
new SimpleXMLElement($this->getContents()),
2019-04-29 20:05:43 +02:00
$this->base_dir,
true
);
}
$this->project_files = self::$cached_project_files;
$this->setIncludeCollector(new IncludeCollector());
2017-07-25 23:04:58 +02:00
$this->collectPredefinedConstants();
$this->collectPredefinedFunctions();
2016-12-14 18:28:38 +01:00
}
2018-03-03 21:25:35 +01:00
protected function getContents(): string
{
return '<?xml version="1.0"?>
<projectFiles>
<directory name="src" />
<file name="tests/somefile.php" />
<ignoreFiles>
<directory name="src/Psalm/Internal/Stubs" />
</ignoreFiles>
</projectFiles>';
}
/**
* @return false
*/
public function getComposerFilePathForClassLike(string $fq_classlike_name): bool
2018-03-03 21:25:35 +01:00
{
return false;
}
2019-05-17 17:22:34 +02:00
public function getProjectDirectories(): array
2019-05-17 17:22:34 +02:00
{
return [];
}
2016-12-14 18:28:38 +01:00
}