2FAuth/tests/Api/v1/ThrottlingTest.php
2023-03-17 17:54:05 +01:00

40 lines
898 B
PHP

<?php
namespace Tests\Api\v1;
use App\Models\User;
use Illuminate\Support\Facades\Config;
use Tests\FeatureTestCase;
/**
* @covers \App\Providers\RouteServiceProvider
*/
class ThrottlingTest extends FeatureTestCase
{
/**
* @test
*/
public function test_api_calls_are_throttled_using_config()
{
/**
* @var \App\Models\User|\Illuminate\Contracts\Auth\Authenticatable
*/
$user = User::factory()->create();
$throttle = 5;
Config::set('2fauth.api.throttle', $throttle);
$this->actingAs($user, 'api-guard');
for ($i = 0; $i < $throttle - 1; $i++) {
$this->json('GET', '/api/v1/twofaccounts/count');
}
$this->json('GET', '/api/v1/twofaccounts/count')
->assertOk();
$this->json('GET', '/api/v1/twofaccounts/count')
->assertStatus(429);
}
}