Files
wallabag/tests/Command/ExportCommandTest.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

70 lines
2.1 KiB
PHP

<?php
namespace App\Tests\Command;
use App\Tests\WallabagCoreTestCase;
use Symfony\Bundle\FrameworkBundle\Console\Application;
use Symfony\Component\Console\Exception\RuntimeException;
use Symfony\Component\Console\Tester\CommandTester;
class ExportCommandTest extends WallabagCoreTestCase
{
public function testExportCommandWithoutUsername()
{
$this->expectException(RuntimeException::class);
$this->expectExceptionMessage('Not enough arguments (missing: "username")');
$application = new Application($this->getTestClient()->getKernel());
$command = $application->find('wallabag:export');
$tester = new CommandTester($command);
$tester->execute([]);
}
public function testExportCommandWithBadUsername()
{
$application = new Application($this->getTestClient()->getKernel());
$command = $application->find('wallabag:export');
$tester = new CommandTester($command);
$tester->execute([
'username' => 'unknown',
]);
$this->assertStringContainsString('User "unknown" not found', $tester->getDisplay());
}
public function testExportCommand()
{
$application = new Application($this->getTestClient()->getKernel());
$command = $application->find('wallabag:export');
$tester = new CommandTester($command);
$tester->execute([
'username' => 'admin',
]);
$this->assertStringContainsString('Exporting 5 entrie(s) for user admin...', $tester->getDisplay());
$this->assertStringContainsString('Done', $tester->getDisplay());
$this->assertFileExists('admin-export.json');
}
public function testExportCommandWithSpecialPath()
{
$application = new Application($this->getTestClient()->getKernel());
$command = $application->find('wallabag:export');
$tester = new CommandTester($command);
$tester->execute([
'username' => 'admin',
'filepath' => 'specialexport.json',
]);
$this->assertFileExists('specialexport.json');
}
}