2016-09-11 19:40:08 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Tests\Wallabag\ImportBundle\Command;
|
|
|
|
|
|
|
|
use Symfony\Bundle\FrameworkBundle\Console\Application;
|
|
|
|
use Symfony\Component\Console\Tester\CommandTester;
|
|
|
|
use Tests\Wallabag\CoreBundle\WallabagCoreTestCase;
|
2017-07-01 07:52:38 +00:00
|
|
|
use Wallabag\ImportBundle\Command\ImportCommand;
|
2016-09-11 19:40:08 +00:00
|
|
|
|
|
|
|
class ImportCommandTest extends WallabagCoreTestCase
|
|
|
|
{
|
|
|
|
/**
|
2017-05-04 09:53:44 +00:00
|
|
|
* @expectedException \Symfony\Component\Console\Exception\RuntimeException
|
2016-09-11 19:40:08 +00:00
|
|
|
* @expectedExceptionMessage Not enough arguments
|
|
|
|
*/
|
|
|
|
public function testRunImportCommandWithoutArguments()
|
|
|
|
{
|
|
|
|
$application = new Application($this->getClient()->getKernel());
|
|
|
|
$application->add(new ImportCommand());
|
|
|
|
|
|
|
|
$command = $application->find('wallabag:import');
|
|
|
|
|
|
|
|
$tester = new CommandTester($command);
|
|
|
|
$tester->execute([
|
|
|
|
'command' => $command->getName(),
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-05-04 09:53:44 +00:00
|
|
|
* @expectedException \Symfony\Component\Config\Definition\Exception\Exception
|
2016-09-11 19:40:08 +00:00
|
|
|
* @expectedExceptionMessage not found
|
|
|
|
*/
|
|
|
|
public function testRunImportCommandWithoutFilepath()
|
|
|
|
{
|
|
|
|
$application = new Application($this->getClient()->getKernel());
|
|
|
|
$application->add(new ImportCommand());
|
|
|
|
|
|
|
|
$command = $application->find('wallabag:import');
|
|
|
|
|
|
|
|
$tester = new CommandTester($command);
|
|
|
|
$tester->execute([
|
|
|
|
'command' => $command->getName(),
|
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
|
|
|
* @expectedException \Doctrine\ORM\NoResultException
|
2016-09-11 19:40:08 +00:00
|
|
|
*/
|
2017-05-04 09:53:44 +00:00
|
|
|
public function testRunImportCommandWithWrongUsername()
|
2016-09-11 19:40:08 +00:00
|
|
|
{
|
|
|
|
$application = new Application($this->getClient()->getKernel());
|
|
|
|
$application->add(new ImportCommand());
|
|
|
|
|
|
|
|
$command = $application->find('wallabag:import');
|
|
|
|
|
|
|
|
$tester = new CommandTester($command);
|
|
|
|
$tester->execute([
|
|
|
|
'command' => $command->getName(),
|
2017-05-04 09:53:44 +00:00
|
|
|
'username' => 'random',
|
2016-09-11 19:40:08 +00:00
|
|
|
'filepath' => './',
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testRunImportCommand()
|
|
|
|
{
|
|
|
|
$application = new Application($this->getClient()->getKernel());
|
|
|
|
$application->add(new ImportCommand());
|
|
|
|
|
|
|
|
$command = $application->find('wallabag:import');
|
|
|
|
|
|
|
|
$tester = new CommandTester($command);
|
|
|
|
$tester->execute([
|
|
|
|
'command' => $command->getName(),
|
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',
|
|
|
|
]);
|
|
|
|
|
|
|
|
$this->assertContains('imported', $tester->getDisplay());
|
|
|
|
$this->assertContains('already saved', $tester->getDisplay());
|
|
|
|
}
|
2017-05-04 09:53:44 +00:00
|
|
|
|
|
|
|
public function testRunImportCommandWithUserId()
|
|
|
|
{
|
|
|
|
$application = new Application($this->getClient()->getKernel());
|
|
|
|
$application->add(new ImportCommand());
|
|
|
|
|
|
|
|
$command = $application->find('wallabag:import');
|
|
|
|
|
|
|
|
$tester = new CommandTester($command);
|
|
|
|
$tester->execute([
|
|
|
|
'command' => $command->getName(),
|
|
|
|
'username' => 1,
|
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
|
|
|
]);
|
|
|
|
}
|
2016-09-11 19:40:08 +00:00
|
|
|
}
|