1
0
mirror of https://github.com/flarum/core.git synced 2025-07-31 13:40:20 +02:00

Convert more controller tests to feature tests

This commit is contained in:
Franz Liedke
2019-09-14 13:09:56 +02:00
parent bd989df769
commit 95dcb45d65
2 changed files with 31 additions and 18 deletions

View File

@@ -1,53 +0,0 @@
<?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());
}
}

View File

@@ -1,59 +0,0 @@
<?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\ListUsersController;
use Flarum\User\User;
class ListUsersControllerTest extends ApiControllerTestCase
{
protected $controller = ListUsersController::class;
public function setUp()
{
parent::setUp();
$this->prepareDatabase([
'users' => [
$this->adminUser(),
],
'groups' => [
$this->adminGroup(),
],
'group_user' => [
['user_id' => 1, 'group_id' => 1],
],
]);
}
/**
* @test
*/
public function disallows_index_for_guest()
{
$response = $this->callWith();
$this->assertEquals(401, $response->getStatusCode());
}
/**
* @test
*/
public function shows_index_for_admin()
{
$this->actor = User::find(1);
$response = $this->callWith();
$this->assertEquals(200, $response->getStatusCode());
}
}