322 lines
9.9 KiB
PHP
322 lines
9.9 KiB
PHP
<?php
|
|
|
|
namespace Engelsystem\Test\Unit\Controllers\Admin;
|
|
|
|
use Engelsystem\Controllers\Admin\NewsController;
|
|
use Engelsystem\Events\EventDispatcher;
|
|
use Engelsystem\Helpers\Authenticator;
|
|
use Engelsystem\Http\Exceptions\ValidationException;
|
|
use Engelsystem\Http\Validation\Validator;
|
|
use Engelsystem\Models\News;
|
|
use Engelsystem\Models\User\User;
|
|
use Engelsystem\Test\Unit\Controllers\ControllerTest;
|
|
use Illuminate\Support\Collection;
|
|
use PHPUnit\Framework\MockObject\MockObject;
|
|
use Symfony\Component\HttpFoundation\Session\Session;
|
|
|
|
class NewsControllerTest extends ControllerTest
|
|
{
|
|
/** @var Authenticator|MockObject */
|
|
protected $auth;
|
|
|
|
/** @var array */
|
|
protected $data = [
|
|
[
|
|
'title' => 'Foo',
|
|
'text' => '<b>foo</b>',
|
|
'is_meeting' => false,
|
|
'user_id' => 1,
|
|
]
|
|
];
|
|
|
|
/**
|
|
* @covers \Engelsystem\Controllers\Admin\NewsController::edit
|
|
* @covers \Engelsystem\Controllers\Admin\NewsController::showEdit
|
|
*/
|
|
public function testEditHtmlWarning()
|
|
{
|
|
$this->request->attributes->set('id', 1);
|
|
$this->response->expects($this->once())
|
|
->method('withView')
|
|
->willReturnCallback(function ($view, $data) {
|
|
$this->assertEquals('pages/news/edit.twig', $view);
|
|
|
|
/** @var Collection $warnings */
|
|
$warnings = $data['warnings'];
|
|
$this->assertNotEmpty($data['news']);
|
|
$this->assertTrue($warnings->isNotEmpty());
|
|
$this->assertEquals('news.edit.contains-html', $warnings->first());
|
|
|
|
return $this->response;
|
|
});
|
|
$this->addUser();
|
|
|
|
/** @var NewsController $controller */
|
|
$controller = $this->app->make(NewsController::class);
|
|
|
|
$controller->edit($this->request);
|
|
}
|
|
|
|
/**
|
|
* @covers \Engelsystem\Controllers\Admin\NewsController::__construct
|
|
* @covers \Engelsystem\Controllers\Admin\NewsController::edit
|
|
*/
|
|
public function testEdit()
|
|
{
|
|
$this->request->attributes->set('id', 1);
|
|
$this->response->expects($this->once())
|
|
->method('withView')
|
|
->willReturnCallback(function ($view, $data) {
|
|
$this->assertEquals('pages/news/edit.twig', $view);
|
|
|
|
/** @var Collection $warnings */
|
|
$warnings = $data['warnings'];
|
|
$this->assertNotEmpty($data['news']);
|
|
$this->assertTrue($warnings->isEmpty());
|
|
|
|
return $this->response;
|
|
});
|
|
$this->auth->expects($this->once())
|
|
->method('can')
|
|
->with('admin_news_html')
|
|
->willReturn(true);
|
|
|
|
/** @var NewsController $controller */
|
|
$controller = $this->app->make(NewsController::class);
|
|
|
|
$controller->edit($this->request);
|
|
}
|
|
|
|
/**
|
|
* @covers \Engelsystem\Controllers\Admin\NewsController::edit
|
|
*/
|
|
public function testEditIsMeeting()
|
|
{
|
|
$isMeeting = false;
|
|
$this->response->expects($this->exactly(3))
|
|
->method('withView')
|
|
->willReturnCallback(
|
|
function ($view, $data) use (&$isMeeting) {
|
|
$this->assertEquals($isMeeting, $data['is_meeting']);
|
|
$isMeeting = !$isMeeting;
|
|
|
|
return $this->response;
|
|
}
|
|
);
|
|
$this->auth->expects($this->once())
|
|
->method('can')
|
|
->with('admin_news_html')
|
|
->willReturn(true);
|
|
|
|
/** @var NewsController $controller */
|
|
$controller = $this->app->make(NewsController::class);
|
|
|
|
// Is no meeting
|
|
$controller->edit($this->request);
|
|
|
|
// Is meeting
|
|
$this->request->query->set('meeting', 1);
|
|
$controller->edit($this->request);
|
|
|
|
// Should stay no meeting
|
|
$this->request->attributes->set('id', 1);
|
|
$controller->edit($this->request);
|
|
}
|
|
|
|
/**
|
|
* @covers \Engelsystem\Controllers\Admin\NewsController::save
|
|
*/
|
|
public function testSaveCreateInvalid()
|
|
{
|
|
/** @var NewsController $controller */
|
|
$controller = $this->app->make(NewsController::class);
|
|
$controller->setValidator(new Validator());
|
|
|
|
$this->expectException(ValidationException::class);
|
|
$controller->save($this->request);
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function saveCreateEditProvider(): array
|
|
{
|
|
return [
|
|
['Some <b>test</b>', true, true, 'Some <b>test</b>'],
|
|
['Some <b>test</b>', false, false, 'Some test'],
|
|
['Some <b>test</b>', false, true, 'Some <b>test</b>', 1],
|
|
['Some <b>test</b>', true, false, 'Some test', 1],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @covers \Engelsystem\Controllers\Admin\NewsController::save
|
|
* @dataProvider saveCreateEditProvider
|
|
*
|
|
* @param string $text
|
|
* @param bool $isMeeting
|
|
* @param bool $canEditHtml
|
|
* @param string $result
|
|
* @param int|null $id
|
|
*/
|
|
public function testSaveCreateEdit(
|
|
string $text,
|
|
bool $isMeeting,
|
|
bool $canEditHtml,
|
|
string $result,
|
|
int $id = null
|
|
) {
|
|
$this->request->attributes->set('id', $id);
|
|
$id = $id ?: 2;
|
|
$body = [
|
|
'title' => 'Some Title',
|
|
'text' => $text,
|
|
];
|
|
if ($isMeeting) {
|
|
$body['is_meeting'] = '1';
|
|
}
|
|
|
|
$this->request = $this->request->withParsedBody($body);
|
|
$this->addUser();
|
|
$this->auth->expects($this->once())
|
|
->method('can')
|
|
->with('admin_news_html')
|
|
->willReturn($canEditHtml);
|
|
$this->response->expects($this->once())
|
|
->method('redirectTo')
|
|
->with('http://localhost/news')
|
|
->willReturn($this->response);
|
|
|
|
/** @var NewsController $controller */
|
|
$controller = $this->app->make(NewsController::class);
|
|
$controller->setValidator(new Validator());
|
|
|
|
$controller->save($this->request);
|
|
|
|
$this->assertTrue($this->log->hasInfoThatContains('Updated'));
|
|
|
|
/** @var Session $session */
|
|
$session = $this->app->get('session');
|
|
$messages = $session->get('messages');
|
|
$this->assertEquals('news.edit.success', $messages[0]);
|
|
|
|
$news = (new News())->find($id);
|
|
$this->assertEquals($result, $news->text);
|
|
$this->assertEquals($isMeeting, (bool)$news->is_meeting);
|
|
}
|
|
|
|
/**
|
|
* @covers \Engelsystem\Controllers\Admin\NewsController::save
|
|
*/
|
|
public function testSavePreview()
|
|
{
|
|
$this->request->attributes->set('id', 1);
|
|
$this->request = $this->request->withParsedBody([
|
|
'title' => 'New title',
|
|
'text' => 'New text',
|
|
'is_meeting' => '1',
|
|
'is_pinned' => '1',
|
|
'preview' => '1',
|
|
]);
|
|
$this->response->expects($this->once())
|
|
->method('withView')
|
|
->willReturnCallback(function ($view, $data) {
|
|
$this->assertEquals('pages/news/edit.twig', $view);
|
|
|
|
/** @var News $news */
|
|
$news = $data['news'];
|
|
// Contains new text
|
|
$this->assertTrue($news->is_meeting);
|
|
$this->assertTrue($news->is_pinned);
|
|
$this->assertEquals('New title', $news->title);
|
|
$this->assertEquals('New text', $news->text);
|
|
|
|
return $this->response;
|
|
});
|
|
|
|
/** @var NewsController $controller */
|
|
$controller = $this->app->make(NewsController::class);
|
|
$controller->setValidator(new Validator());
|
|
|
|
$controller->save($this->request);
|
|
|
|
// Assert no changes
|
|
$news = News::find(1);
|
|
$this->assertEquals('Foo', $news->title);
|
|
$this->assertEquals('<b>foo</b>', $news->text);
|
|
$this->assertFalse($news->is_meeting);
|
|
$this->assertFalse($news->is_pinned);
|
|
}
|
|
|
|
/**
|
|
* @covers \Engelsystem\Controllers\Admin\NewsController::save
|
|
*/
|
|
public function testSaveDelete()
|
|
{
|
|
$this->request->attributes->set('id', 1);
|
|
$this->request = $this->request->withParsedBody([
|
|
'title' => '.',
|
|
'text' => '.',
|
|
'delete' => '1',
|
|
]);
|
|
$this->response->expects($this->once())
|
|
->method('redirectTo')
|
|
->with('http://localhost/news')
|
|
->willReturn($this->response);
|
|
|
|
/** @var NewsController $controller */
|
|
$controller = $this->app->make(NewsController::class);
|
|
$controller->setValidator(new Validator());
|
|
|
|
$controller->save($this->request);
|
|
|
|
$this->assertTrue($this->log->hasInfoThatContains('Deleted'));
|
|
|
|
/** @var Session $session */
|
|
$session = $this->app->get('session');
|
|
$messages = $session->get('messages');
|
|
$this->assertEquals('news.delete.success', $messages[0]);
|
|
}
|
|
|
|
/**
|
|
* Creates a new user
|
|
*/
|
|
protected function addUser()
|
|
{
|
|
$user = new User([
|
|
'name' => 'foo',
|
|
'password' => '',
|
|
'email' => '',
|
|
'api_key' => '',
|
|
'last_login_at' => null,
|
|
]);
|
|
$user->forceFill(['id' => 42]);
|
|
$user->save();
|
|
|
|
$this->auth->expects($this->any())
|
|
->method('user')
|
|
->willReturn($user);
|
|
}
|
|
|
|
/**
|
|
* Setup environment
|
|
*/
|
|
public function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
|
|
$this->auth = $this->createMock(Authenticator::class);
|
|
$this->app->instance(Authenticator::class, $this->auth);
|
|
|
|
$eventDispatcher = $this->createMock(EventDispatcher::class);
|
|
$this->app->instance('events.dispatcher', $eventDispatcher);
|
|
|
|
(new News([
|
|
'title' => 'Foo',
|
|
'text' => '<b>foo</b>',
|
|
'is_meeting' => false,
|
|
'user_id' => 1,
|
|
]))->save();
|
|
}
|
|
}
|