wallabag/tests/Wallabag/CoreBundle/Command/ExportCommandTest.php

70 lines
2.1 KiB
PHP
Raw Normal View History

<?php
namespace Tests\Wallabag\CoreBundle\Command;
use Symfony\Bundle\FrameworkBundle\Console\Application;
2022-08-28 14:59:43 +00:00
use Symfony\Component\Console\Exception\RuntimeException;
use Symfony\Component\Console\Tester\CommandTester;
use Tests\Wallabag\CoreBundle\WallabagCoreTestCase;
class ExportCommandTest extends WallabagCoreTestCase
{
public function testExportCommandWithoutUsername()
{
2022-08-28 14:59:43 +00:00
$this->expectException(RuntimeException::class);
2020-06-15 11:37:50 +00:00
$this->expectExceptionMessage('Not enough arguments (missing: "username")');
$application = new Application($this->getTestClient()->getKernel());
$command = $application->find('wallabag:export');
$tester = new CommandTester($command);
2022-09-03 00:28:07 +00:00
$tester->execute([]);
}
public function testExportCommandWithBadUsername()
{
$application = new Application($this->getTestClient()->getKernel());
$command = $application->find('wallabag:export');
$tester = new CommandTester($command);
$tester->execute([
'username' => 'unknown',
]);
2020-06-15 11:37:50 +00:00
$this->assertStringContainsString('User "unknown" not found', $tester->getDisplay());
}
public function testExportCommand()
{
$application = new Application($this->getTestClient()->getKernel());
$command = $application->find('wallabag:export');
$tester = new CommandTester($command);
$tester->execute([
'username' => 'admin',
]);
2020-06-15 11:37:50 +00:00
$this->assertStringContainsString('Exporting 5 entrie(s) for user admin...', $tester->getDisplay());
$this->assertStringContainsString('Done', $tester->getDisplay());
2017-01-24 19:42:02 +00:00
$this->assertFileExists('admin-export.json');
}
public function testExportCommandWithSpecialPath()
{
$application = new Application($this->getTestClient()->getKernel());
$command = $application->find('wallabag:export');
$tester = new CommandTester($command);
$tester->execute([
'username' => 'admin',
2017-05-05 12:33:36 +00:00
'filepath' => 'specialexport.json',
]);
$this->assertFileExists('specialexport.json');
}
}