2017-01-22 11:51:14 +00:00
|
|
|
<?php
|
|
|
|
|
2024-02-19 00:30:12 +00:00
|
|
|
namespace Tests\Wallabag\Command;
|
2017-01-22 11:51:14 +00:00
|
|
|
|
|
|
|
use Symfony\Bundle\FrameworkBundle\Console\Application;
|
2022-08-28 14:59:43 +00:00
|
|
|
use Symfony\Component\Console\Exception\RuntimeException;
|
2017-01-22 11:51:14 +00:00
|
|
|
use Symfony\Component\Console\Tester\CommandTester;
|
2024-02-19 00:30:12 +00:00
|
|
|
use Tests\Wallabag\WallabagCoreTestCase;
|
2017-01-22 11:51:14 +00:00
|
|
|
|
|
|
|
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")');
|
|
|
|
|
2022-11-23 16:09:32 +00:00
|
|
|
$application = new Application($this->getTestClient()->getKernel());
|
2017-01-22 11:51:14 +00:00
|
|
|
|
|
|
|
$command = $application->find('wallabag:export');
|
|
|
|
|
|
|
|
$tester = new CommandTester($command);
|
2022-09-03 00:28:07 +00:00
|
|
|
$tester->execute([]);
|
2017-01-22 11:51:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testExportCommandWithBadUsername()
|
|
|
|
{
|
2022-11-23 16:09:32 +00:00
|
|
|
$application = new Application($this->getTestClient()->getKernel());
|
2017-01-22 11:51:14 +00:00
|
|
|
|
|
|
|
$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());
|
2017-01-22 11:51:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testExportCommand()
|
|
|
|
{
|
2022-11-23 16:09:32 +00:00
|
|
|
$application = new Application($this->getTestClient()->getKernel());
|
2017-01-22 11:51:14 +00:00
|
|
|
|
|
|
|
$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');
|
2017-01-22 11:51:14 +00:00
|
|
|
}
|
2017-01-22 12:19:46 +00:00
|
|
|
|
|
|
|
public function testExportCommandWithSpecialPath()
|
|
|
|
{
|
2022-11-23 16:09:32 +00:00
|
|
|
$application = new Application($this->getTestClient()->getKernel());
|
2017-01-22 12:19:46 +00:00
|
|
|
|
|
|
|
$command = $application->find('wallabag:export');
|
|
|
|
|
|
|
|
$tester = new CommandTester($command);
|
|
|
|
$tester->execute([
|
|
|
|
'username' => 'admin',
|
2017-05-05 12:33:36 +00:00
|
|
|
'filepath' => 'specialexport.json',
|
2017-01-22 12:19:46 +00:00
|
|
|
]);
|
|
|
|
|
|
|
|
$this->assertFileExists('specialexport.json');
|
|
|
|
}
|
2017-01-22 11:51:14 +00:00
|
|
|
}
|