2017-03-30 15:02:10 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Tests\Wallabag\CoreBundle\Command;
|
|
|
|
|
|
|
|
use Symfony\Bundle\FrameworkBundle\Console\Application;
|
|
|
|
use Symfony\Component\Console\Tester\CommandTester;
|
|
|
|
use Wallabag\CoreBundle\Command\CleanDuplicatesCommand;
|
|
|
|
use Tests\Wallabag\CoreBundle\WallabagCoreTestCase;
|
2017-05-05 12:33:36 +00:00
|
|
|
use Wallabag\CoreBundle\Entity\Entry;
|
2017-03-30 15:02:10 +00:00
|
|
|
|
|
|
|
class CleanDuplicatesCommandTest extends WallabagCoreTestCase
|
|
|
|
{
|
2017-05-05 12:33:36 +00:00
|
|
|
public function testTagAll()
|
2017-03-30 15:02:10 +00:00
|
|
|
{
|
|
|
|
$application = new Application($this->getClient()->getKernel());
|
|
|
|
$application->add(new CleanDuplicatesCommand());
|
|
|
|
|
|
|
|
$command = $application->find('wallabag:clean-duplicates');
|
|
|
|
|
|
|
|
$tester = new CommandTester($command);
|
|
|
|
$tester->execute([
|
|
|
|
'command' => $command->getName(),
|
|
|
|
]);
|
|
|
|
|
|
|
|
$this->assertContains('Cleaning through 3 user accounts', $tester->getDisplay());
|
|
|
|
$this->assertContains('Finished cleaning. 0 duplicates found in total', $tester->getDisplay());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testRunTagAllCommandWithBadUsername()
|
|
|
|
{
|
|
|
|
$application = new Application($this->getClient()->getKernel());
|
|
|
|
$application->add(new CleanDuplicatesCommand());
|
|
|
|
|
|
|
|
$command = $application->find('wallabag:clean-duplicates');
|
|
|
|
|
|
|
|
$tester = new CommandTester($command);
|
|
|
|
$tester->execute([
|
|
|
|
'command' => $command->getName(),
|
|
|
|
'username' => 'unknown',
|
|
|
|
]);
|
|
|
|
|
|
|
|
$this->assertContains('User "unknown" not found', $tester->getDisplay());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testRunTagAllCommandForUser()
|
|
|
|
{
|
|
|
|
$application = new Application($this->getClient()->getKernel());
|
|
|
|
$application->add(new CleanDuplicatesCommand());
|
|
|
|
|
|
|
|
$command = $application->find('wallabag:clean-duplicates');
|
|
|
|
|
|
|
|
$tester = new CommandTester($command);
|
|
|
|
$tester->execute([
|
|
|
|
'command' => $command->getName(),
|
|
|
|
'username' => 'admin',
|
|
|
|
]);
|
|
|
|
|
|
|
|
$this->assertContains('Cleaned 0 duplicates for user admin', $tester->getDisplay());
|
|
|
|
}
|
2017-05-05 12:33:36 +00:00
|
|
|
|
|
|
|
public function testDuplicate()
|
|
|
|
{
|
|
|
|
$url = 'http://www.lemonde.fr/sport/visuel/2017/05/05/rondelle-prison-blanchissage-comprendre-le-hockey-sur-glace_5122587_3242.html';
|
|
|
|
$client = $this->getClient();
|
|
|
|
$em = $client->getContainer()->get('doctrine.orm.entity_manager');
|
|
|
|
|
|
|
|
$this->logInAs('admin');
|
|
|
|
|
|
|
|
$nbEntries = $em->getRepository('WallabagCoreBundle:Entry')->findAllByUrlAndUserId($url, $this->getLoggedInUserId());
|
|
|
|
$this->assertCount(0, $nbEntries);
|
|
|
|
|
|
|
|
$user = $em->getRepository('WallabagUserBundle:User')->findOneById($this->getLoggedInUserId());
|
|
|
|
|
|
|
|
$entry1 = new Entry($user);
|
|
|
|
$entry1->setUrl($url);
|
|
|
|
|
|
|
|
$entry2 = new Entry($user);
|
|
|
|
$entry2->setUrl($url);
|
|
|
|
|
|
|
|
$em->persist($entry1);
|
|
|
|
$em->persist($entry2);
|
|
|
|
|
|
|
|
$em->flush();
|
|
|
|
|
|
|
|
$nbEntries = $em->getRepository('WallabagCoreBundle:Entry')->findAllByUrlAndUserId($url, $this->getLoggedInUserId());
|
|
|
|
$this->assertCount(2, $nbEntries);
|
|
|
|
|
|
|
|
$application = new Application($this->getClient()->getKernel());
|
|
|
|
$application->add(new CleanDuplicatesCommand());
|
|
|
|
|
|
|
|
$command = $application->find('wallabag:clean-duplicates');
|
|
|
|
|
|
|
|
$tester = new CommandTester($command);
|
|
|
|
$tester->execute([
|
|
|
|
'command' => $command->getName(),
|
|
|
|
'username' => 'admin',
|
|
|
|
]);
|
|
|
|
|
|
|
|
$this->assertContains('Cleaned 1 duplicates for user admin', $tester->getDisplay());
|
|
|
|
|
|
|
|
$nbEntries = $em->getRepository('WallabagCoreBundle:Entry')->findAllByUrlAndUserId($url, $this->getLoggedInUserId());
|
|
|
|
$this->assertCount(1, $nbEntries);
|
|
|
|
}
|
2017-03-30 15:02:10 +00:00
|
|
|
}
|