2016-09-11 19:40:08 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Tests\Wallabag\ImportBundle\Command;
|
|
|
|
|
2022-08-28 14:59:43 +00:00
|
|
|
use Doctrine\ORM\NoResultException;
|
2016-09-11 19:40:08 +00:00
|
|
|
use Symfony\Bundle\FrameworkBundle\Console\Application;
|
2022-08-28 14:59:43 +00:00
|
|
|
use Symfony\Component\Config\Definition\Exception\Exception;
|
|
|
|
use Symfony\Component\Console\Exception\RuntimeException;
|
2016-09-11 19:40:08 +00:00
|
|
|
use Symfony\Component\Console\Tester\CommandTester;
|
|
|
|
use Tests\Wallabag\CoreBundle\WallabagCoreTestCase;
|
|
|
|
|
|
|
|
class ImportCommandTest extends WallabagCoreTestCase
|
|
|
|
{
|
|
|
|
public function testRunImportCommandWithoutArguments()
|
|
|
|
{
|
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');
|
|
|
|
|
2022-11-23 16:09:32 +00:00
|
|
|
$application = new Application($this->getTestClient()->getKernel());
|
2016-09-11 19:40:08 +00:00
|
|
|
|
|
|
|
$command = $application->find('wallabag:import');
|
|
|
|
|
|
|
|
$tester = new CommandTester($command);
|
2022-09-03 00:28:07 +00:00
|
|
|
$tester->execute([]);
|
2016-09-11 19:40:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testRunImportCommandWithoutFilepath()
|
|
|
|
{
|
2022-08-28 14:59:43 +00:00
|
|
|
$this->expectException(Exception::class);
|
2020-06-15 11:37:50 +00:00
|
|
|
$this->expectExceptionMessage('not found');
|
|
|
|
|
2022-11-23 16:09:32 +00:00
|
|
|
$application = new Application($this->getTestClient()->getKernel());
|
2016-09-11 19:40:08 +00:00
|
|
|
|
|
|
|
$command = $application->find('wallabag:import');
|
|
|
|
|
|
|
|
$tester = new CommandTester($command);
|
|
|
|
$tester->execute([
|
2017-05-04 09:53:44 +00:00
|
|
|
'username' => 'admin',
|
2016-09-11 19:40:08 +00:00
|
|
|
'filepath' => 1,
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
2017-05-04 09:53:44 +00:00
|
|
|
public function testRunImportCommandWithWrongUsername()
|
2016-09-11 19:40:08 +00:00
|
|
|
{
|
2022-08-28 14:59:43 +00:00
|
|
|
$this->expectException(NoResultException::class);
|
2020-06-15 11:37:50 +00:00
|
|
|
|
2022-11-23 16:09:32 +00:00
|
|
|
$application = new Application($this->getTestClient()->getKernel());
|
2016-09-11 19:40:08 +00:00
|
|
|
|
|
|
|
$command = $application->find('wallabag:import');
|
|
|
|
|
|
|
|
$tester = new CommandTester($command);
|
|
|
|
$tester->execute([
|
2017-05-04 09:53:44 +00:00
|
|
|
'username' => 'random',
|
2016-09-11 19:40:08 +00:00
|
|
|
'filepath' => './',
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testRunImportCommand()
|
|
|
|
{
|
2022-11-23 16:09:32 +00:00
|
|
|
$application = new Application($this->getTestClient()->getKernel());
|
2016-09-11 19:40:08 +00:00
|
|
|
|
|
|
|
$command = $application->find('wallabag:import');
|
|
|
|
|
|
|
|
$tester = new CommandTester($command);
|
|
|
|
$tester->execute([
|
2017-05-04 09:53:44 +00:00
|
|
|
'username' => 'admin',
|
2017-10-13 21:52:15 +00:00
|
|
|
'filepath' => $application->getKernel()->getContainer()->getParameter('kernel.project_dir') . '/tests/Wallabag/ImportBundle/fixtures/wallabag-v2-read.json',
|
2016-09-11 19:40:08 +00:00
|
|
|
'--importer' => 'v2',
|
|
|
|
]);
|
|
|
|
|
2020-06-15 11:37:50 +00:00
|
|
|
$this->assertStringContainsString('imported', $tester->getDisplay());
|
|
|
|
$this->assertStringContainsString('already saved', $tester->getDisplay());
|
2016-09-11 19:40:08 +00:00
|
|
|
}
|
2017-05-04 09:53:44 +00:00
|
|
|
|
|
|
|
public function testRunImportCommandWithUserId()
|
|
|
|
{
|
2018-11-26 21:22:49 +00:00
|
|
|
$this->logInAs('admin');
|
|
|
|
|
2022-11-23 16:09:32 +00:00
|
|
|
$application = new Application($this->getTestClient()->getKernel());
|
2017-05-04 09:53:44 +00:00
|
|
|
|
|
|
|
$command = $application->find('wallabag:import');
|
|
|
|
|
|
|
|
$tester = new CommandTester($command);
|
|
|
|
$tester->execute([
|
2018-11-26 21:22:49 +00:00
|
|
|
'username' => $this->getLoggedInUserId(),
|
2017-10-13 21:52:15 +00:00
|
|
|
'filepath' => $application->getKernel()->getContainer()->getParameter('kernel.project_dir') . '/tests/Wallabag/ImportBundle/fixtures/wallabag-v2-read.json',
|
2017-05-04 09:53:44 +00:00
|
|
|
'--useUserId' => true,
|
2017-05-15 18:47:59 +00:00
|
|
|
'--importer' => 'v2',
|
2017-05-04 09:53:44 +00:00
|
|
|
]);
|
2017-12-18 09:29:42 +00:00
|
|
|
|
2020-06-15 11:37:50 +00:00
|
|
|
$this->assertStringContainsString('imported', $tester->getDisplay());
|
|
|
|
$this->assertStringContainsString('already saved', $tester->getDisplay());
|
2017-05-04 09:53:44 +00:00
|
|
|
}
|
2016-09-11 19:40:08 +00:00
|
|
|
}
|