2017-03-30 15:02:10 +00:00
|
|
|
<?php
|
|
|
|
|
2024-02-19 00:30:12 +00:00
|
|
|
namespace Tests\Wallabag\Command;
|
2017-03-30 15:02:10 +00:00
|
|
|
|
2022-08-28 00:01:46 +00:00
|
|
|
use Doctrine\ORM\EntityManagerInterface;
|
2017-03-30 15:02:10 +00:00
|
|
|
use Symfony\Bundle\FrameworkBundle\Console\Application;
|
|
|
|
use Symfony\Component\Console\Tester\CommandTester;
|
2024-02-24 19:24:51 +00:00
|
|
|
use Tests\Wallabag\WallabagTestCase;
|
2024-02-19 00:30:12 +00:00
|
|
|
use Wallabag\Entity\Entry;
|
|
|
|
use Wallabag\Entity\User;
|
2017-03-30 15:02:10 +00:00
|
|
|
|
2024-02-24 19:24:51 +00:00
|
|
|
class CleanDuplicatesCommandTest extends WallabagTestCase
|
2017-03-30 15:02:10 +00:00
|
|
|
{
|
2017-05-05 12:54:03 +00:00
|
|
|
public function testRunCleanDuplicates()
|
2017-03-30 15:02:10 +00:00
|
|
|
{
|
2022-11-23 16:09:32 +00:00
|
|
|
$application = new Application($this->getTestClient()->getKernel());
|
2017-03-30 15:02:10 +00:00
|
|
|
|
|
|
|
$command = $application->find('wallabag:clean-duplicates');
|
|
|
|
|
|
|
|
$tester = new CommandTester($command);
|
2022-09-03 00:28:07 +00:00
|
|
|
$tester->execute([]);
|
2017-03-30 15:02:10 +00:00
|
|
|
|
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-03-30 15:02:10 +00:00
|
|
|
}
|
|
|
|
|
2017-05-05 12:54:03 +00:00
|
|
|
public function testRunCleanDuplicatesCommandWithBadUsername()
|
2017-03-30 15:02:10 +00:00
|
|
|
{
|
2022-11-23 16:09:32 +00:00
|
|
|
$application = new Application($this->getTestClient()->getKernel());
|
2017-03-30 15:02:10 +00:00
|
|
|
|
|
|
|
$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-03-30 15:02:10 +00:00
|
|
|
}
|
|
|
|
|
2017-05-05 12:54:03 +00:00
|
|
|
public function testRunCleanDuplicatesCommandForUser()
|
2017-03-30 15:02:10 +00:00
|
|
|
{
|
2022-11-23 16:09:32 +00:00
|
|
|
$application = new Application($this->getTestClient()->getKernel());
|
2017-03-30 15:02:10 +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 0 duplicates for user admin', $tester->getDisplay());
|
2017-03-30 15:02:10 +00:00
|
|
|
}
|
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';
|
2022-11-23 16:09:32 +00:00
|
|
|
$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);
|
|
|
|
|
2022-11-23 16:09:32 +00:00
|
|
|
$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
|
|
|
|
2024-02-19 00:30:12 +00:00
|
|
|
$query = $em->createQuery('DELETE FROM Wallabag\Entity\Entry e WHERE e.url = :url');
|
2017-05-05 13:20:58 +00:00
|
|
|
$query->setParameter('url', $url);
|
|
|
|
$query->execute();
|
2017-05-05 12:33:36 +00:00
|
|
|
}
|
2017-03-30 15:02:10 +00:00
|
|
|
}
|