refactor: replace custom CRM with Monica fork
Some checks failed
Build & Push Monica Image to Gitea Registry / build-and-push (push) Failing after 9s
Some checks failed
Build & Push Monica Image to Gitea Registry / build-and-push (push) Failing after 9s
This commit is contained in:
78
tests/Traits/Asserts.php
Normal file
78
tests/Traits/Asserts.php
Normal file
@@ -0,0 +1,78 @@
|
||||
<?php
|
||||
|
||||
namespace Tests\Traits;
|
||||
|
||||
use Illuminate\Testing\TestResponse;
|
||||
|
||||
trait Asserts
|
||||
{
|
||||
/**
|
||||
* Test that the response contains a not found notification.
|
||||
*
|
||||
* @param TestResponse $response
|
||||
*/
|
||||
public function expectNotFound(TestResponse $response)
|
||||
{
|
||||
$response->assertStatus(404);
|
||||
|
||||
$response->assertJson([
|
||||
'error' => [
|
||||
'message' => 'The resource has not been found',
|
||||
'error_code' => 31,
|
||||
],
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* Test that the response contains a not authorized notification.
|
||||
*
|
||||
* @param TestResponse $response
|
||||
*/
|
||||
public function expectNotAuthorized(TestResponse $response)
|
||||
{
|
||||
$response->assertStatus(401);
|
||||
|
||||
$response->assertJson([
|
||||
'error' => [
|
||||
'message' => 'Not authorized',
|
||||
'error_code' => 42,
|
||||
],
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* Test that the response contains a data error notification.
|
||||
*
|
||||
* @param TestResponse $response
|
||||
* @param string|array $message
|
||||
*/
|
||||
public function expectDataError(TestResponse $response, $message = '')
|
||||
{
|
||||
$response->assertStatus(422);
|
||||
|
||||
$response->assertJson([
|
||||
'error' => [
|
||||
'message' => $message,
|
||||
'error_code' => 32,
|
||||
],
|
||||
]);
|
||||
}
|
||||
|
||||
/**
|
||||
* Test that the response contains an invalid parameter notification.
|
||||
*
|
||||
* @param TestResponse $response
|
||||
* @param string|array $message
|
||||
*/
|
||||
public function expectInvalidParameter(TestResponse $response, $message = '')
|
||||
{
|
||||
$response->assertStatus(422);
|
||||
|
||||
$response->assertJson([
|
||||
'error' => [
|
||||
'message' => $message,
|
||||
'error_code' => 41,
|
||||
],
|
||||
]);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user