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

137 lines
4.2 KiB
PHP
Raw Normal View History

<?php
namespace Psalm\Tests\Internal;
use PHPUnit\Framework\TestCase;
use Psalm\Internal\CliUtils;
use function realpath;
use const DIRECTORY_SEPARATOR;
class CliUtilsTest extends TestCase
{
2021-12-24 10:59:39 +01:00
/**
2022-09-15 19:49:36 +02:00
* @var list<string>
2021-12-24 10:59:39 +01:00
*/
2023-02-02 17:19:22 +01:00
private array $argv = [];
protected function setUp(): void
{
global $argv;
2022-09-15 19:49:36 +02:00
$this->argv = $argv;
}
protected function tearDown(): void
{
global $argv;
$argv = $this->argv;
}
/** @return iterable<string,array{list<string>,list<string>}> */
public function provideGetArguments(): iterable
{
$psalter = __DIR__ . '/../../psalter';
yield 'standardCallWithPsalter' => [
['--plugin=vendor/vimeo/psalm/examples/plugins/ClassUnqualifier.php', '--dry-run'],
[$psalter, '--plugin=vendor/vimeo/psalm/examples/plugins/ClassUnqualifier.php', '--dry-run'],
];
yield 'specialCaseWithBinary' => [
['--plugin=vendor/vimeo/psalm/examples/plugins/ClassUnqualifier.php', '--dry-run'],
['/bin/true', '--plugin=vendor/vimeo/psalm/examples/plugins/ClassUnqualifier.php', '--dry-run'],
];
yield 'specialCaseWhichWouldFail' => [
['--plugin=vendor/vimeo/psalm/examples/plugins/ClassUnqualifier.php', '--dry-run'],
['/directory-does-not-exist/file-does-not-exist', '--plugin=vendor/vimeo/psalm/examples/plugins/ClassUnqualifier.php', '--dry-run'],
];
}
/**
* @dataProvider provideGetArguments
* @param list<string> $expected
2021-12-24 10:59:39 +01:00
* @param list<string> $_input
*/
2021-12-24 10:59:39 +01:00
public function testGetArgumentsWillReturnExpectedValue(array $expected, array $_input): void
{
global $argv;
2021-12-24 10:59:39 +01:00
$argv = $_input;
$result = CliUtils::getArguments();
self::assertEquals($expected, $result);
}
/** @return iterable<string,list{0: list<string>|null, 1: list<string>, 2?: list<string>}> */
public function provideGetPathsToCheck(): iterable
{
$psalm = __DIR__ . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . '..' . DIRECTORY_SEPARATOR . 'psalm';
$dummyProjectDir = (string)realpath(
__DIR__
. DIRECTORY_SEPARATOR . '..'
2023-02-02 17:19:22 +01:00
. DIRECTORY_SEPARATOR . 'fixtures'
2022-12-18 17:15:15 +01:00
. DIRECTORY_SEPARATOR . 'DummyProject',
);
2021-12-24 10:59:39 +01:00
$currentDir = (string)realpath('.');
yield 'withoutPaths' => [
null,
[$psalm, '--plugin=vendor/vimeo/psalm/examples/plugins/ClassUnqualifier.php', '--dry-run'],
];
yield 'withoutPathsAndArguments' => [
null,
[$psalm],
];
yield 'withPaths' => [
[
$dummyProjectDir . DIRECTORY_SEPARATOR . 'Bar.php',
$dummyProjectDir . DIRECTORY_SEPARATOR . 'Bat.php',
],
[
$psalm,
$dummyProjectDir . DIRECTORY_SEPARATOR . 'Bar.php',
$dummyProjectDir . DIRECTORY_SEPARATOR . 'Bat.php',
],
];
yield 'withPathsAndArgumentsMixed' => [
[
$dummyProjectDir . DIRECTORY_SEPARATOR . 'Bar.php',
$dummyProjectDir . DIRECTORY_SEPARATOR . 'Bat.php',
],
[
$psalm,
'--plugin=vendor/vimeo/psalm/examples/plugins/ClassUnqualifier.php',
$dummyProjectDir . DIRECTORY_SEPARATOR . 'Bar.php',
$dummyProjectDir . DIRECTORY_SEPARATOR . 'Bat.php',
],
];
yield 'withFpathToCurrentDir' => [
2021-12-24 10:59:39 +01:00
[$currentDir],
[$psalm, '-f', '.'],
2022-12-18 17:15:15 +01:00
['.'],
];
yield 'withFpathToProjectDir' => [
[$dummyProjectDir],
[$psalm, '-f', $dummyProjectDir],
2022-12-18 17:15:15 +01:00
[$dummyProjectDir],
];
}
/**
* @dataProvider provideGetPathsToCheck
* @param list<string>|null $expected
2021-12-24 10:59:39 +01:00
* @param list<string> $_input
*/
2021-12-24 10:59:39 +01:00
public function testGetPathsToCheckWillReturnExpectedValue(?array $expected, array $_input, array $fpaths = []): void
{
global $argv;
2021-12-24 10:59:39 +01:00
$argv = $_input;
$result = CliUtils::getPathsToCheck($fpaths);
self::assertEquals($expected, $result);
}
}