1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
|
<?php
namespace Illuminate\Tests\Auth;
use Illuminate\Auth\Access\AuthorizationException;
use Illuminate\Auth\Access\Response;
use PHPUnit\Framework\TestCase;
class AuthAccessResponseTest extends TestCase
{
public function testAllowMethod()
{
$response = Response::allow('some message', 'some_code');
$this->assertTrue($response->allowed());
$this->assertFalse($response->denied());
$this->assertSame('some message', $response->message());
$this->assertSame('some_code', $response->code());
}
public function testDenyMethod()
{
$response = Response::deny('some message', 'some_code');
$this->assertTrue($response->denied());
$this->assertFalse($response->allowed());
$this->assertSame('some message', $response->message());
$this->assertSame('some_code', $response->code());
}
public function testDenyMethodWithNoMessageReturnsNull()
{
$response = Response::deny();
$this->assertNull($response->message());
}
public function testItSetsEmptyStatusOnExceptionWhenAuthorizing()
{
try {
Response::deny('foo', 3)->authorize();
$this->fail();
} catch (AuthorizationException $e) {
$this->assertNull($e->status());
$this->assertFalse($e->hasStatus());
$this->assertSame('foo', $e->response()->message());
$this->assertSame('foo', $e->getMessage());
$this->assertSame(3, $e->getCode());
}
}
public function testItSetsStatusOnExceptionWhenAuthorizing()
{
try {
Response::deny('foo', 3)->withStatus(418)->authorize();
$this->fail();
} catch (AuthorizationException $e) {
$this->assertSame(418, $e->status());
$this->assertTrue($e->hasStatus());
$this->assertSame('foo', $e->response()->message());
$this->assertSame('foo', $e->getMessage());
$this->assertSame(3, $e->getCode());
}
try {
Response::deny('foo', 3)->asNotFound()->authorize();
$this->fail();
} catch (AuthorizationException $e) {
$this->assertSame(404, $e->status());
$this->assertTrue($e->hasStatus());
$this->assertSame('foo', $e->response()->message());
$this->assertSame('foo', $e->getMessage());
$this->assertSame(3, $e->getCode());
}
try {
Response::denyWithStatus(444)->authorize();
$this->fail();
} catch (AuthorizationException $e) {
$this->assertSame(444, $e->status());
$this->assertTrue($e->hasStatus());
$this->assertNull($e->response()->message());
$this->assertSame('This action is unauthorized.', $e->getMessage());
$this->assertSame(0, $e->getCode());
}
try {
Response::denyWithStatus(444, 'foo', 3)->authorize();
$this->fail();
} catch (AuthorizationException $e) {
$this->assertSame(444, $e->status());
$this->assertTrue($e->hasStatus());
$this->assertSame('foo', $e->response()->message());
$this->assertSame('foo', $e->getMessage());
$this->assertSame(3, $e->getCode());
}
try {
Response::denyAsNotFound()->authorize();
$this->fail();
} catch (AuthorizationException $e) {
$this->assertSame(404, $e->status());
$this->assertTrue($e->hasStatus());
$this->assertNull($e->response()->message());
$this->assertSame('This action is unauthorized.', $e->getMessage());
$this->assertSame(0, $e->getCode());
}
try {
Response::denyAsNotFound('foo', 3)->authorize();
$this->fail();
} catch (AuthorizationException $e) {
$this->assertSame(404, $e->status());
$this->assertTrue($e->hasStatus());
$this->assertSame('foo', $e->response()->message());
$this->assertSame('foo', $e->getMessage());
$this->assertSame(3, $e->getCode());
}
}
public function testAuthorizeMethodThrowsAuthorizationExceptionWhenResponseDenied()
{
$response = Response::deny('Some message.', 'some_code');
try {
$response->authorize();
} catch (AuthorizationException $e) {
$this->assertSame('Some message.', $e->getMessage());
$this->assertSame('some_code', $e->getCode());
$this->assertEquals($response, $e->response());
}
}
public function testAuthorizeMethodThrowsAuthorizationExceptionWithDefaultMessage()
{
$response = Response::deny();
try {
$response->authorize();
} catch (AuthorizationException $e) {
$this->assertSame('This action is unauthorized.', $e->getMessage());
}
}
public function testThrowIfNeededDoesntThrowAuthorizationExceptionWhenResponseAllowed()
{
$response = Response::allow('Some message.', 'some_code');
$this->assertEquals($response, $response->authorize());
}
public function testCastingToStringReturnsMessage()
{
$response = new Response(true, 'some data');
$this->assertSame('some data', (string) $response);
$response = new Response(false, null);
$this->assertSame('', (string) $response);
}
public function testResponseToArrayMethod()
{
$response = new Response(false, 'Not allowed.', 'some_code');
$this->assertEquals([
'allowed' => false,
'message' => 'Not allowed.',
'code' => 'some_code',
], $response->toArray());
}
}
|