]> git.immae.eu Git - github/wallabag/wallabag.git/blame - src/Wallabag/ImportBundle/Tests/Import/WallabagV1ImportTest.php
cs & tests for wllbg v1 import
[github/wallabag/wallabag.git] / src / Wallabag / ImportBundle / Tests / Import / WallabagV1ImportTest.php
CommitLineData
b1d05721
JB
1<?php
2
3namespace Wallabag\ImportBundle\Tests\Import;
4
5use Wallabag\UserBundle\Entity\User;
6use Wallabag\ImportBundle\Import\WallabagV1Import;
7use Monolog\Logger;
8use Monolog\Handler\TestHandler;
9
10class WallabagV1ImportTest extends \PHPUnit_Framework_TestCase
11{
12 protected $user;
13 protected $em;
14 protected $logHandler;
0783c99a
TC
15 protected $contentProxy;
16
b1d05721
JB
17 private function getWallabagV1Import($unsetUser = false)
18 {
19 $this->user = new User();
20
21 $this->em = $this->getMockBuilder('Doctrine\ORM\EntityManager')
22 ->disableOriginalConstructor()
23 ->getMock();
24
0783c99a
TC
25 $this->contentProxy = $this->getMockBuilder('Wallabag\CoreBundle\Helper\ContentProxy')
26 ->disableOriginalConstructor()
27 ->getMock();
28
da0a9e01 29 $wallabag = new WallabagV1Import($this->em, $this->contentProxy);
b1d05721
JB
30
31 $this->logHandler = new TestHandler();
32 $logger = new Logger('test', array($this->logHandler));
6785f4aa 33 $wallabag->setLogger($logger);
b1d05721
JB
34
35 if (false === $unsetUser) {
6785f4aa 36 $wallabag->setUser($this->user);
b1d05721
JB
37 }
38
6785f4aa 39 return $wallabag;
b1d05721
JB
40 }
41
42 public function testInit()
43 {
44 $wallabagV1Import = $this->getWallabagV1Import();
45
b88cf91f 46 $this->assertEquals('wallabag v1', $wallabagV1Import->getName());
7019c7cf
JB
47 $this->assertNotEmpty($wallabagV1Import->getUrl());
48 $this->assertContains('This importer will import all your wallabag v1 articles.', $wallabagV1Import->getDescription());
b1d05721
JB
49 }
50
51 public function testImport()
52 {
53 $wallabagV1Import = $this->getWallabagV1Import();
54 $wallabagV1Import->setFilepath(__DIR__.'/../fixtures/wallabag-v1.json');
55
56 $entryRepo = $this->getMockBuilder('Wallabag\CoreBundle\Repository\EntryRepository')
57 ->disableOriginalConstructor()
58 ->getMock();
59
eaf9dad7 60 $entryRepo->expects($this->exactly(4))
78833672 61 ->method('findByUrlAndUserId')
eaf9dad7 62 ->will($this->onConsecutiveCalls(false, true, false, false));
b1d05721
JB
63
64 $this->em
65 ->expects($this->any())
66 ->method('getRepository')
67 ->willReturn($entryRepo);
68
eaf9dad7
TC
69 $entry = $this->getMockBuilder('Wallabag\CoreBundle\Entity\Entry')
70 ->disableOriginalConstructor()
71 ->getMock();
72
73 $this->contentProxy
74 ->expects($this->once())
75 ->method('updateEntry')
76 ->willReturn($entry);
77
b1d05721
JB
78 $res = $wallabagV1Import->import();
79
80 $this->assertTrue($res);
eaf9dad7 81 $this->assertEquals(['skipped' => 1, 'imported' => 3], $wallabagV1Import->getSummary());
b1d05721
JB
82 }
83
84 public function testImportBadFile()
85 {
86 $wallabagV1Import = $this->getWallabagV1Import();
87 $wallabagV1Import->setFilepath(__DIR__.'/../fixtures/wallabag-v1.jsonx');
88
89 $res = $wallabagV1Import->import();
90
91 $this->assertFalse($res);
92
93 $records = $this->logHandler->getRecords();
6785f4aa 94 $this->assertContains('WallabagImport: unable to read file', $records[0]['message']);
b1d05721
JB
95 $this->assertEquals('ERROR', $records[0]['level_name']);
96 }
97
98 public function testImportUserNotDefined()
99 {
100 $wallabagV1Import = $this->getWallabagV1Import(true);
101 $wallabagV1Import->setFilepath(__DIR__.'/../fixtures/wallabag-v1.json');
102
103 $res = $wallabagV1Import->import();
104
105 $this->assertFalse($res);
106
107 $records = $this->logHandler->getRecords();
6785f4aa 108 $this->assertContains('WallabagImport: user is not defined', $records[0]['message']);
b1d05721
JB
109 $this->assertEquals('ERROR', $records[0]['level_name']);
110 }
111}