36 lines
1.3 KiB
PHP
36 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace Engelsystem\Test\Unit\Controllers;
|
|
|
|
use Engelsystem\Test\Unit\Controllers\Stub\HasUserNotificationsImplementation;
|
|
use Engelsystem\Test\Unit\TestCase;
|
|
use Illuminate\Support\Collection;
|
|
use Symfony\Component\HttpFoundation\Session\Session;
|
|
use Symfony\Component\HttpFoundation\Session\Storage\MockArraySessionStorage;
|
|
|
|
class HasUserNotificationsTest extends TestCase
|
|
{
|
|
/**
|
|
* @covers \Engelsystem\Controllers\HasUserNotifications::getNotifications
|
|
* @covers \Engelsystem\Controllers\HasUserNotifications::addNotification
|
|
*/
|
|
public function testNotifications(): void
|
|
{
|
|
$session = new Session(new MockArraySessionStorage());
|
|
$this->app->instance('session', $session);
|
|
|
|
$notify = new HasUserNotificationsImplementation();
|
|
$notify->add('Foo', 'errors');
|
|
$notify->add('Bar', 'warnings');
|
|
$notify->add(['Baz', 'Lorem'], 'information');
|
|
$notify->add(['Hm', ['Uff', 'sum']], 'messages');
|
|
|
|
$this->assertEquals([
|
|
'errors' => new Collection(['Foo']),
|
|
'warnings' => new Collection(['Bar']),
|
|
'information' => new Collection(['Baz', 'Lorem']),
|
|
'messages' => new Collection(['Hm', 'Uff', 'sum']),
|
|
], $notify->get());
|
|
}
|
|
}
|