aboutsummaryrefslogblamecommitdiffhomepage
path: root/tests/Wallabag/CoreBundle/Command/ExportCommandTest.php
blob: 41491838b330f79c4be1a3dfe6f2e59616a43076 (plain) (tree)



























































                                                                                                           
<?php

namespace Tests\Wallabag\CoreBundle\Command;

use Symfony\Bundle\FrameworkBundle\Console\Application;
use Symfony\Component\Console\Tester\CommandTester;
use Wallabag\CoreBundle\Command\ExportCommand;
use Tests\Wallabag\CoreBundle\WallabagCoreTestCase;

class ExportCommandTest extends WallabagCoreTestCase
{
    /**
     * @expectedException Symfony\Component\Console\Exception\RuntimeException
     * @expectedExceptionMessage Not enough arguments (missing: "username")
     */
    public function testExportCommandWithoutUsername()
    {
        $application = new Application($this->getClient()->getKernel());
        $application->add(new ExportCommand());

        $command = $application->find('wallabag:export');

        $tester = new CommandTester($command);
        $tester->execute([
            'command' => $command->getName(),
        ]);
    }

    public function testExportCommandWithBadUsername()
    {
        $application = new Application($this->getClient()->getKernel());
        $application->add(new ExportCommand());

        $command = $application->find('wallabag:export');

        $tester = new CommandTester($command);
        $tester->execute([
            'command' => $command->getName(),
            'username' => 'unknown',
        ]);

        $this->assertContains('User "unknown" not found', $tester->getDisplay());
    }

    public function testExportCommand()
    {
        $application = new Application($this->getClient()->getKernel());
        $application->add(new ExportCommand());

        $command = $application->find('wallabag:export');

        $tester = new CommandTester($command);
        $tester->execute([
            'command' => $command->getName(),
            'username' => 'admin',
        ]);

        $this->assertContains('Exporting 6 entrie(s) for user « admin »... Done', $tester->getDisplay());
    }
}