1
0
mirror of https://github.com/flarum/core.git synced 2025-08-09 18:07:02 +02:00

adds api controller tests

This commit is contained in:
Daniel Klabbers
2018-04-13 07:52:39 +02:00
parent c9c8fa0fde
commit 17f29f83c9
3 changed files with 227 additions and 0 deletions

View File

@@ -0,0 +1,46 @@
<?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\Api\Controller;
use Flarum\Http\Controller\ControllerInterface;
use Flarum\Tests\Test\TestCase;
use Flarum\User\User;
use Psr\Http\Message\ResponseInterface;
abstract class ApiControllerTestCase extends TestCase
{
/**
* @var ControllerInterface
*/
protected $controller;
/**
* @var null|User
*/
protected $actor = null;
protected function callWith(array $body = []): ResponseInterface
{
return $this->call(
$this->controller,
$this->actor,
[],
$body ? ['data' => ['attributes' => $body]] : []
);
}
protected function tearDown()
{
$this->actor = null;
parent::tearDown();
}
}