mirror of
https://github.com/danog/psalm.git
synced 2024-11-27 04:45:20 +01:00
42b71f5eae
It provides similar functionality, but is a bit more alive and does not prevent installation with PHP 8.2
191 lines
5.3 KiB
PHP
191 lines
5.3 KiB
PHP
<?php
|
|
|
|
namespace Psalm\Tests\Config;
|
|
|
|
use InvalidArgumentException;
|
|
use Mockery;
|
|
use Mockery\Adapter\Phpunit\MockeryPHPUnitIntegration;
|
|
use Mockery\MockInterface;
|
|
use Psalm\Config;
|
|
use Psalm\Internal\PluginManager\ComposerLock;
|
|
use Psalm\Internal\PluginManager\ConfigFile;
|
|
use Psalm\Internal\PluginManager\PluginList;
|
|
use Psalm\Internal\RuntimeCaches;
|
|
use Psalm\Tests\TestCase;
|
|
|
|
/** @group PluginManager */
|
|
class PluginListTest extends TestCase
|
|
{
|
|
use MockeryPHPUnitIntegration;
|
|
|
|
/** @var ConfigFile&MockInterface */
|
|
private $config_file;
|
|
|
|
/** @var Config&MockInterface */
|
|
private $config;
|
|
|
|
/** @var ComposerLock&MockInterface */
|
|
private $composer_lock;
|
|
|
|
public function setUp(): void
|
|
{
|
|
RuntimeCaches::clearAll();
|
|
|
|
$this->config = Mockery::mock(Config::class);
|
|
$this->config->allows()->getPluginClasses()->andReturns([])->byDefault();
|
|
|
|
$this->config_file = Mockery::mock(ConfigFile::class);
|
|
$this->config_file->allows()->getConfig()->andReturns($this->config)->byDefault();
|
|
|
|
$this->composer_lock = Mockery::mock(ComposerLock::class);
|
|
$this->composer_lock->allows()->getPlugins()->andReturns([])->byDefault();
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function pluginsPresentInConfigAreEnabled(): void
|
|
{
|
|
$this->config->expects()->getPluginClasses()->andReturns([
|
|
['class' => 'a\b\c', 'config' => null],
|
|
['class' => 'c\d\e', 'config' => null],
|
|
]);
|
|
|
|
$plugin_list = new PluginList($this->config_file, $this->composer_lock);
|
|
|
|
$this->assertSame([
|
|
'a\b\c' => null,
|
|
'c\d\e' => null,
|
|
], $plugin_list->getEnabled());
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function pluginsPresentInPackageLockOnlyAreAvailable(): void
|
|
{
|
|
$this->config->expects()->getPluginClasses()->andReturns([
|
|
['class' => 'a\b\c', 'config' => null],
|
|
]);
|
|
|
|
$this->composer_lock->expects()->getPlugins()->andReturns([
|
|
'vendor/package' => 'a\b\c',
|
|
'another-vendor/another-package' => 'c\d\e',
|
|
]);
|
|
|
|
$plugin_list = new PluginList($this->config_file, $this->composer_lock);
|
|
|
|
$this->assertSame([
|
|
'c\d\e' => 'another-vendor/another-package',
|
|
], $plugin_list->getAvailable());
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function pluginsPresentInPackageLockAndConfigHavePluginPackageName(): void
|
|
{
|
|
$this->config->expects()->getPluginClasses()->andReturns([
|
|
['class' => 'a\b\c', 'config' => null],
|
|
]);
|
|
|
|
$this->composer_lock->expects()->getPlugins()->andReturns([
|
|
'vendor/package' => 'a\b\c',
|
|
]);
|
|
|
|
$plugin_list = new PluginList($this->config_file, $this->composer_lock);
|
|
|
|
$this->assertSame([
|
|
'a\b\c' => 'vendor/package',
|
|
], $plugin_list->getEnabled());
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function canFindPluginClassByClassName(): void
|
|
{
|
|
$plugin_list = new PluginList($this->config_file, $this->composer_lock);
|
|
$this->assertSame('a\b\c', $plugin_list->resolvePluginClass('a\b\c'));
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function canFindPluginClassByPackageName(): void
|
|
{
|
|
$this->composer_lock->expects()->getPlugins()->andReturns([
|
|
'vendor/package' => 'a\b\c',
|
|
]);
|
|
|
|
$plugin_list = new PluginList($this->config_file, $this->composer_lock);
|
|
$this->assertSame('a\b\c', $plugin_list->resolvePluginClass('vendor/package'));
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function canShowAvailablePluginsWithoutAConfigFile(): void
|
|
{
|
|
$this->composer_lock->expects()->getPlugins()->andReturns([
|
|
'vendor/package' => 'a\b\c',
|
|
'another-vendor/another-package' => 'c\d\e',
|
|
]);
|
|
$plugin_list = new PluginList(null, $this->composer_lock);
|
|
|
|
$this->assertSame([
|
|
'a\b\c' => 'vendor/package',
|
|
'c\d\e' => 'another-vendor/another-package',
|
|
], $plugin_list->getAvailable());
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function enabledPackageIsEnabled(): void
|
|
{
|
|
$this->config->expects()->getPluginClasses()->andReturns([
|
|
['class' => 'a\b\c', 'config' => null],
|
|
]);
|
|
|
|
$plugin_list = new PluginList($this->config_file, $this->composer_lock);
|
|
|
|
$this->assertTrue($plugin_list->isEnabled('a\b\c'));
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function errorsOutWhenTryingToResolveUnknownPlugin(): void
|
|
{
|
|
$plugin_list = new PluginList($this->config_file, $this->composer_lock);
|
|
$this->expectException(InvalidArgumentException::class);
|
|
$this->expectExceptionMessageMatches('/unknown plugin/i');
|
|
$plugin_list->resolvePluginClass('vendor/package');
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function pluginsAreEnabledInConfigFile(): void
|
|
{
|
|
$plugin_list = new PluginList($this->config_file, $this->composer_lock);
|
|
|
|
$this->config_file->expects()->addPlugin('a\b\c');
|
|
|
|
$plugin_list->enable('a\b\c');
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function pluginsAreDisabledInConfigFile(): void
|
|
{
|
|
$plugin_list = new PluginList($this->config_file, $this->composer_lock);
|
|
|
|
$this->config_file->expects()->removePlugin('a\b\c');
|
|
|
|
$plugin_list->disable('a\b\c');
|
|
}
|
|
}
|