Files
wallabag/tests/Command/ListUserCommandTest.php
Jeremy Benoist 6b5a518ce2 Move to Symfony Flex
The structure changed completely.
Bundles are gone. Everything is flatten in the folder `src`.
I separated import & api controllers to avoid _pollution_ in the main controller folder.
2023-07-28 09:35:07 +02:00

66 lines
1.9 KiB
PHP

<?php
namespace App\Tests\Command;
use App\Tests\WallabagCoreTestCase;
use Symfony\Bundle\FrameworkBundle\Console\Application;
use Symfony\Component\Console\Tester\CommandTester;
class ListUserCommandTest extends WallabagCoreTestCase
{
public function testRunListUserCommand()
{
$application = new Application($this->getTestClient()->getKernel());
$command = $application->find('wallabag:user:list');
$tester = new CommandTester($command);
$tester->execute([]);
$this->assertStringContainsString('3/3 user(s) displayed.', $tester->getDisplay());
}
public function testRunListUserCommandWithLimit()
{
$application = new Application($this->getTestClient()->getKernel());
$command = $application->find('wallabag:user:list');
$tester = new CommandTester($command);
$tester->execute([
'--limit' => 2,
]);
$this->assertStringContainsString('2/3 user(s) displayed.', $tester->getDisplay());
}
public function testRunListUserCommandWithSearch()
{
$application = new Application($this->getTestClient()->getKernel());
$command = $application->find('wallabag:user:list');
$tester = new CommandTester($command);
$tester->execute([
'search' => 'boss',
]);
$this->assertStringContainsString('1/3 (filtered) user(s) displayed.', $tester->getDisplay());
}
public function testRunListUserCommandWithSearchAndLimit()
{
$application = new Application($this->getTestClient()->getKernel());
$command = $application->find('wallabag:user:list');
$tester = new CommandTester($command);
$tester->execute([
'search' => 'bo',
'--limit' => 1,
]);
$this->assertStringContainsString('1/3 (filtered) user(s) displayed.', $tester->getDisplay());
}
}