mirror of
https://github.com/flarum/framework.git
synced 2024-12-05 00:43:39 +08:00
104a31ba30
- Add integration tests for login and registration - Use URL instead of controller - Add fluent API - Allow setting parent request, user, session
99 lines
2.6 KiB
PHP
99 lines
2.6 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Flarum.
|
|
*
|
|
* For detailed copyright and license information, please view the
|
|
* LICENSE file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Flarum\Tests\integration\extenders;
|
|
|
|
use Flarum\Extend;
|
|
use Flarum\Testing\integration\RetrievesAuthorizedUsers;
|
|
use Flarum\Testing\integration\TestCase;
|
|
|
|
class ThrottleApiTest extends TestCase
|
|
{
|
|
use RetrievesAuthorizedUsers;
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
protected function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
|
|
$this->prepareDatabase([
|
|
'users' => [
|
|
$this->normalUser(),
|
|
]
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function list_discussions_not_restricted_by_default()
|
|
{
|
|
$response = $this->send($this->request('GET', '/api/discussions', ['authenticatedAs' => 2]));
|
|
|
|
$this->assertEquals(200, $response->getStatusCode());
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function list_discussions_can_be_restricted()
|
|
{
|
|
$this->extend((new Extend\ThrottleApi)->set('blockListDiscussions', function ($request) {
|
|
if ($request->getAttribute('routeName') === 'discussions.index') {
|
|
return true;
|
|
}
|
|
}));
|
|
|
|
$response = $this->send($this->request('GET', '/api/discussions', ['authenticatedAs' => 2]));
|
|
|
|
$this->assertEquals(429, $response->getStatusCode());
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function false_overrides_true_for_evaluating_throttlers()
|
|
{
|
|
$this->extend(
|
|
(new Extend\ThrottleApi)->set('blockListDiscussions', function ($request) {
|
|
if ($request->getAttribute('routeName') === 'discussions.index') {
|
|
return true;
|
|
}
|
|
}),
|
|
(new Extend\ThrottleApi)->set('blockListDiscussionsOverride', function ($request) {
|
|
if ($request->getAttribute('routeName') === 'discussions.index') {
|
|
return false;
|
|
}
|
|
})
|
|
);
|
|
|
|
$response = $this->send($this->request('GET', '/api/discussions', ['authenticatedAs' => 2]));
|
|
|
|
$this->assertEquals(200, $response->getStatusCode());
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function throttling_applies_to_api_client()
|
|
{
|
|
$this->extend((new Extend\ThrottleApi)->set('blockRegistration', function ($request) {
|
|
if ($request->getAttribute('routeName') === 'users.create') {
|
|
return true;
|
|
}
|
|
}));
|
|
|
|
$response = $this->send($this->request('POST', '/register')->withAttribute('bypassCsrfToken', true));
|
|
|
|
$this->assertEquals(429, $response->getStatusCode());
|
|
}
|
|
}
|