123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144 |
- <?php
- /*
- * This file is part of PHP CS Fixer.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- * Dariusz Rumiński <dariusz.ruminski@gmail.com>
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
- namespace PhpCsFixer\Tests\FixerDefinition;
- use PhpCsFixer\FixerDefinition\VersionSpecification;
- use PhpCsFixer\Tests\TestCase;
- /**
- * @author Andreas Möller <am@localheinz.com>
- *
- * @internal
- *
- * @covers \PhpCsFixer\FixerDefinition\VersionSpecification
- */
- final class VersionSpecificationTest extends TestCase
- {
- public function testConstructorRequiresEitherMinimumOrMaximum()
- {
- $this->expectException(\InvalidArgumentException::class);
- new VersionSpecification();
- }
- /**
- * @dataProvider provideInvalidVersionCases
- *
- * @param mixed $minimum
- */
- public function testConstructorRejectsInvalidMinimum($minimum)
- {
- $this->expectException(\InvalidArgumentException::class);
- new VersionSpecification($minimum);
- }
- /**
- * @dataProvider provideInvalidVersionCases
- *
- * @param mixed $maximum
- */
- public function testConstructorRejectsInvalidMaximum($maximum)
- {
- $this->expectException(\InvalidArgumentException::class);
- new VersionSpecification(
- PHP_VERSION_ID,
- $maximum
- );
- }
- /**
- * @return array
- */
- public function provideInvalidVersionCases()
- {
- return [
- 'negative' => [-1],
- 'zero' => [0],
- 'float' => [3.14],
- 'string' => ['foo'],
- 'integerish' => ['9000'],
- 'array' => [[]],
- 'object' => [new \stdClass()],
- ];
- }
- public function testConstructorRejectsMaximumLessThanMinimum()
- {
- $this->expectException(\InvalidArgumentException::class);
- new VersionSpecification(
- PHP_VERSION_ID,
- PHP_VERSION_ID - 1
- );
- }
- /**
- * @dataProvider provideIsSatisfiedByReturnsTrueCases
- *
- * @param null|int $minimum
- * @param null|int $maximum
- * @param int $actual
- */
- public function testIsSatisfiedByReturnsTrue($minimum, $maximum, $actual)
- {
- $versionSpecification = new VersionSpecification(
- $minimum,
- $maximum
- );
- $this->assertTrue($versionSpecification->isSatisfiedBy($actual));
- }
- /**
- * @return array
- */
- public function provideIsSatisfiedByReturnsTrueCases()
- {
- return [
- 'version-same-as-maximum' => [null, PHP_VERSION_ID, PHP_VERSION_ID],
- 'version-same-as-minimum' => [PHP_VERSION_ID, null, PHP_VERSION_ID],
- 'version-between-minimum-and-maximum' => [PHP_VERSION_ID - 1, PHP_VERSION_ID + 1, PHP_VERSION_ID],
- 'version-same-as-minimum-and-maximum' => [PHP_VERSION_ID, PHP_VERSION_ID, PHP_VERSION_ID],
- ];
- }
- /**
- * @dataProvider provideIsSatisfiedByReturnsFalseCases
- *
- * @param null|int $minimum
- * @param null|int $maximum
- * @param int $actual
- */
- public function testIsSatisfiedByReturnsFalse($minimum, $maximum, $actual)
- {
- $versionSpecification = new VersionSpecification(
- $minimum,
- $maximum
- );
- $this->assertFalse($versionSpecification->isSatisfiedBy($actual));
- }
- /**
- * @return array
- */
- public function provideIsSatisfiedByReturnsFalseCases()
- {
- return [
- 'version-greater-than-maximum' => [null, PHP_VERSION_ID, PHP_VERSION_ID + 1],
- 'version-less-than-minimum' => [PHP_VERSION_ID, null, PHP_VERSION_ID - 1],
- ];
- }
- }
|