Next major version 2 with PHP 8.1, Symfony 6, Tabler UI, 2FA ... (#2902)
This commit is contained in:
131
tests/EventSubscriber/ProfileSubscriberTest.php
Normal file
131
tests/EventSubscriber/ProfileSubscriberTest.php
Normal file
@@ -0,0 +1,131 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Kimai time-tracking app.
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace App\Tests\EventSubscriber;
|
||||
|
||||
use App\Entity\User;
|
||||
use App\EventSubscriber\LastLoginSubscriber;
|
||||
use App\EventSubscriber\ProfileSubscriber;
|
||||
use App\Utils\ProfileManager;
|
||||
use PHPUnit\Framework\TestCase;
|
||||
use Symfony\Component\HttpFoundation\Request;
|
||||
use Symfony\Component\HttpFoundation\Session\Session;
|
||||
use Symfony\Component\HttpFoundation\Session\Storage\MockFileSessionStorage;
|
||||
use Symfony\Component\Security\Core\Authentication\Token\UsernamePasswordToken;
|
||||
use Symfony\Component\Security\Http\Authenticator\AuthenticatorInterface;
|
||||
use Symfony\Component\Security\Http\Authenticator\Passport\Passport;
|
||||
use Symfony\Component\Security\Http\Event\LoginSuccessEvent;
|
||||
|
||||
/**
|
||||
* @covers \App\EventSubscriber\ProfileSubscriber
|
||||
*/
|
||||
class ProfileSubscriberTest extends TestCase
|
||||
{
|
||||
public function testGetSubscribedEvents()
|
||||
{
|
||||
$events = ProfileSubscriber::getSubscribedEvents();
|
||||
|
||||
$this->assertArrayHasKey(LoginSuccessEvent::class, $events);
|
||||
$methodName = $events[LoginSuccessEvent::class];
|
||||
$this->assertTrue(method_exists(LastLoginSubscriber::class, $methodName));
|
||||
}
|
||||
|
||||
public function testOnLoginSuccessWithoutProfileSetsDesktop()
|
||||
{
|
||||
$manager = new ProfileManager();
|
||||
$sut = new ProfileSubscriber($manager);
|
||||
|
||||
$request = new Request();
|
||||
$session = new Session(new MockFileSessionStorage());
|
||||
$request->setSession($session);
|
||||
|
||||
self::assertNull($session->get(ProfileManager::SESSION_PROFILE));
|
||||
|
||||
$user = new User();
|
||||
$authenticator = $this->createMock(AuthenticatorInterface::class);
|
||||
$passport = $this->createMock(Passport::class);
|
||||
$passport->method('getUser')->willReturn($user);
|
||||
$event = new LoginSuccessEvent($authenticator, $passport, new UsernamePasswordToken($user, 'sdf'), $request, null, 'xyz');
|
||||
$sut->onFormLogin($event);
|
||||
|
||||
self::assertNull($session->get(ProfileManager::SESSION_PROFILE));
|
||||
self::assertEquals(ProfileManager::PROFILE_DESKTOP, $manager->getProfileFromSession($session));
|
||||
}
|
||||
|
||||
public function testOnLoginSuccessWithProfile()
|
||||
{
|
||||
$manager = new ProfileManager();
|
||||
$sut = new ProfileSubscriber($manager);
|
||||
|
||||
$request = new Request();
|
||||
$session = new Session(new MockFileSessionStorage());
|
||||
$request->setSession($session);
|
||||
|
||||
$request->cookies->set(ProfileManager::COOKIE_PROFILE, 'mobile');
|
||||
|
||||
self::assertNull($session->get(ProfileManager::SESSION_PROFILE));
|
||||
|
||||
$user = new User();
|
||||
self::assertNull($user->getLastLogin());
|
||||
$authenticator = $this->createMock(AuthenticatorInterface::class);
|
||||
$passport = $this->createMock(Passport::class);
|
||||
$passport->method('getUser')->willReturn($user);
|
||||
$event = new LoginSuccessEvent($authenticator, $passport, new UsernamePasswordToken($user, 'sdf'), $request, null, 'xyz');
|
||||
$sut->onFormLogin($event);
|
||||
|
||||
self::assertNotNull($session->get(ProfileManager::SESSION_PROFILE));
|
||||
self::assertEquals(ProfileManager::PROFILE_MOBILE, $session->get(ProfileManager::SESSION_PROFILE));
|
||||
self::assertEquals(ProfileManager::PROFILE_MOBILE, $manager->getProfileFromSession($session));
|
||||
}
|
||||
|
||||
public function getInvalidCookies()
|
||||
{
|
||||
return [
|
||||
['MOBILE'],
|
||||
['mobilE'],
|
||||
['mobile2'],
|
||||
['mobile2'],
|
||||
['foo'],
|
||||
['mobile '],
|
||||
[' desktop'],
|
||||
['DESKTOP'],
|
||||
// the next two ones are misleading: default value "desktop" will not be set and session value will be removed
|
||||
['desktop'],
|
||||
[ProfileManager::PROFILE_DESKTOP],
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* @dataProvider getInvalidCookies
|
||||
*/
|
||||
public function testOnLoginSuccessWithInvalidProfile(string $cookieValue)
|
||||
{
|
||||
$manager = new ProfileManager();
|
||||
$sut = new ProfileSubscriber($manager);
|
||||
|
||||
$request = new Request();
|
||||
$session = new Session(new MockFileSessionStorage());
|
||||
$request->setSession($session);
|
||||
|
||||
$request->cookies->set(ProfileManager::COOKIE_PROFILE, $cookieValue);
|
||||
|
||||
self::assertNull($session->get(ProfileManager::SESSION_PROFILE));
|
||||
|
||||
$user = new User();
|
||||
self::assertNull($user->getLastLogin());
|
||||
$authenticator = $this->createMock(AuthenticatorInterface::class);
|
||||
$passport = $this->createMock(Passport::class);
|
||||
$passport->method('getUser')->willReturn($user);
|
||||
$event = new LoginSuccessEvent($authenticator, $passport, new UsernamePasswordToken($user, 'sdf'), $request, null, 'xyz');
|
||||
$sut->onFormLogin($event);
|
||||
|
||||
self::assertNull($session->get(ProfileManager::SESSION_PROFILE));
|
||||
self::assertEquals(ProfileManager::PROFILE_DESKTOP, $manager->getProfileFromSession($session));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user