]> git.immae.eu Git - github/wallabag/wallabag.git/blame - tests/Wallabag/ImportBundle/Import/WallabagV1ImportTest.php
Retrieve created date from Pocket
[github/wallabag/wallabag.git] / tests / Wallabag / ImportBundle / Import / WallabagV1ImportTest.php
CommitLineData
b1d05721
JB
1<?php
2
23634d5d 3namespace Tests\Wallabag\ImportBundle\Import;
b1d05721 4
8f336fda 5use Wallabag\ImportBundle\Import\WallabagV1Import;
b1d05721 6use Wallabag\UserBundle\Entity\User;
4d0ec0e7 7use Wallabag\CoreBundle\Entity\Entry;
b1d05721
JB
8use Monolog\Logger;
9use Monolog\Handler\TestHandler;
10
11class WallabagV1ImportTest extends \PHPUnit_Framework_TestCase
12{
13 protected $user;
14 protected $em;
15 protected $logHandler;
0783c99a
TC
16 protected $contentProxy;
17
b1d05721
JB
18 private function getWallabagV1Import($unsetUser = false)
19 {
20 $this->user = new User();
21
22 $this->em = $this->getMockBuilder('Doctrine\ORM\EntityManager')
23 ->disableOriginalConstructor()
24 ->getMock();
25
0783c99a
TC
26 $this->contentProxy = $this->getMockBuilder('Wallabag\CoreBundle\Helper\ContentProxy')
27 ->disableOriginalConstructor()
28 ->getMock();
29
da0a9e01 30 $wallabag = new WallabagV1Import($this->em, $this->contentProxy);
b1d05721
JB
31
32 $this->logHandler = new TestHandler();
4094ea47 33 $logger = new Logger('test', [$this->logHandler]);
6785f4aa 34 $wallabag->setLogger($logger);
b1d05721
JB
35
36 if (false === $unsetUser) {
6785f4aa 37 $wallabag->setUser($this->user);
b1d05721
JB
38 }
39
6785f4aa 40 return $wallabag;
b1d05721
JB
41 }
42
43 public function testInit()
44 {
45 $wallabagV1Import = $this->getWallabagV1Import();
46
b88cf91f 47 $this->assertEquals('wallabag v1', $wallabagV1Import->getName());
7019c7cf 48 $this->assertNotEmpty($wallabagV1Import->getUrl());
0d42217e 49 $this->assertEquals('import.wallabag_v1.description', $wallabagV1Import->getDescription());
b1d05721
JB
50 }
51
52 public function testImport()
53 {
54 $wallabagV1Import = $this->getWallabagV1Import();
55 $wallabagV1Import->setFilepath(__DIR__.'/../fixtures/wallabag-v1.json');
56
57 $entryRepo = $this->getMockBuilder('Wallabag\CoreBundle\Repository\EntryRepository')
58 ->disableOriginalConstructor()
59 ->getMock();
60
eaf9dad7 61 $entryRepo->expects($this->exactly(4))
78833672 62 ->method('findByUrlAndUserId')
eaf9dad7 63 ->will($this->onConsecutiveCalls(false, true, false, false));
b1d05721
JB
64
65 $this->em
66 ->expects($this->any())
67 ->method('getRepository')
68 ->willReturn($entryRepo);
69
eaf9dad7
TC
70 $entry = $this->getMockBuilder('Wallabag\CoreBundle\Entity\Entry')
71 ->disableOriginalConstructor()
72 ->getMock();
73
74 $this->contentProxy
4d0ec0e7 75 ->expects($this->exactly(3))
eaf9dad7
TC
76 ->method('updateEntry')
77 ->willReturn($entry);
78
b1d05721
JB
79 $res = $wallabagV1Import->import();
80
81 $this->assertTrue($res);
eaf9dad7 82 $this->assertEquals(['skipped' => 1, 'imported' => 3], $wallabagV1Import->getSummary());
79d0e38e
JB
83 }
84
85 public function testImportAndMarkAllAsRead()
86 {
87 $wallabagV1Import = $this->getWallabagV1Import();
88 $wallabagV1Import->setFilepath(__DIR__.'/../fixtures/wallabag-v1-read.json');
89
90 $entryRepo = $this->getMockBuilder('Wallabag\CoreBundle\Repository\EntryRepository')
91 ->disableOriginalConstructor()
92 ->getMock();
93
94 $entryRepo->expects($this->exactly(3))
95 ->method('findByUrlAndUserId')
96 ->will($this->onConsecutiveCalls(false, false, false));
97
98 $this->em
99 ->expects($this->any())
100 ->method('getRepository')
101 ->willReturn($entryRepo);
102
4d0ec0e7
JB
103 $this->contentProxy
104 ->expects($this->exactly(3))
105 ->method('updateEntry')
106 ->willReturn(new Entry($this->user));
107
79d0e38e
JB
108 // check that every entry persisted are archived
109 $this->em
110 ->expects($this->any())
111 ->method('persist')
cebb4223 112 ->with($this->callback(function ($persistedEntry) {
79d0e38e
JB
113 return $persistedEntry->isArchived();
114 }));
115
116 $res = $wallabagV1Import->setMarkAsRead(true)->import();
117
118 $this->assertTrue($res);
119
120 $this->assertEquals(['skipped' => 0, 'imported' => 3], $wallabagV1Import->getSummary());
13470c35
JB
121 }
122
123 public function testImportWithRabbit()
124 {
125 $wallabagV1Import = $this->getWallabagV1Import();
126 $wallabagV1Import->setFilepath(__DIR__.'/../fixtures/wallabag-v1.json');
127
128 $entryRepo = $this->getMockBuilder('Wallabag\CoreBundle\Repository\EntryRepository')
129 ->disableOriginalConstructor()
130 ->getMock();
131
132 $entryRepo->expects($this->never())
133 ->method('findByUrlAndUserId');
134
135 $this->em
136 ->expects($this->never())
137 ->method('getRepository');
138
139 $entry = $this->getMockBuilder('Wallabag\CoreBundle\Entity\Entry')
140 ->disableOriginalConstructor()
141 ->getMock();
142
143 $this->contentProxy
144 ->expects($this->never())
145 ->method('updateEntry');
146
147 $producer = $this->getMockBuilder('OldSound\RabbitMqBundle\RabbitMq\Producer')
148 ->disableOriginalConstructor()
149 ->getMock();
150
151 $producer
152 ->expects($this->exactly(4))
153 ->method('publish');
154
155 $wallabagV1Import->setRabbitmqProducer($producer);
156
157 $res = $wallabagV1Import->setMarkAsRead(true)->import();
158
159 $this->assertTrue($res);
160 $this->assertEquals(['skipped' => 0, 'imported' => 4], $wallabagV1Import->getSummary());
b1d05721
JB
161 }
162
163 public function testImportBadFile()
164 {
165 $wallabagV1Import = $this->getWallabagV1Import();
166 $wallabagV1Import->setFilepath(__DIR__.'/../fixtures/wallabag-v1.jsonx');
167
168 $res = $wallabagV1Import->import();
169
170 $this->assertFalse($res);
171
172 $records = $this->logHandler->getRecords();
6785f4aa 173 $this->assertContains('WallabagImport: unable to read file', $records[0]['message']);
b1d05721
JB
174 $this->assertEquals('ERROR', $records[0]['level_name']);
175 }
176
177 public function testImportUserNotDefined()
178 {
179 $wallabagV1Import = $this->getWallabagV1Import(true);
180 $wallabagV1Import->setFilepath(__DIR__.'/../fixtures/wallabag-v1.json');
181
182 $res = $wallabagV1Import->import();
183
184 $this->assertFalse($res);
185
186 $records = $this->logHandler->getRecords();
6785f4aa 187 $this->assertContains('WallabagImport: user is not defined', $records[0]['message']);
b1d05721
JB
188 $this->assertEquals('ERROR', $records[0]['level_name']);
189 }
190}