mirror of
https://github.com/danog/psalm-plugin-phpunit.git
synced 2024-12-02 09:27:56 +01:00
50 lines
1.6 KiB
PHP
50 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace Psalm\PhpUnitPlugin\Tests\Helper;
|
|
|
|
use Codeception\Exception\Skip;
|
|
use Codeception\Exception\TestRuntimeException;
|
|
use Composer\Semver\Comparator;
|
|
use Composer\Semver\VersionParser;
|
|
use PackageVersions\Versions;
|
|
|
|
// here you can define custom actions
|
|
// all public methods declared in helper class will be available in $I
|
|
|
|
class Acceptance extends \Codeception\Module
|
|
{
|
|
/** @var array<string,string> */
|
|
public const VERSION_OPERATORS = [
|
|
'newer than' => '>',
|
|
'older than' => '<',
|
|
];
|
|
|
|
/**
|
|
* @Given /I have PHPUnit (newer than|older than) "([0-9.]+)" \(because of "([^"]+)"\)/
|
|
*
|
|
* @return void
|
|
*/
|
|
public function havePHPUnitOfACertainVersionRangeBecauseOf(string $operator, string $version, string $reason)
|
|
{
|
|
if (!isset(self::VERSION_OPERATORS[$operator])) {
|
|
throw new TestRuntimeException("Unknown operator: $operator");
|
|
}
|
|
|
|
$op = (string) self::VERSION_OPERATORS[$operator];
|
|
|
|
$currentVersion = (string) explode('@', Versions::getVersion('phpunit/phpunit'))[0];
|
|
$this->debug(sprintf("Current version: %s", $currentVersion));
|
|
|
|
$parser = new VersionParser();
|
|
|
|
$currentVersion = $parser->normalize($currentVersion);
|
|
$version = $parser->normalize($version);
|
|
|
|
$result = Comparator::compare($currentVersion, $op, $version);
|
|
$this->debug("Comparing $currentVersion $op $version => $result");
|
|
if (!$result) {
|
|
throw new Skip("This scenario requires PHPUnit $op $version because of $reason");
|
|
}
|
|
}
|
|
}
|