mirror of
https://github.com/kevinpapst/kimai2.git
synced 2024-12-22 12:18:29 +00:00
126 lines
4.0 KiB
PHP
126 lines
4.0 KiB
PHP
<?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\Command;
|
|
|
|
use App\Command\ChangePasswordCommand;
|
|
use App\Entity\User;
|
|
use App\Repository\UserRepository;
|
|
use App\User\UserService;
|
|
use Doctrine\Bundle\DoctrineBundle\Registry;
|
|
use Symfony\Bundle\FrameworkBundle\Console\Application;
|
|
use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase;
|
|
use Symfony\Component\Console\Exception\RuntimeException;
|
|
use Symfony\Component\Console\Tester\CommandTester;
|
|
use Symfony\Component\PasswordHasher\Hasher\PasswordHasherFactoryInterface;
|
|
|
|
/**
|
|
* @covers \App\Command\ChangePasswordCommand
|
|
* @covers \App\Command\AbstractUserCommand
|
|
* @group integration
|
|
*/
|
|
class ChangePasswordCommandTest extends KernelTestCase
|
|
{
|
|
private Application $application;
|
|
|
|
protected function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
$kernel = self::bootKernel();
|
|
$this->application = new Application($kernel);
|
|
$container = self::$kernel->getContainer();
|
|
|
|
/** @var UserService $userService */
|
|
$userService = $container->get(UserService::class);
|
|
|
|
$this->application->add(new ChangePasswordCommand($userService));
|
|
}
|
|
|
|
public function testCommandName(): void
|
|
{
|
|
$application = $this->application;
|
|
|
|
$command = $application->find('kimai:user:password');
|
|
self::assertInstanceOf(ChangePasswordCommand::class, $command);
|
|
}
|
|
|
|
private function callCommand(?string $username, ?string $password): CommandTester
|
|
{
|
|
$command = $this->application->find('kimai:user:password');
|
|
$input = [
|
|
'command' => $command->getName(),
|
|
];
|
|
$interactive = false;
|
|
|
|
if ($username !== null) {
|
|
$input['username'] = $username;
|
|
}
|
|
|
|
if ($password !== null) {
|
|
$input['password'] = $password;
|
|
} else {
|
|
$interactive = true;
|
|
}
|
|
|
|
$commandTester = new CommandTester($command);
|
|
|
|
$options = [];
|
|
if ($interactive) {
|
|
$options = ['interactive' => true];
|
|
$commandTester->setInputs(['12345678']);
|
|
}
|
|
|
|
$commandTester->execute($input, $options);
|
|
|
|
return $commandTester;
|
|
}
|
|
|
|
public function testChangePassword(): void
|
|
{
|
|
$commandTester = $this->callCommand('john_user', '0987654321');
|
|
|
|
$output = $commandTester->getDisplay();
|
|
self::assertStringContainsString('[OK] Changed password for user "john_user".', $output);
|
|
|
|
/** @var Registry $doctrine */
|
|
$doctrine = self::getContainer()->get('doctrine');
|
|
/** @var UserRepository $userRepository */
|
|
$userRepository = $doctrine->getRepository(User::class);
|
|
$user = $userRepository->loadUserByIdentifier('john_user');
|
|
self::assertInstanceOf(User::class, $user);
|
|
|
|
/** @var PasswordHasherFactoryInterface $passwordEncoder */
|
|
$passwordEncoder = self::getContainer()->get('security.password_hasher_factory');
|
|
self::assertTrue($passwordEncoder->getPasswordHasher($user)->verify($user->getPassword(), '0987654321'));
|
|
}
|
|
|
|
public function testChangePasswordFailsOnShortPassword(): void
|
|
{
|
|
$commandTester = $this->callCommand('john_user', '1');
|
|
|
|
$output = $commandTester->getDisplay();
|
|
self::assertStringContainsString('[ERROR] plainPassword: This value is too short.', $output);
|
|
}
|
|
|
|
public function testWithMissingUsername(): void
|
|
{
|
|
$this->expectException(RuntimeException::class);
|
|
$this->expectExceptionMessage('Not enough arguments (missing: "username").');
|
|
|
|
$this->callCommand(null, '1234567890');
|
|
}
|
|
|
|
public function testWithMissingPasswordAsksForPassword(): void
|
|
{
|
|
$commandTester = $this->callCommand('john_user', null);
|
|
$output = $commandTester->getDisplay();
|
|
self::assertStringContainsString('[OK] Changed password for user "john_user".', $output);
|
|
}
|
|
}
|