mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 15:36:52 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			52 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace Tests\Traits\Http;
 | 
						|
 | 
						|
use Illuminate\Http\Response;
 | 
						|
use Illuminate\Testing\TestResponse;
 | 
						|
 | 
						|
trait IntegrationJsonRequestAssertions
 | 
						|
{
 | 
						|
    /**
 | 
						|
     * Make assertions about a 404 response on the API.
 | 
						|
     *
 | 
						|
     * @param \Illuminate\Testing\TestResponse $response
 | 
						|
     */
 | 
						|
    public function assertNotFoundJson(TestResponse $response)
 | 
						|
    {
 | 
						|
        $response->assertStatus(Response::HTTP_NOT_FOUND);
 | 
						|
        $response->assertJsonStructure(['errors' => [['code', 'status', 'detail']]]);
 | 
						|
        $response->assertJsonCount(1, 'errors');
 | 
						|
        $response->assertJson([
 | 
						|
            'errors' => [
 | 
						|
                [
 | 
						|
                    'code' => 'NotFoundHttpException',
 | 
						|
                    'status' => '404',
 | 
						|
                    'detail' => 'The requested resource does not exist on this server.',
 | 
						|
                ],
 | 
						|
            ],
 | 
						|
        ], true);
 | 
						|
    }
 | 
						|
 | 
						|
    /**
 | 
						|
     * Make assertions about a 403 error returned by the API.
 | 
						|
     *
 | 
						|
     * @param \Illuminate\Testing\TestResponse $response
 | 
						|
     */
 | 
						|
    public function assertAccessDeniedJson(TestResponse $response)
 | 
						|
    {
 | 
						|
        $response->assertStatus(Response::HTTP_FORBIDDEN);
 | 
						|
        $response->assertJsonStructure(['errors' => [['code', 'status', 'detail']]]);
 | 
						|
        $response->assertJsonCount(1, 'errors');
 | 
						|
        $response->assertJson([
 | 
						|
            'errors' => [
 | 
						|
                [
 | 
						|
                    'code' => 'AccessDeniedHttpException',
 | 
						|
                    'status' => '403',
 | 
						|
                    'detail' => 'This action is unauthorized.',
 | 
						|
                ],
 | 
						|
            ],
 | 
						|
        ], true);
 | 
						|
    }
 | 
						|
}
 |