You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
engelsystem/tests/Unit/Controllers/HomeControllerTest.php

31 lines
909 B
PHP

<?php
namespace Engelsystem\Test\Unit\Controllers;
use Engelsystem\Config\Config;
use Engelsystem\Controllers\HomeController;
use Engelsystem\Helpers\Authenticator;
use Engelsystem\Http\Exceptions\HttpTemporaryRedirect;
use Engelsystem\Test\Unit\TestCase;
use PHPUnit\Framework\MockObject\MockObject;
class HomeControllerTest extends TestCase
{
/**
* @covers \Engelsystem\Controllers\HomeController::__construct
* @covers \Engelsystem\Controllers\HomeController::index
*/
public function testIndex()
{
$config = new Config(['home_site' => '/foo']);
/** @var Authenticator|MockObject $auth */
$auth = $this->createMock(Authenticator::class);
$this->setExpects($auth, 'user', null, true);
$controller = new HomeController($auth, $config);
$this->expectException(HttpTemporaryRedirect::class);
$controller->index();
}
}