mirror of
https://codeberg.org/demostf/api.git
synced 2026-06-03 18:04:08 +02:00
better status codes, again
This commit is contained in:
parent
0d70d93e13
commit
c7b637a05f
6 changed files with 78 additions and 7 deletions
|
|
@ -8,6 +8,8 @@ use Demostf\API\Controllers\DemoController;
|
|||
use Demostf\API\Demo\ChatMessage;
|
||||
use Demostf\API\Demo\Demo;
|
||||
use Demostf\API\Demo\DemoStore;
|
||||
use Demostf\API\Error\InvalidHashException;
|
||||
use Demostf\API\Error\InvalidKeyException;
|
||||
use Demostf\API\Providers\ChatProvider;
|
||||
use Demostf\API\Providers\DemoListProvider;
|
||||
use Demostf\API\Providers\DemoProvider;
|
||||
|
|
@ -90,7 +92,7 @@ class DemoControllerTest extends ControllerTest {
|
|||
'key' => 'invalid',
|
||||
]);
|
||||
|
||||
$this->expectException(InvalidArgumentException::class);
|
||||
$this->expectException(InvalidKeyException::class);
|
||||
$this->expectExceptionMessage('Invalid key');
|
||||
|
||||
$controller->setDemoUrl('1');
|
||||
|
|
@ -105,7 +107,7 @@ class DemoControllerTest extends ControllerTest {
|
|||
'key' => 'supersecretkey',
|
||||
]);
|
||||
|
||||
$this->expectException(InvalidArgumentException::class);
|
||||
$this->expectException(InvalidHashException::class);
|
||||
$this->expectExceptionMessage('Invalid demo hash');
|
||||
|
||||
$demo = $this->createConfiguredMock(Demo::class, [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue