wallabag/tests/Wallabag/ImportBundle/Command/ImportCommandTest.php

95 lines
3.1 KiB
PHP
Raw Normal View History

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');
$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');
$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([
'username' => 'admin',
2016-09-11 19:40:08 +00:00
'filepath' => 1,
]);
}
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
$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([
'username' => 'random',
2016-09-11 19:40:08 +00:00
'filepath' => './',
]);
}
public function testRunImportCommand()
{
$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([
'username' => 'admin',
'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
}
public function testRunImportCommandWithUserId()
{
2018-11-26 21:22:49 +00:00
$this->logInAs('admin');
$application = new Application($this->getTestClient()->getKernel());
$command = $application->find('wallabag:import');
$tester = new CommandTester($command);
$tester->execute([
2018-11-26 21:22:49 +00:00
'username' => $this->getLoggedInUserId(),
'filepath' => $application->getKernel()->getContainer()->getParameter('kernel.project_dir') . '/tests/Wallabag/ImportBundle/fixtures/wallabag-v2-read.json',
'--useUserId' => true,
'--importer' => 'v2',
]);
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());
}
2016-09-11 19:40:08 +00:00
}