-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathBasicAuthenticationTest.php
124 lines (102 loc) · 3.82 KB
/
BasicAuthenticationTest.php
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
<?php
declare(strict_types = 1);
namespace Middlewares\Tests;
use InvalidArgumentException;
use Middlewares\BasicAuthentication;
use Middlewares\Utils\Dispatcher;
use Middlewares\Utils\Factory;
use PHPUnit\Framework\TestCase;
class BasicAuthenticationTest extends TestCase
{
public function testException(): void
{
$this->expectException(InvalidArgumentException::class);
$response = Dispatcher::run([
// @phpstan-ignore-next-line
new BasicAuthentication('foo'),
]);
}
public function testUserDoesNotExists(): void
{
$response = Dispatcher::run(
[
(new BasicAuthentication(['user' => 'pass']))->realm('My realm'),
],
Factory::createServerRequest('GET', '/')
->withHeader('Authorization', 'Basic '.base64_encode('invalid-user:pass'))
);
$this->assertSame(401, $response->getStatusCode());
}
public function testEmptyUserAndPassword(): void
{
$response = Dispatcher::run(
[
(new BasicAuthentication(['user' => 'pass']))->realm('My realm'),
],
Factory::createServerRequest('GET', '/')
->withHeader('Authorization', 'Basic ')
);
$this->assertSame(401, $response->getStatusCode());
}
public function testPasswordNotProvided(): void
{
$response = Dispatcher::run(
[
(new BasicAuthentication(['user' => 'pass']))->realm('My realm'),
],
Factory::createServerRequest('GET', '/')
->withHeader('Authorization', 'Basic '.base64_encode('invalid-user:'))
);
$this->assertSame(401, $response->getStatusCode());
}
public function testInvalidPassword(): void
{
$response = Dispatcher::run(
[
(new BasicAuthentication(['user' => 'pass']))->realm('My realm'),
],
Factory::createServerRequest('GET', '/')
->withHeader('Authorization', 'Basic '.base64_encode('user:invalid-pass'))
);
$this->assertSame(401, $response->getStatusCode());
}
public function testError(): void
{
$response = Dispatcher::run([
(new BasicAuthentication(['user' => 'pass']))->realm('My realm'),
]);
$this->assertSame(401, $response->getStatusCode());
$this->assertSame('Basic realm="My realm"', $response->getHeaderLine('WWW-Authenticate'));
}
public function testSuccess(): void
{
$request = Factory::createServerRequest('GET', '/')
->withHeader('Authorization', 'Basic '.base64_encode('user:pass'));
$response = Dispatcher::run([
(new BasicAuthentication(['user' => 'pass']))
->realm('My realm')
->attribute('auth-username'),
function ($request) {
echo $request->getAttribute('auth-username');
},
], $request);
$this->assertSame(200, $response->getStatusCode());
$this->assertSame('user', (string) $response->getBody());
}
public function testHashSuccess(): void
{
$request = Factory::createServerRequest('GET', '/')
->withHeader('Authorization', 'Basic '.base64_encode('user:rasmuslerdorf'));
$response = Dispatcher::run([
(new BasicAuthentication(['user' => '$2y$07$BCryptRequires22Chrcte/VlQH0piJtjXl.0t1XkA8pw9dMXTpOq']))
->verifyHash()
->realm('My realm')
->attribute('auth-username'),
function ($request) {
echo $request->getAttribute('auth-username');
},
], $request);
$this->assertSame(200, $response->getStatusCode());
$this->assertSame('user', (string) $response->getBody());
}
}