mirror of
https://github.com/flarum/framework.git
synced 2025-06-04 14:54:32 +08:00

committed by
Daniël Klabbers

parent
80546b9ed7
commit
a737b98e7f
@ -188,4 +188,34 @@ class RequireCsrfTokenTest extends TestCase
|
||||
$this->database()->table('settings')->where('key', 'csrf_test')->first()->value
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @test
|
||||
*/
|
||||
public function access_token_does_not_need_csrf_token()
|
||||
{
|
||||
$this->database()->table('access_tokens')->insert(
|
||||
['token' => 'myaccesstoken', 'user_id' => 1]
|
||||
);
|
||||
|
||||
$response = $this->send(
|
||||
$this->request(
|
||||
'POST', '/api/settings',
|
||||
[
|
||||
'json' => ['csrf_test' => 2],
|
||||
]
|
||||
)->withHeader('Authorization', 'Token myaccesstoken')
|
||||
);
|
||||
|
||||
// Successful response?
|
||||
$this->assertEquals(204, $response->getStatusCode());
|
||||
|
||||
// Was the setting actually changed in the database?
|
||||
$this->assertEquals(
|
||||
2,
|
||||
$this->database()->table('settings')->where('key', 'csrf_test')->first()->value
|
||||
);
|
||||
|
||||
$this->database()->table('access_tokens')->where('token', 'myaccesstoken')->delete();
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user