-
-
Notifications
You must be signed in to change notification settings - Fork 61
/
MiddlewareTest.php
135 lines (107 loc) · 3.55 KB
/
MiddlewareTest.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
125
126
127
128
129
130
131
132
133
134
135
<?php
declare(strict_types=1);
/*
* This file is part of Laravel Throttle.
*
* (c) Graham Campbell <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace GrahamCampbell\Tests\Throttle\Functional;
use GrahamCampbell\Tests\Throttle\AbstractTestCase;
use GrahamCampbell\Throttle\Http\Middleware\ThrottleMiddleware;
use Symfony\Component\HttpKernel\Exception\TooManyRequestsHttpException;
/**
* This is the middleware test class.
*
* @author Graham Campbell <[email protected]>
*/
class MiddlewareTest extends AbstractTestCase
{
/**
* Setup the application environment.
*
* @param \Illuminate\Contracts\Foundation\Application $app
*
* @return void
*/
protected function getEnvironmentSetUp($app): void
{
parent::getEnvironmentSetUp($app);
$app->config->set('throttle.driver', 'array');
}
/**
* @after
*/
public function tearDown(): void
{
$this->app->cache->driver('array')->flush();
}
public function testBasicMiddlewareSuccess(): void
{
$this->app->router->get('throttle-test-route', ['middleware' => ThrottleMiddleware::class, function () {
return 'Why herro there!';
}]);
$this->hit(10);
}
public function testBasicMiddlewareFailure(): void
{
$this->app->router->get('throttle-test-route', ['middleware' => ThrottleMiddleware::class, function () {
return 'Why herro there!';
}]);
$this->expectException(TooManyRequestsHttpException::class);
$this->hit(11);
}
public function testCustomLimitSuccess(): void
{
$this->app->router->get('throttle-test-route', ['middleware' => ThrottleMiddleware::class.':5', function () {
return 'Why herro there!';
}]);
$this->hit(5);
}
public function testCustomLimitFailure(): void
{
$this->app->router->get('throttle-test-route', ['middleware' => ThrottleMiddleware::class.':5', function () {
return 'Why herro there!';
}]);
$this->expectException(TooManyRequestsHttpException::class);
$this->hit(6);
}
public function testCustomTimeSuccess(): void
{
$this->app->router->get('throttle-test-route', ['middleware' => ThrottleMiddleware::class.':3,5', function () {
return 'Why herro there!';
}]);
$this->hit(3, 300);
}
public function testCustomTimeFailure(): void
{
$this->app->router->get('throttle-test-route', ['middleware' => ThrottleMiddleware::class.':3,5', function () {
return 'Why herro there!';
}]);
$this->expectException(TooManyRequestsHttpException::class);
$this->hit(4, 300);
}
private function hit(int $times, int $time = 3600): void
{
for ($i = 0; $i < $times - 1; $i++) {
$this->wrappedCall('GET', 'throttle-test-route');
}
try {
$this->wrappedCall('GET', 'throttle-test-route');
} catch (TooManyRequestsHttpException $e) {
self::assertSame('Rate limit exceeded.', $e->getMessage());
self::assertSame($time, $e->getHeaders()['Retry-After']);
throw $e;
}
}
private function wrappedCall(string $method, string $uri): void
{
$response = $this->call($method, $uri);
if ($ex = $response->exception) {
throw $ex;
}
self::assertSame(200, $response->status());
}
}