1
1
mirror of https://github.com/pterodactyl/panel.git synced 2024-11-22 17:12:30 +01:00
Pterodactyl-Panel/tests/Traits/MocksRequestException.php

32 lines
866 B
PHP
Raw Normal View History

2017-10-24 04:10:32 +02:00
<?php
namespace Pterodactyl\Tests\Traits;
2017-10-24 04:10:32 +02:00
use Mockery\Mock;
2017-10-24 04:10:32 +02:00
use Mockery\MockInterface;
use GuzzleHttp\Exception\RequestException;
trait MocksRequestException
{
private RequestException|Mock $exception;
2017-10-24 04:10:32 +02:00
private mixed $exceptionResponse;
2017-10-24 04:10:32 +02:00
/**
* Configure the exception mock to work with the Panel's default exception
* handler actions.
*/
protected function configureExceptionMock(string $abstract = RequestException::class, $response = null): void
2017-10-24 04:10:32 +02:00
{
$this->getExceptionMock($abstract)->shouldReceive('getResponse')->andReturn(value($response));
2017-10-24 04:10:32 +02:00
}
/**
* Return a mocked instance of the request exception.
*/
protected function getExceptionMock(string $abstract = RequestException::class): MockInterface
2017-10-24 04:10:32 +02:00
{
2022-11-29 18:53:59 +01:00
return $this->exception ?? $this->exception = \Mockery::mock($abstract);
2017-10-24 04:10:32 +02:00
}
}