2017-11-02 01:45:43 +00:00
|
|
|
<?php
|
|
|
|
|
2021-01-23 20:09:16 +00:00
|
|
|
namespace Pterodactyl\Tests\Assertions;
|
2017-11-02 01:45:43 +00:00
|
|
|
|
|
|
|
use PHPUnit\Framework\Assert;
|
|
|
|
|
|
|
|
trait MiddlewareAttributeAssertionsTrait
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Assert a request has an attribute assigned to it.
|
|
|
|
*/
|
2022-10-14 16:59:20 +00:00
|
|
|
public function assertRequestHasAttribute(string $attribute): void
|
2017-11-02 01:45:43 +00:00
|
|
|
{
|
|
|
|
Assert::assertTrue($this->request->attributes->has($attribute), 'Assert that request mock has ' . $attribute . ' attribute.');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Assert a request does not have an attribute assigned to it.
|
|
|
|
*/
|
2022-10-14 16:59:20 +00:00
|
|
|
public function assertRequestMissingAttribute(string $attribute): void
|
2017-11-02 01:45:43 +00:00
|
|
|
{
|
|
|
|
Assert::assertFalse($this->request->attributes->has($attribute), 'Assert that request mock does not have ' . $attribute . ' attribute.');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Assert a request attribute matches an expected value.
|
|
|
|
*/
|
2022-10-14 16:59:20 +00:00
|
|
|
public function assertRequestAttributeEquals(mixed $expected, string $attribute): void
|
2017-11-02 01:45:43 +00:00
|
|
|
{
|
|
|
|
Assert::assertEquals($expected, $this->request->attributes->get($attribute));
|
|
|
|
}
|
|
|
|
}
|