2024-02-02 14:53:38 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
2024-01-12 14:54:04 +00:00
|
|
|
|
|
|
|
namespace DNW\Skills\Tests;
|
|
|
|
|
|
|
|
use DNW\Skills\Guard;
|
|
|
|
use Exception;
|
2024-02-01 10:50:18 +00:00
|
|
|
use PHPUnit\Framework\TestCase;
|
2024-05-14 08:46:43 +00:00
|
|
|
use PHPUnit\Framework\Attributes\CoversClass;
|
2024-01-16 07:46:32 +00:00
|
|
|
|
2024-05-14 08:46:43 +00:00
|
|
|
#[CoversClass(Guard::class)]
|
2024-01-12 14:54:04 +00:00
|
|
|
class GuardTest extends TestCase
|
|
|
|
{
|
2024-05-15 12:41:34 +00:00
|
|
|
public function testargumentIsValidIndexArgumentAbove(): void
|
2024-01-12 14:54:04 +00:00
|
|
|
{
|
|
|
|
$this->expectException(Exception::class);
|
2024-02-01 10:50:18 +00:00
|
|
|
$this->expectExceptionMessage('dummy is an invalid index');
|
|
|
|
Guard::argumentIsValidIndex(10, 10, "dummy");
|
2024-01-12 14:54:04 +00:00
|
|
|
}
|
|
|
|
|
2024-05-15 12:41:34 +00:00
|
|
|
public function testargumentIsValidIndexArgumentBelow(): void
|
2024-02-01 10:50:18 +00:00
|
|
|
{
|
|
|
|
$this->expectException(Exception::class);
|
|
|
|
$this->expectExceptionMessage('dummy is an invalid index');
|
|
|
|
Guard::argumentIsValidIndex(-1, 10, "dummy");
|
|
|
|
}
|
2024-01-12 14:54:04 +00:00
|
|
|
|
2024-05-15 12:41:34 +00:00
|
|
|
public function testargumentIsValidIndexArgumentValid(): void
|
|
|
|
{
|
2024-07-25 11:23:59 +00:00
|
|
|
Guard::argumentIsValidIndex(0, 10, "dummy");
|
|
|
|
Guard::argumentIsValidIndex(1, 10, "dummy");
|
|
|
|
Guard::argumentIsValidIndex(9, 10, "dummy");
|
2024-05-15 12:41:34 +00:00
|
|
|
$this->expectNotToPerformAssertions();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testargumentInRangeInclusiveAbove(): void
|
2024-01-12 14:54:04 +00:00
|
|
|
{
|
|
|
|
$this->expectException(Exception::class);
|
2024-02-01 10:50:18 +00:00
|
|
|
$this->expectExceptionMessage('dummy is not in the valid range [0, 100]');
|
2024-01-12 14:54:04 +00:00
|
|
|
Guard::argumentInRangeInclusive(101, 0, 100, "dummy");
|
|
|
|
}
|
2024-05-15 12:41:34 +00:00
|
|
|
|
|
|
|
public function testargumentInRangeInclusiveBelow(): void
|
|
|
|
{
|
|
|
|
$this->expectException(Exception::class);
|
|
|
|
$this->expectExceptionMessage('dummy is not in the valid range [0, 100]');
|
|
|
|
Guard::argumentInRangeInclusive(-1, 0, 100, "dummy");
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testargumentInRangeInclusiveValid(): void
|
|
|
|
{
|
2024-07-25 11:23:59 +00:00
|
|
|
Guard::argumentInRangeInclusive(0, 0, 100, "dummy");
|
|
|
|
Guard::argumentInRangeInclusive(1, 0, 100, "dummy");
|
2024-05-15 12:41:34 +00:00
|
|
|
Guard::argumentInRangeInclusive(50, 0, 100, "dummy");
|
2024-07-25 11:23:59 +00:00
|
|
|
Guard::argumentInRangeInclusive(99, 0, 100, "dummy");
|
|
|
|
Guard::argumentInRangeInclusive(100, 0, 100, "dummy");
|
|
|
|
|
2024-05-15 12:41:34 +00:00
|
|
|
$this->expectNotToPerformAssertions();
|
|
|
|
}
|
2024-01-12 14:54:04 +00:00
|
|
|
}
|