Files
wallabag/tests/Command/ImportCommandTest.php
Jeremy Benoist 6b5a518ce2 Move to Symfony Flex
The structure changed completely.
Bundles are gone. Everything is flatten in the folder `src`.
I separated import & api controllers to avoid _pollution_ in the main controller folder.
2023-07-28 09:35:07 +02:00

95 lines
3.0 KiB
PHP

<?php
namespace App\Tests\Command;
use App\Tests\WallabagCoreTestCase;
use Doctrine\ORM\NoResultException;
use Symfony\Bundle\FrameworkBundle\Console\Application;
use Symfony\Component\Config\Definition\Exception\Exception;
use Symfony\Component\Console\Exception\RuntimeException;
use Symfony\Component\Console\Tester\CommandTester;
class ImportCommandTest extends WallabagCoreTestCase
{
public function testRunImportCommandWithoutArguments()
{
$this->expectException(RuntimeException::class);
$this->expectExceptionMessage('Not enough arguments');
$application = new Application($this->getTestClient()->getKernel());
$command = $application->find('wallabag:import');
$tester = new CommandTester($command);
$tester->execute([]);
}
public function testRunImportCommandWithoutFilepath()
{
$this->expectException(Exception::class);
$this->expectExceptionMessage('not found');
$application = new Application($this->getTestClient()->getKernel());
$command = $application->find('wallabag:import');
$tester = new CommandTester($command);
$tester->execute([
'username' => 'admin',
'filepath' => 1,
]);
}
public function testRunImportCommandWithWrongUsername()
{
$this->expectException(NoResultException::class);
$application = new Application($this->getTestClient()->getKernel());
$command = $application->find('wallabag:import');
$tester = new CommandTester($command);
$tester->execute([
'username' => 'random',
'filepath' => './',
]);
}
public function testRunImportCommand()
{
$application = new Application($this->getTestClient()->getKernel());
$command = $application->find('wallabag:import');
$tester = new CommandTester($command);
$tester->execute([
'username' => 'admin',
'filepath' => $application->getKernel()->getContainer()->getParameter('kernel.project_dir') . '/tests/fixtures/wallabag-v2-read.json',
'--importer' => 'v2',
]);
$this->assertStringContainsString('imported', $tester->getDisplay());
$this->assertStringContainsString('already saved', $tester->getDisplay());
}
public function testRunImportCommandWithUserId()
{
$this->logInAs('admin');
$application = new Application($this->getTestClient()->getKernel());
$command = $application->find('wallabag:import');
$tester = new CommandTester($command);
$tester->execute([
'username' => $this->getLoggedInUserId(),
'filepath' => $application->getKernel()->getContainer()->getParameter('kernel.project_dir') . '/tests/fixtures/wallabag-v2-read.json',
'--useUserId' => true,
'--importer' => 'v2',
]);
$this->assertStringContainsString('imported', $tester->getDisplay());
$this->assertStringContainsString('already saved', $tester->getDisplay());
}
}