mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-24 01:03:35 +01:00
40 lines
909 B
PHP
40 lines
909 B
PHP
<?php
|
|
|
|
namespace Tests\Unit\Api\v1\Controllers;
|
|
|
|
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);
|
|
}
|
|
}
|