]> git.immae.eu Git - github/wallabag/wallabag.git/blame - tests/Wallabag/CoreBundle/Helper/ContentProxyTest.php
Update deps
[github/wallabag/wallabag.git] / tests / Wallabag / CoreBundle / Helper / ContentProxyTest.php
CommitLineData
558d9aab
JB
1<?php
2
a2c1b94e 3namespace Tests\Wallabag\CoreBundle\Helper;
558d9aab 4
0c5bcd82 5use Psr\Log\NullLogger;
558d9aab 6use Wallabag\CoreBundle\Helper\ContentProxy;
c2656f96
JB
7use Wallabag\CoreBundle\Entity\Entry;
8use Wallabag\CoreBundle\Entity\Tag;
619cc453 9use Wallabag\UserBundle\Entity\User;
558d9aab 10
a2c1b94e 11class ContentProxyTest extends \PHPUnit_Framework_TestCase
558d9aab 12{
a2c1b94e
JC
13 private $fetchingErrorMessage = 'wallabag can\'t retrieve contents for this article. Please <a href="http://doc.wallabag.org/en/master/user/errors_during_fetching.html#how-can-i-help-to-fix-that">troubleshoot this issue</a>.';
14
4d0ec0e7
JB
15 public function testWithBadUrl()
16 {
17 $tagger = $this->getTaggerMock();
18 $tagger->expects($this->once())
19 ->method('tag');
20
21 $graby = $this->getMockBuilder('Graby\Graby')
4094ea47 22 ->setMethods(['fetchContent'])
4d0ec0e7
JB
23 ->disableOriginalConstructor()
24 ->getMock();
25
26 $graby->expects($this->any())
27 ->method('fetchContent')
4094ea47 28 ->willReturn([
4d0ec0e7
JB
29 'html' => false,
30 'title' => '',
31 'url' => '',
32 'content_type' => '',
33 'language' => '',
4094ea47 34 ]);
4d0ec0e7 35
fc2b7bda 36 $proxy = new ContentProxy($graby, $tagger, $this->getTagRepositoryMock(), $this->getLogger(), $this->fetchingErrorMessage);
4d0ec0e7
JB
37 $entry = $proxy->updateEntry(new Entry(new User()), 'http://user@:80');
38
39 $this->assertEquals('http://user@:80', $entry->getUrl());
40 $this->assertEmpty($entry->getTitle());
fc2b7bda 41 $this->assertEquals($this->fetchingErrorMessage, $entry->getContent());
4d0ec0e7
JB
42 $this->assertEmpty($entry->getPreviewPicture());
43 $this->assertEmpty($entry->getMimetype());
44 $this->assertEmpty($entry->getLanguage());
45 $this->assertEquals(0.0, $entry->getReadingTime());
46 $this->assertEquals(false, $entry->getDomainName());
47 }
48
558d9aab
JB
49 public function testWithEmptyContent()
50 {
f530f7f5
KG
51 $tagger = $this->getTaggerMock();
52 $tagger->expects($this->once())
53 ->method('tag');
54
558d9aab 55 $graby = $this->getMockBuilder('Graby\Graby')
4094ea47 56 ->setMethods(['fetchContent'])
558d9aab
JB
57 ->disableOriginalConstructor()
58 ->getMock();
59
60 $graby->expects($this->any())
61 ->method('fetchContent')
4094ea47 62 ->willReturn([
98f0929f
JB
63 'html' => false,
64 'title' => '',
65 'url' => '',
66 'content_type' => '',
67 'language' => '',
4094ea47 68 ]);
558d9aab 69
fc2b7bda 70 $proxy = new ContentProxy($graby, $tagger, $this->getTagRepositoryMock(), $this->getLogger(), $this->fetchingErrorMessage);
558d9aab
JB
71 $entry = $proxy->updateEntry(new Entry(new User()), 'http://0.0.0.0');
72
73 $this->assertEquals('http://0.0.0.0', $entry->getUrl());
74 $this->assertEmpty($entry->getTitle());
fc2b7bda 75 $this->assertEquals($this->fetchingErrorMessage, $entry->getContent());
558d9aab
JB
76 $this->assertEmpty($entry->getPreviewPicture());
77 $this->assertEmpty($entry->getMimetype());
98f0929f 78 $this->assertEmpty($entry->getLanguage());
da3d4998
JB
79 $this->assertEquals(0.0, $entry->getReadingTime());
80 $this->assertEquals('0.0.0.0', $entry->getDomainName());
558d9aab
JB
81 }
82
83 public function testWithEmptyContentButOG()
84 {
f530f7f5
KG
85 $tagger = $this->getTaggerMock();
86 $tagger->expects($this->once())
87 ->method('tag');
88
558d9aab 89 $graby = $this->getMockBuilder('Graby\Graby')
4094ea47 90 ->setMethods(['fetchContent'])
558d9aab
JB
91 ->disableOriginalConstructor()
92 ->getMock();
93
94 $graby->expects($this->any())
95 ->method('fetchContent')
4094ea47 96 ->willReturn([
98f0929f
JB
97 'html' => false,
98 'title' => '',
99 'url' => '',
100 'content_type' => '',
101 'language' => '',
10b35097 102 'status' => '',
4094ea47 103 'open_graph' => [
98f0929f
JB
104 'og_title' => 'my title',
105 'og_description' => 'desc',
4094ea47
JB
106 ],
107 ]);
558d9aab 108
fc2b7bda 109 $proxy = new ContentProxy($graby, $tagger, $this->getTagRepositoryMock(), $this->getLogger(), $this->fetchingErrorMessage);
da3d4998 110 $entry = $proxy->updateEntry(new Entry(new User()), 'http://domain.io');
558d9aab 111
da3d4998 112 $this->assertEquals('http://domain.io', $entry->getUrl());
558d9aab 113 $this->assertEquals('my title', $entry->getTitle());
fc2b7bda 114 $this->assertEquals($this->fetchingErrorMessage . '<p><i>But we found a short description: </i></p>desc', $entry->getContent());
558d9aab 115 $this->assertEmpty($entry->getPreviewPicture());
98f0929f 116 $this->assertEmpty($entry->getLanguage());
10b35097 117 $this->assertEmpty($entry->getHttpStatus());
558d9aab 118 $this->assertEmpty($entry->getMimetype());
da3d4998
JB
119 $this->assertEquals(0.0, $entry->getReadingTime());
120 $this->assertEquals('domain.io', $entry->getDomainName());
558d9aab
JB
121 }
122
123 public function testWithContent()
124 {
f530f7f5
KG
125 $tagger = $this->getTaggerMock();
126 $tagger->expects($this->once())
127 ->method('tag');
128
558d9aab 129 $graby = $this->getMockBuilder('Graby\Graby')
4094ea47 130 ->setMethods(['fetchContent'])
558d9aab
JB
131 ->disableOriginalConstructor()
132 ->getMock();
133
134 $graby->expects($this->any())
135 ->method('fetchContent')
4094ea47 136 ->willReturn([
da3d4998 137 'html' => str_repeat('this is my content', 325),
558d9aab
JB
138 'title' => 'this is my title',
139 'url' => 'http://1.1.1.1',
140 'content_type' => 'text/html',
98f0929f 141 'language' => 'fr',
10b35097 142 'status' => '200',
4094ea47 143 'open_graph' => [
558d9aab
JB
144 'og_title' => 'my OG title',
145 'og_description' => 'OG desc',
f1e29e69 146 'og_image' => 'http://3.3.3.3/cover.jpg',
4094ea47
JB
147 ],
148 ]);
558d9aab 149
fc2b7bda 150 $proxy = new ContentProxy($graby, $tagger, $this->getTagRepositoryMock(), $this->getLogger(), $this->fetchingErrorMessage);
558d9aab
JB
151 $entry = $proxy->updateEntry(new Entry(new User()), 'http://0.0.0.0');
152
153 $this->assertEquals('http://1.1.1.1', $entry->getUrl());
154 $this->assertEquals('this is my title', $entry->getTitle());
da3d4998 155 $this->assertContains('this is my content', $entry->getContent());
558d9aab
JB
156 $this->assertEquals('http://3.3.3.3/cover.jpg', $entry->getPreviewPicture());
157 $this->assertEquals('text/html', $entry->getMimetype());
98f0929f 158 $this->assertEquals('fr', $entry->getLanguage());
10b35097 159 $this->assertEquals('200', $entry->getHttpStatus());
da3d4998
JB
160 $this->assertEquals(4.0, $entry->getReadingTime());
161 $this->assertEquals('1.1.1.1', $entry->getDomainName());
558d9aab 162 }
f530f7f5 163
4d0ec0e7
JB
164 public function testWithForcedContent()
165 {
166 $tagger = $this->getTaggerMock();
167 $tagger->expects($this->once())
168 ->method('tag');
169
170 $graby = $this->getMockBuilder('Graby\Graby')->getMock();
171
fc2b7bda 172 $proxy = new ContentProxy($graby, $tagger, $this->getTagRepositoryMock(), $this->getLogger(), $this->fetchingErrorMessage);
4d0ec0e7
JB
173 $entry = $proxy->updateEntry(new Entry(new User()), 'http://0.0.0.0', [
174 'html' => str_repeat('this is my content', 325),
175 'title' => 'this is my title',
176 'url' => 'http://1.1.1.1',
177 'content_type' => 'text/html',
178 'language' => 'fr',
179 ]);
180
181 $this->assertEquals('http://1.1.1.1', $entry->getUrl());
182 $this->assertEquals('this is my title', $entry->getTitle());
183 $this->assertContains('this is my content', $entry->getContent());
184 $this->assertEquals('text/html', $entry->getMimetype());
185 $this->assertEquals('fr', $entry->getLanguage());
186 $this->assertEquals(4.0, $entry->getReadingTime());
187 $this->assertEquals('1.1.1.1', $entry->getDomainName());
188 }
189
190 public function testTaggerThrowException()
191 {
192 $graby = $this->getMockBuilder('Graby\Graby')
193 ->disableOriginalConstructor()
194 ->getMock();
195
196 $tagger = $this->getTaggerMock();
197 $tagger->expects($this->once())
198 ->method('tag')
199 ->will($this->throwException(new \Exception()));
200
201 $tagRepo = $this->getTagRepositoryMock();
fc2b7bda 202 $proxy = new ContentProxy($graby, $tagger, $tagRepo, $this->getLogger(), $this->fetchingErrorMessage);
4d0ec0e7
JB
203
204 $entry = $proxy->updateEntry(new Entry(new User()), 'http://0.0.0.0', [
205 'html' => str_repeat('this is my content', 325),
206 'title' => 'this is my title',
207 'url' => 'http://1.1.1.1',
208 'content_type' => 'text/html',
209 'language' => 'fr',
210 ]);
211
212 $this->assertCount(0, $entry->getTags());
213 }
214
c2656f96
JB
215 public function testAssignTagsWithArrayAndExtraSpaces()
216 {
217 $graby = $this->getMockBuilder('Graby\Graby')
218 ->disableOriginalConstructor()
219 ->getMock();
220
221 $tagRepo = $this->getTagRepositoryMock();
fc2b7bda 222 $proxy = new ContentProxy($graby, $this->getTaggerMock(), $tagRepo, $this->getLogger(), $this->fetchingErrorMessage);
c2656f96
JB
223
224 $entry = new Entry(new User());
225
4094ea47 226 $proxy->assignTagsToEntry($entry, [' tag1', 'tag2 ']);
c2656f96
JB
227
228 $this->assertCount(2, $entry->getTags());
229 $this->assertEquals('tag1', $entry->getTags()[0]->getLabel());
230 $this->assertEquals('tag2', $entry->getTags()[1]->getLabel());
231 }
232
233 public function testAssignTagsWithString()
234 {
235 $graby = $this->getMockBuilder('Graby\Graby')
236 ->disableOriginalConstructor()
237 ->getMock();
238
239 $tagRepo = $this->getTagRepositoryMock();
fc2b7bda 240 $proxy = new ContentProxy($graby, $this->getTaggerMock(), $tagRepo, $this->getLogger(), $this->fetchingErrorMessage);
c2656f96
JB
241
242 $entry = new Entry(new User());
243
244 $proxy->assignTagsToEntry($entry, 'tag1, tag2');
245
246 $this->assertCount(2, $entry->getTags());
247 $this->assertEquals('tag1', $entry->getTags()[0]->getLabel());
248 $this->assertEquals('tag2', $entry->getTags()[1]->getLabel());
249 }
250
251 public function testAssignTagsWithEmptyArray()
252 {
253 $graby = $this->getMockBuilder('Graby\Graby')
254 ->disableOriginalConstructor()
255 ->getMock();
256
257 $tagRepo = $this->getTagRepositoryMock();
fc2b7bda 258 $proxy = new ContentProxy($graby, $this->getTaggerMock(), $tagRepo, $this->getLogger(), $this->fetchingErrorMessage);
c2656f96
JB
259
260 $entry = new Entry(new User());
261
4094ea47 262 $proxy->assignTagsToEntry($entry, []);
c2656f96
JB
263
264 $this->assertCount(0, $entry->getTags());
265 }
266
267 public function testAssignTagsWithEmptyString()
268 {
269 $graby = $this->getMockBuilder('Graby\Graby')
270 ->disableOriginalConstructor()
271 ->getMock();
272
273 $tagRepo = $this->getTagRepositoryMock();
fc2b7bda 274 $proxy = new ContentProxy($graby, $this->getTaggerMock(), $tagRepo, $this->getLogger(), $this->fetchingErrorMessage);
c2656f96
JB
275
276 $entry = new Entry(new User());
277
278 $proxy->assignTagsToEntry($entry, '');
279
280 $this->assertCount(0, $entry->getTags());
281 }
282
283 public function testAssignTagsAlreadyAssigned()
284 {
285 $graby = $this->getMockBuilder('Graby\Graby')
286 ->disableOriginalConstructor()
287 ->getMock();
288
289 $tagRepo = $this->getTagRepositoryMock();
fc2b7bda 290 $proxy = new ContentProxy($graby, $this->getTaggerMock(), $tagRepo, $this->getLogger(), $this->fetchingErrorMessage);
c2656f96
JB
291
292 $tagEntity = new Tag();
293 $tagEntity->setLabel('tag1');
294
295 $entry = new Entry(new User());
296 $entry->addTag($tagEntity);
297
298 $proxy->assignTagsToEntry($entry, 'tag1, tag2');
299
300 $this->assertCount(2, $entry->getTags());
301 $this->assertEquals('tag1', $entry->getTags()[0]->getLabel());
302 $this->assertEquals('tag2', $entry->getTags()[1]->getLabel());
303 }
304
40113585
JB
305 public function testAssignTagsNotFlushed()
306 {
307 $graby = $this->getMockBuilder('Graby\Graby')
308 ->disableOriginalConstructor()
309 ->getMock();
310
311 $tagRepo = $this->getTagRepositoryMock();
312 $tagRepo->expects($this->never())
313 ->method('__call');
314
fc2b7bda 315 $proxy = new ContentProxy($graby, $this->getTaggerMock(), $tagRepo, $this->getLogger(), $this->fetchingErrorMessage);
40113585
JB
316
317 $tagEntity = new Tag();
318 $tagEntity->setLabel('tag1');
319
320 $entry = new Entry(new User());
321
322 $proxy->assignTagsToEntry($entry, 'tag1', [$tagEntity]);
323
324 $this->assertCount(1, $entry->getTags());
325 $this->assertEquals('tag1', $entry->getTags()[0]->getLabel());
326 }
327
f530f7f5
KG
328 private function getTaggerMock()
329 {
330 return $this->getMockBuilder('Wallabag\CoreBundle\Helper\RuleBasedTagger')
4094ea47 331 ->setMethods(['tag'])
f530f7f5
KG
332 ->disableOriginalConstructor()
333 ->getMock();
334 }
1c9cd2a7 335
c2656f96
JB
336 private function getTagRepositoryMock()
337 {
338 return $this->getMockBuilder('Wallabag\CoreBundle\Repository\TagRepository')
339 ->disableOriginalConstructor()
340 ->getMock();
341 }
342
0c5bcd82 343 private function getLogger()
1c9cd2a7 344 {
0c5bcd82 345 return new NullLogger();
1c9cd2a7 346 }
558d9aab 347}