]>
Commit | Line | Data |
---|---|---|
3d57d625 TC |
1 | <?php |
2 | ||
3 | namespace Tests\Wallabag\CoreBundle\Command; | |
4 | ||
5 | use Symfony\Bundle\FrameworkBundle\Console\Application; | |
6 | use Symfony\Component\Console\Tester\CommandTester; | |
3d57d625 | 7 | use Tests\Wallabag\CoreBundle\WallabagCoreTestCase; |
f808b016 | 8 | use Wallabag\CoreBundle\Command\CleanDuplicatesCommand; |
d09fe4d2 | 9 | use Wallabag\CoreBundle\Entity\Entry; |
3d57d625 TC |
10 | |
11 | class CleanDuplicatesCommandTest extends WallabagCoreTestCase | |
12 | { | |
89f108b4 | 13 | public function testRunCleanDuplicates() |
3d57d625 TC |
14 | { |
15 | $application = new Application($this->getClient()->getKernel()); | |
16 | $application->add(new CleanDuplicatesCommand()); | |
17 | ||
18 | $command = $application->find('wallabag:clean-duplicates'); | |
19 | ||
20 | $tester = new CommandTester($command); | |
21 | $tester->execute([ | |
22 | 'command' => $command->getName(), | |
23 | ]); | |
24 | ||
25 | $this->assertContains('Cleaning through 3 user accounts', $tester->getDisplay()); | |
26 | $this->assertContains('Finished cleaning. 0 duplicates found in total', $tester->getDisplay()); | |
27 | } | |
28 | ||
89f108b4 | 29 | public function testRunCleanDuplicatesCommandWithBadUsername() |
3d57d625 TC |
30 | { |
31 | $application = new Application($this->getClient()->getKernel()); | |
32 | $application->add(new CleanDuplicatesCommand()); | |
33 | ||
34 | $command = $application->find('wallabag:clean-duplicates'); | |
35 | ||
36 | $tester = new CommandTester($command); | |
37 | $tester->execute([ | |
38 | 'command' => $command->getName(), | |
39 | 'username' => 'unknown', | |
40 | ]); | |
41 | ||
42 | $this->assertContains('User "unknown" not found', $tester->getDisplay()); | |
43 | } | |
44 | ||
89f108b4 | 45 | public function testRunCleanDuplicatesCommandForUser() |
3d57d625 TC |
46 | { |
47 | $application = new Application($this->getClient()->getKernel()); | |
48 | $application->add(new CleanDuplicatesCommand()); | |
49 | ||
50 | $command = $application->find('wallabag:clean-duplicates'); | |
51 | ||
52 | $tester = new CommandTester($command); | |
53 | $tester->execute([ | |
54 | 'command' => $command->getName(), | |
55 | 'username' => 'admin', | |
56 | ]); | |
57 | ||
58 | $this->assertContains('Cleaned 0 duplicates for user admin', $tester->getDisplay()); | |
59 | } | |
d09fe4d2 NL |
60 | |
61 | public function testDuplicate() | |
62 | { | |
77854331 | 63 | $url = 'https://www.lemonde.fr/sport/visuel/2017/05/05/rondelle-prison-blanchissage-comprendre-le-hockey-sur-glace_5122587_3242.html'; |
d09fe4d2 NL |
64 | $client = $this->getClient(); |
65 | $em = $client->getContainer()->get('doctrine.orm.entity_manager'); | |
66 | ||
67 | $this->logInAs('admin'); | |
68 | ||
69 | $nbEntries = $em->getRepository('WallabagCoreBundle:Entry')->findAllByUrlAndUserId($url, $this->getLoggedInUserId()); | |
70 | $this->assertCount(0, $nbEntries); | |
71 | ||
72 | $user = $em->getRepository('WallabagUserBundle:User')->findOneById($this->getLoggedInUserId()); | |
73 | ||
74 | $entry1 = new Entry($user); | |
75 | $entry1->setUrl($url); | |
76 | ||
77 | $entry2 = new Entry($user); | |
78 | $entry2->setUrl($url); | |
79 | ||
80 | $em->persist($entry1); | |
81 | $em->persist($entry2); | |
82 | ||
83 | $em->flush(); | |
84 | ||
85 | $nbEntries = $em->getRepository('WallabagCoreBundle:Entry')->findAllByUrlAndUserId($url, $this->getLoggedInUserId()); | |
86 | $this->assertCount(2, $nbEntries); | |
87 | ||
88 | $application = new Application($this->getClient()->getKernel()); | |
89 | $application->add(new CleanDuplicatesCommand()); | |
90 | ||
91 | $command = $application->find('wallabag:clean-duplicates'); | |
92 | ||
93 | $tester = new CommandTester($command); | |
94 | $tester->execute([ | |
95 | 'command' => $command->getName(), | |
96 | 'username' => 'admin', | |
97 | ]); | |
98 | ||
99 | $this->assertContains('Cleaned 1 duplicates for user admin', $tester->getDisplay()); | |
100 | ||
101 | $nbEntries = $em->getRepository('WallabagCoreBundle:Entry')->findAllByUrlAndUserId($url, $this->getLoggedInUserId()); | |
102 | $this->assertCount(1, $nbEntries); | |
4eeb29ff NL |
103 | |
104 | $query = $em->createQuery('DELETE FROM Wallabag\CoreBundle\Entity\Entry e WHERE e.url = :url'); | |
105 | $query->setParameter('url', $url); | |
106 | $query->execute(); | |
d09fe4d2 | 107 | } |
3d57d625 | 108 | } |