wallabag/tests/Wallabag/CoreBundle/Command/CleanDuplicatesCommandTest.php

101 lines
3.4 KiB
PHP
Raw Normal View History

<?php
namespace Tests\Wallabag\CoreBundle\Command;
2022-08-28 00:01:46 +00:00
use Doctrine\ORM\EntityManagerInterface;
use Symfony\Bundle\FrameworkBundle\Console\Application;
use Symfony\Component\Console\Tester\CommandTester;
use Tests\Wallabag\CoreBundle\WallabagCoreTestCase;
2017-05-05 12:33:36 +00:00
use Wallabag\CoreBundle\Entity\Entry;
2022-08-25 19:37:10 +00:00
use Wallabag\UserBundle\Entity\User;
class CleanDuplicatesCommandTest extends WallabagCoreTestCase
{
2017-05-05 12:54:03 +00:00
public function testRunCleanDuplicates()
{
$application = new Application($this->getTestClient()->getKernel());
$command = $application->find('wallabag:clean-duplicates');
$tester = new CommandTester($command);
2022-09-03 00:28:07 +00:00
$tester->execute([]);
2020-06-15 11:37:50 +00:00
$this->assertStringContainsString('Cleaning through 3 user accounts', $tester->getDisplay());
$this->assertStringContainsString('Finished cleaning. 0 duplicates found in total', $tester->getDisplay());
}
2017-05-05 12:54:03 +00:00
public function testRunCleanDuplicatesCommandWithBadUsername()
{
$application = new Application($this->getTestClient()->getKernel());
$command = $application->find('wallabag:clean-duplicates');
$tester = new CommandTester($command);
$tester->execute([
'username' => 'unknown',
]);
2020-06-15 11:37:50 +00:00
$this->assertStringContainsString('User "unknown" not found', $tester->getDisplay());
}
2017-05-05 12:54:03 +00:00
public function testRunCleanDuplicatesCommandForUser()
{
$application = new Application($this->getTestClient()->getKernel());
$command = $application->find('wallabag:clean-duplicates');
$tester = new CommandTester($command);
$tester->execute([
'username' => 'admin',
]);
2020-06-15 11:37:50 +00:00
$this->assertStringContainsString('Cleaned 0 duplicates for user admin', $tester->getDisplay());
}
2017-05-05 12:33:36 +00:00
public function testDuplicate()
{
2018-06-06 15:34:20 +00:00
$url = 'https://www.lemonde.fr/sport/visuel/2017/05/05/rondelle-prison-blanchissage-comprendre-le-hockey-sur-glace_5122587_3242.html';
$client = $this->getTestClient();
2022-08-28 00:01:46 +00:00
$em = $client->getContainer()->get(EntityManagerInterface::class);
2017-05-05 12:33:36 +00:00
$this->logInAs('admin');
2022-08-25 19:37:10 +00:00
$nbEntries = $em->getRepository(Entry::class)->findAllByUrlAndUserId($url, $this->getLoggedInUserId());
2017-05-05 12:33:36 +00:00
$this->assertCount(0, $nbEntries);
2022-08-25 19:37:10 +00:00
$user = $em->getRepository(User::class)->findOneById($this->getLoggedInUserId());
2017-05-05 12:33:36 +00:00
$entry1 = new Entry($user);
$entry1->setUrl($url);
$entry2 = new Entry($user);
$entry2->setUrl($url);
$em->persist($entry1);
$em->persist($entry2);
$em->flush();
2022-08-25 19:37:10 +00:00
$nbEntries = $em->getRepository(Entry::class)->findAllByUrlAndUserId($url, $this->getLoggedInUserId());
2017-05-05 12:33:36 +00:00
$this->assertCount(2, $nbEntries);
$application = new Application($this->getTestClient()->getKernel());
2017-05-05 12:33:36 +00:00
$command = $application->find('wallabag:clean-duplicates');
$tester = new CommandTester($command);
$tester->execute([
'username' => 'admin',
]);
2020-06-15 11:37:50 +00:00
$this->assertStringContainsString('Cleaned 1 duplicates for user admin', $tester->getDisplay());
2017-05-05 12:33:36 +00:00
2022-08-25 19:37:10 +00:00
$nbEntries = $em->getRepository(Entry::class)->findAllByUrlAndUserId($url, $this->getLoggedInUserId());
2017-05-05 12:33:36 +00:00
$this->assertCount(1, $nbEntries);
2017-05-05 13:20:58 +00:00
$query = $em->createQuery('DELETE FROM Wallabag\CoreBundle\Entity\Entry e WHERE e.url = :url');
$query->setParameter('url', $url);
$query->execute();
2017-05-05 12:33:36 +00:00
}
}