1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
<?php
declare(strict_types=1);
namespace Lcobucci\JWT\Tests\Validation\Constraint;
use Lcobucci\JWT\Token;
use Lcobucci\JWT\Token\RegisteredClaims;
use Lcobucci\JWT\Validation\Constraint\IdentifiedBy;
use Lcobucci\JWT\Validation\ConstraintViolation;
use PHPUnit\Framework\Attributes as PHPUnit;
#[PHPUnit\CoversClass(ConstraintViolation::class)]
#[PHPUnit\CoversClass(IdentifiedBy::class)]
#[PHPUnit\UsesClass(Token\DataSet::class)]
#[PHPUnit\UsesClass(Token\Plain::class)]
#[PHPUnit\UsesClass(Token\Signature::class)]
final class IdentifiedByTest extends ConstraintTestCase
{
#[PHPUnit\Test]
public function assertShouldRaiseExceptionWhenIdIsNotSet(): void
{
$constraint = new IdentifiedBy('123456');
$this->expectException(ConstraintViolation::class);
$this->expectExceptionMessage('The token is not identified with the expected ID');
$constraint->assert($this->buildToken());
}
#[PHPUnit\Test]
public function assertShouldRaiseExceptionWhenIdDoesNotMatch(): void
{
$constraint = new IdentifiedBy('123456');
$this->expectException(ConstraintViolation::class);
$this->expectExceptionMessage('The token is not identified with the expected ID');
$constraint->assert($this->buildToken([RegisteredClaims::ID => 15]));
}
#[PHPUnit\Test]
public function assertShouldNotRaiseExceptionWhenIdMatches(): void
{
$token = $this->buildToken([RegisteredClaims::ID => '123456']);
$constraint = new IdentifiedBy('123456');
$constraint->assert($token);
$this->addToAssertionCount(1);
}
}
|