mirror of
https://github.com/wallabag/wallabag.git
synced 2024-12-16 18:30:17 +01:00
54 lines
1.6 KiB
PHP
54 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace Tests\Wallabag\Command;
|
|
|
|
use Symfony\Bundle\FrameworkBundle\Console\Application;
|
|
use Symfony\Component\Console\Exception\RuntimeException;
|
|
use Symfony\Component\Console\Tester\CommandTester;
|
|
use Tests\Wallabag\WallabagTestCase;
|
|
|
|
class TagAllCommandTest extends WallabagTestCase
|
|
{
|
|
public function testRunTagAllCommandWithoutUsername()
|
|
{
|
|
$this->expectException(RuntimeException::class);
|
|
$this->expectExceptionMessage('Not enough arguments (missing: "username")');
|
|
|
|
$application = new Application($this->getTestClient()->getKernel());
|
|
|
|
$command = $application->find('wallabag:tag:all');
|
|
|
|
$tester = new CommandTester($command);
|
|
$tester->execute([]);
|
|
}
|
|
|
|
public function testRunTagAllCommandWithBadUsername()
|
|
{
|
|
$application = new Application($this->getTestClient()->getKernel());
|
|
|
|
$command = $application->find('wallabag:tag:all');
|
|
|
|
$tester = new CommandTester($command);
|
|
$tester->execute([
|
|
'username' => 'unknown',
|
|
]);
|
|
|
|
$this->assertStringContainsString('User "unknown" not found', $tester->getDisplay());
|
|
}
|
|
|
|
public function testRunTagAllCommand()
|
|
{
|
|
$application = new Application($this->getTestClient()->getKernel());
|
|
|
|
$command = $application->find('wallabag:tag:all');
|
|
|
|
$tester = new CommandTester($command);
|
|
$tester->execute([
|
|
'username' => 'admin',
|
|
]);
|
|
|
|
$this->assertStringContainsString('Tagging entries for user admin...', $tester->getDisplay());
|
|
$this->assertStringContainsString('Done', $tester->getDisplay());
|
|
}
|
|
}
|