]> git.immae.eu Git - github/wallabag/wallabag.git/blame - tests/Wallabag/ImportBundle/Import/WallabagV2ImportTest.php
Jump to Symfony 3.1
[github/wallabag/wallabag.git] / tests / Wallabag / ImportBundle / Import / WallabagV2ImportTest.php
CommitLineData
6785f4aa
NL
1<?php
2
23634d5d 3namespace Tests\Wallabag\ImportBundle\Import;
6785f4aa
NL
4
5use Wallabag\ImportBundle\Import\WallabagV2Import;
6use Wallabag\UserBundle\Entity\User;
8f336fda 7use Wallabag\CoreBundle\Entity\Entry;
6785f4aa
NL
8use Monolog\Logger;
9use Monolog\Handler\TestHandler;
10
11class WallabagV2ImportTest extends \PHPUnit_Framework_TestCase
12{
13 protected $user;
14 protected $em;
15 protected $logHandler;
0783c99a 16 protected $contentProxy;
6785f4aa
NL
17
18 private function getWallabagV2Import($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 WallabagV2Import($this->em, $this->contentProxy);
6785f4aa
NL
31
32 $this->logHandler = new TestHandler();
4094ea47 33 $logger = new Logger('test', [$this->logHandler]);
6785f4aa
NL
34 $wallabag->setLogger($logger);
35
36 if (false === $unsetUser) {
37 $wallabag->setUser($this->user);
38 }
39
40 return $wallabag;
41 }
42
43 public function testInit()
44 {
45 $wallabagV2Import = $this->getWallabagV2Import();
46
47 $this->assertEquals('wallabag v2', $wallabagV2Import->getName());
48 $this->assertNotEmpty($wallabagV2Import->getUrl());
0d42217e 49 $this->assertEquals('import.wallabag_v2.description', $wallabagV2Import->getDescription());
6785f4aa
NL
50 }
51
52 public function testImport()
53 {
54 $wallabagV2Import = $this->getWallabagV2Import();
55 $wallabagV2Import->setFilepath(__DIR__.'/../fixtures/wallabag-v2.json');
56
57 $entryRepo = $this->getMockBuilder('Wallabag\CoreBundle\Repository\EntryRepository')
58 ->disableOriginalConstructor()
59 ->getMock();
60
23d24b17 61 $entryRepo->expects($this->exactly(24))
6785f4aa
NL
62 ->method('findByUrlAndUserId')
63 ->will($this->onConsecutiveCalls(false, true, false));
64
65 $this->em
66 ->expects($this->any())
67 ->method('getRepository')
68 ->willReturn($entryRepo);
69
8f336fda
JB
70 $this->contentProxy
71 ->expects($this->exactly(2))
72 ->method('updateEntry')
73 ->willReturn(new Entry($this->user));
74
6785f4aa
NL
75 $res = $wallabagV2Import->import();
76
77 $this->assertTrue($res);
23d24b17 78 $this->assertEquals(['skipped' => 22, 'imported' => 2], $wallabagV2Import->getSummary());
c32ae320
TC
79 }
80
81 public function testImportAndMarkAllAsRead()
82 {
83 $wallabagV2Import = $this->getWallabagV2Import();
84 $wallabagV2Import->setFilepath(__DIR__.'/../fixtures/wallabag-v2-read.json');
85
86 $entryRepo = $this->getMockBuilder('Wallabag\CoreBundle\Repository\EntryRepository')
87 ->disableOriginalConstructor()
88 ->getMock();
89
90 $entryRepo->expects($this->exactly(2))
91 ->method('findByUrlAndUserId')
92 ->will($this->onConsecutiveCalls(false, false));
93
94 $this->em
95 ->expects($this->any())
96 ->method('getRepository')
97 ->willReturn($entryRepo);
98
8f336fda
JB
99 $this->contentProxy
100 ->expects($this->exactly(2))
101 ->method('updateEntry')
102 ->willReturn(new Entry($this->user));
103
79d0e38e
JB
104 // check that every entry persisted are archived
105 $this->em
106 ->expects($this->any())
107 ->method('persist')
cebb4223 108 ->with($this->callback(function ($persistedEntry) {
79d0e38e
JB
109 return $persistedEntry->isArchived();
110 }));
111
c32ae320
TC
112 $res = $wallabagV2Import->setMarkAsRead(true)->import();
113
114 $this->assertTrue($res);
115
c32ae320 116 $this->assertEquals(['skipped' => 0, 'imported' => 2], $wallabagV2Import->getSummary());
6785f4aa
NL
117 }
118
119 public function testImportBadFile()
120 {
121 $wallabagV1Import = $this->getWallabagV2Import();
122 $wallabagV1Import->setFilepath(__DIR__.'/../fixtures/wallabag-v2.jsonx');
123
124 $res = $wallabagV1Import->import();
125
126 $this->assertFalse($res);
127
128 $records = $this->logHandler->getRecords();
129 $this->assertContains('WallabagImport: unable to read file', $records[0]['message']);
130 $this->assertEquals('ERROR', $records[0]['level_name']);
131 }
132
133 public function testImportUserNotDefined()
134 {
135 $wallabagV1Import = $this->getWallabagV2Import(true);
136 $wallabagV1Import->setFilepath(__DIR__.'/../fixtures/wallabag-v2.json');
137
138 $res = $wallabagV1Import->import();
139
140 $this->assertFalse($res);
141
142 $records = $this->logHandler->getRecords();
143 $this->assertContains('WallabagImport: user is not defined', $records[0]['message']);
144 $this->assertEquals('ERROR', $records[0]['level_name']);
145 }
146}