aboutsummaryrefslogblamecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Tests/Command/TagAllCommandTest.php
blob: 653c1a93e68381785528af5f194dd53c5bcac3d7 (plain) (tree)



























































                                                                                                     
<?php

namespace Wallabag\CoreBundle\Tests\Command;

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

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

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

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

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

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

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

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

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

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

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

        $this->assertContains('Tagging entries for user « admin »... Done', $tester->getDisplay());
    }
}