mirror of
https://github.com/kevinpapst/kimai2.git
synced 2025-04-30 07:20:11 +00:00

- added command to list users - corrected wrong german translation - work contract validations - prevent error with missing params - use collapsible, minor UI improvement - added classes to target menu buttons in custom rules - disable webpack notifier, incompatible with mac arm - use explicit menu service to generate menu - bump to fontawesome 6 and replace restart icon - change repeat icon for recent activities - moved user bookmarks (favorites) to top nav - fix totp seconds window (leeway) - new migration to fix remaining user preferences with dots in name - remove duplicate named column in user screen - unify and added translations - added missing filter and tags to InvoiceSecurity
48 lines
1.5 KiB
PHP
48 lines
1.5 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\ListUserCommand;
|
|
use App\Repository\UserRepository;
|
|
use Symfony\Bundle\FrameworkBundle\Console\Application;
|
|
use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase;
|
|
use Symfony\Component\Console\Tester\CommandTester;
|
|
|
|
/**
|
|
* @covers \App\Command\ListUserCommand
|
|
* @group integration
|
|
*/
|
|
class ListUserCommandTest extends KernelTestCase
|
|
{
|
|
public function testWithPlugins(): void
|
|
{
|
|
$commandTester = $this->getCommandTester();
|
|
$output = $commandTester->getDisplay();
|
|
$this->assertStringContainsString('Username Email Roles Active PW Reset', $output);
|
|
$this->assertStringContainsString('---------- ------- ------- -------- ----------', $output);
|
|
}
|
|
|
|
protected function getCommandTester(): CommandTester
|
|
{
|
|
$repository = $this->createMock(UserRepository::class);
|
|
$repository->method('findAll')->willReturn([]);
|
|
|
|
$kernel = self::bootKernel();
|
|
$application = new Application($kernel);
|
|
$application->add(new ListUserCommand($repository));
|
|
|
|
$command = $application->find('kimai:user:list');
|
|
$commandTester = new CommandTester($command);
|
|
$inputs = array_merge(['command' => $command->getName()], []);
|
|
$commandTester->execute($inputs);
|
|
|
|
return $commandTester;
|
|
}
|
|
}
|