mirror of
https://github.com/AnimeThemes/animethemes-server.git
synced 2026-07-11 09:34:50 +02:00
83 lines
2.2 KiB
PHP
83 lines
2.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Enums\Auth\SpecialPermission;
|
|
use App\Models\Auth\User;
|
|
use Laravel\Sanctum\Sanctum;
|
|
|
|
use function Pest\Laravel\post;
|
|
|
|
test('client with no forwarded ip not rate limited', function () {
|
|
$response = post(route('graphql'), [
|
|
'query' => '{ animePagination(first: 1) { data { id } } }',
|
|
]);
|
|
|
|
$response->assertHeaderMissing('X-RateLimit-Limit');
|
|
$response->assertHeaderMissing('X-RateLimit-Remaining');
|
|
});
|
|
|
|
test('user with bypass not rate limited', function () {
|
|
$user = User::factory()->withPermissions(SpecialPermission::BYPASS_GRAPHQL_RATE_LIMITER->value)->createOne();
|
|
|
|
Sanctum::actingAs($user);
|
|
|
|
$response = post(route('graphql'), [
|
|
'query' => '{ animePagination(first: 1) { data { id } } }',
|
|
]);
|
|
|
|
$response->assertHeaderMissing('X-RateLimit-Limit');
|
|
$response->assertHeaderMissing('X-RateLimit-Remaining');
|
|
});
|
|
|
|
test('forwarded ip rate limited per query', function () {
|
|
$count = fake()->numberBetween(1, 10);
|
|
|
|
$query = '{';
|
|
|
|
foreach (range(1, $count) as $_) {
|
|
$query .= 'animePagination(first: 1) { data { id } }';
|
|
}
|
|
|
|
$query .= '}';
|
|
|
|
$response = $this->withHeader('x-forwarded-ip', fake()->ipv4())
|
|
->post(route('graphql'), [
|
|
'query' => $query,
|
|
]);
|
|
|
|
$response->assertHeader('X-RateLimit-Limit');
|
|
$response->assertHeader('X-RateLimit-Remaining');
|
|
|
|
expect((int) $response->headers->get('X-RateLimit-Remaining'))
|
|
->toBe(80 - $count);
|
|
});
|
|
|
|
test('user without bypass rate limited per query', function () {
|
|
$user = User::factory()->createOne();
|
|
|
|
Sanctum::actingAs($user);
|
|
|
|
$count = fake()->numberBetween(1, 10);
|
|
|
|
$query = '{';
|
|
|
|
foreach (range(1, $count) as $_) {
|
|
$query .= 'animePagination(first: 1) { data { id } }';
|
|
}
|
|
|
|
$query .= '}';
|
|
|
|
$response = $this->withServerVariables([
|
|
'REMOTE_ADDR' => fake()->ipv4(),
|
|
])->post(route('graphql'), [
|
|
'query' => $query,
|
|
]);
|
|
|
|
$response->assertHeader('X-RateLimit-Limit');
|
|
$response->assertHeader('X-RateLimit-Remaining');
|
|
|
|
expect((int) $response->headers->get('X-RateLimit-Remaining'))
|
|
->toBe(80 - $count);
|
|
});
|