mirror of
https://github.com/flarum/framework.git
synced 2025-01-11 14:06:30 +08:00
04bcf1eef6
HTTP 401 should be used when logging in (i.e. authenticating) would make a difference; HTTP 403 is reserved for requests that fail because the already authenticated user is not authorized (i.e. lacking permissions) to do something.
54 lines
1.1 KiB
PHP
54 lines
1.1 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Flarum.
|
|
*
|
|
* (c) Toby Zerner <toby.zerner@gmail.com>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Flarum\Tests\integration\api\Controller;
|
|
|
|
use Flarum\Api\Controller\ListNotificationsController;
|
|
use Flarum\User\User;
|
|
|
|
class ListNotificationsControllerTest extends ApiControllerTestCase
|
|
{
|
|
protected $controller = ListNotificationsController::class;
|
|
|
|
public function setUp()
|
|
{
|
|
parent::setUp();
|
|
|
|
$this->prepareDatabase([
|
|
'users' => [
|
|
$this->normalUser(),
|
|
],
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function disallows_index_for_guest()
|
|
{
|
|
$response = $this->callWith();
|
|
|
|
$this->assertEquals(401, $response->getStatusCode());
|
|
}
|
|
|
|
/**
|
|
* @test
|
|
*/
|
|
public function show_index_for_user()
|
|
{
|
|
$this->actor = User::find(2);
|
|
|
|
$response = $this->callWith();
|
|
|
|
$this->assertEquals(200, $response->getStatusCode());
|
|
}
|
|
}
|