]> git.immae.eu Git - github/wallabag/wallabag.git/blame - tests/Wallabag/ImportBundle/Controller/PinboardControllerTest.php
Fix test
[github/wallabag/wallabag.git] / tests / Wallabag / ImportBundle / Controller / PinboardControllerTest.php
CommitLineData
9ab024b4
JB
1<?php
2
3namespace Tests\Wallabag\ImportBundle\Controller;
4
9ab024b4 5use Symfony\Component\HttpFoundation\File\UploadedFile;
f808b016 6use Tests\Wallabag\CoreBundle\WallabagCoreTestCase;
9ab024b4
JB
7
8class PinboardControllerTest extends WallabagCoreTestCase
9{
10 public function testImportPinboard()
11 {
12 $this->logInAs('admin');
13 $client = $this->getClient();
14
15 $crawler = $client->request('GET', '/import/pinboard');
16
f808b016
JB
17 $this->assertSame(200, $client->getResponse()->getStatusCode());
18 $this->assertSame(1, $crawler->filter('form[name=upload_import_file] > button[type=submit]')->count());
19 $this->assertSame(1, $crawler->filter('input[type=file]')->count());
9ab024b4
JB
20 }
21
22 public function testImportPinboardWithRabbitEnabled()
23 {
24 $this->logInAs('admin');
25 $client = $this->getClient();
26
27 $client->getContainer()->get('craue_config')->set('import_with_rabbitmq', 1);
28
29 $crawler = $client->request('GET', '/import/pinboard');
30
f808b016
JB
31 $this->assertSame(200, $client->getResponse()->getStatusCode());
32 $this->assertSame(1, $crawler->filter('form[name=upload_import_file] > button[type=submit]')->count());
33 $this->assertSame(1, $crawler->filter('input[type=file]')->count());
9ab024b4
JB
34
35 $client->getContainer()->get('craue_config')->set('import_with_rabbitmq', 0);
36 }
37
38 public function testImportPinboardBadFile()
39 {
40 $this->logInAs('admin');
41 $client = $this->getClient();
42
43 $crawler = $client->request('GET', '/import/pinboard');
44 $form = $crawler->filter('form[name=upload_import_file] > button[type=submit]')->form();
45
46 $data = [
47 'upload_import_file[file]' => '',
48 ];
49
50 $client->submit($form, $data);
51
f808b016 52 $this->assertSame(200, $client->getResponse()->getStatusCode());
9ab024b4
JB
53 }
54
55 public function testImportPinboardWithRedisEnabled()
56 {
57 $this->checkRedis();
58 $this->logInAs('admin');
59 $client = $this->getClient();
60 $client->getContainer()->get('craue_config')->set('import_with_redis', 1);
61
62 $crawler = $client->request('GET', '/import/pinboard');
63
f808b016
JB
64 $this->assertSame(200, $client->getResponse()->getStatusCode());
65 $this->assertSame(1, $crawler->filter('form[name=upload_import_file] > button[type=submit]')->count());
66 $this->assertSame(1, $crawler->filter('input[type=file]')->count());
9ab024b4
JB
67
68 $form = $crawler->filter('form[name=upload_import_file] > button[type=submit]')->form();
69
f808b016 70 $file = new UploadedFile(__DIR__ . '/../fixtures/pinboard_export', 'pinboard.json');
9ab024b4
JB
71
72 $data = [
73 'upload_import_file[file]' => $file,
74 ];
75
76 $client->submit($form, $data);
77
f808b016 78 $this->assertSame(302, $client->getResponse()->getStatusCode());
9ab024b4
JB
79
80 $crawler = $client->followRedirect();
81
82 $this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
83 $this->assertContains('flashes.import.notice.summary', $body[0]);
84
85 $this->assertNotEmpty($client->getContainer()->get('wallabag_core.redis.client')->lpop('wallabag.import.pinboard'));
86
87 $client->getContainer()->get('craue_config')->set('import_with_redis', 0);
88 }
89
90 public function testImportPinboardWithFile()
91 {
92 $this->logInAs('admin');
93 $client = $this->getClient();
94
95 $crawler = $client->request('GET', '/import/pinboard');
96 $form = $crawler->filter('form[name=upload_import_file] > button[type=submit]')->form();
97
f808b016 98 $file = new UploadedFile(__DIR__ . '/../fixtures/pinboard_export', 'pinboard.json');
9ab024b4
JB
99
100 $data = [
101 'upload_import_file[file]' => $file,
102 ];
103
104 $client->submit($form, $data);
105
f808b016 106 $this->assertSame(302, $client->getResponse()->getStatusCode());
9ab024b4
JB
107
108 $crawler = $client->followRedirect();
109
110 $content = $client->getContainer()
111 ->get('doctrine.orm.entity_manager')
112 ->getRepository('WallabagCoreBundle:Entry')
113 ->findByUrlAndUserId(
114 'https://ma.ttias.be/varnish-explained/',
115 $this->getLoggedInUserId()
116 );
117
118 $this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
119 $this->assertContains('flashes.import.notice.summary', $body[0]);
120
f40c88eb 121 $this->assertInstanceOf('Wallabag\CoreBundle\Entity\Entry', $content);
d8a35aba
JB
122 $this->assertNotEmpty($content->getMimetype(), 'Mimetype for https://ma.ttias.be is ok');
123 $this->assertNotEmpty($content->getPreviewPicture(), 'Preview picture for https://ma.ttias.be is ok');
9dfceff0 124 $this->assertNotEmpty($content->getLanguage(), 'Language for https://ma.ttias.be is ok');
bad7df8c
JB
125
126 $tags = $content->getTags();
127 $this->assertContains('foot', $tags, 'It includes the "foot" tag');
128 $this->assertContains('varnish', $tags, 'It includes the "varnish" tag');
e437ad81 129 $this->assertContains('php', $tags, 'It includes the "php" tag');
1e0d8ad7 130 $this->assertCount(3, $tags);
bad7df8c 131
9ab024b4 132 $this->assertInstanceOf(\DateTime::class, $content->getCreatedAt());
f808b016 133 $this->assertSame('2016-10-26', $content->getCreatedAt()->format('Y-m-d'));
9ab024b4
JB
134 }
135
136 public function testImportPinboardWithFileAndMarkAllAsRead()
137 {
138 $this->logInAs('admin');
139 $client = $this->getClient();
140
141 $crawler = $client->request('GET', '/import/pinboard');
142 $form = $crawler->filter('form[name=upload_import_file] > button[type=submit]')->form();
143
f808b016 144 $file = new UploadedFile(__DIR__ . '/../fixtures/pinboard_export', 'pinboard-read.json');
9ab024b4
JB
145
146 $data = [
147 'upload_import_file[file]' => $file,
148 'upload_import_file[mark_as_read]' => 1,
149 ];
150
151 $client->submit($form, $data);
152
f808b016 153 $this->assertSame(302, $client->getResponse()->getStatusCode());
9ab024b4
JB
154
155 $crawler = $client->followRedirect();
156
157 $content1 = $client->getContainer()
158 ->get('doctrine.orm.entity_manager')
159 ->getRepository('WallabagCoreBundle:Entry')
160 ->findByUrlAndUserId(
161 'https://ilia.ws/files/nginx_torontophpug.pdf',
162 $this->getLoggedInUserId()
163 );
164
f40c88eb 165 $this->assertInstanceOf('Wallabag\CoreBundle\Entity\Entry', $content1);
9ab024b4
JB
166 $this->assertTrue($content1->isArchived());
167
168 $content2 = $client->getContainer()
169 ->get('doctrine.orm.entity_manager')
170 ->getRepository('WallabagCoreBundle:Entry')
171 ->findByUrlAndUserId(
172 'https://developers.google.com/web/updates/2016/07/infinite-scroller',
173 $this->getLoggedInUserId()
174 );
175
f40c88eb 176 $this->assertInstanceOf('Wallabag\CoreBundle\Entity\Entry', $content2);
9ab024b4
JB
177 $this->assertTrue($content2->isArchived());
178
179 $this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
180 $this->assertContains('flashes.import.notice.summary', $body[0]);
181 }
182
183 public function testImportPinboardWithEmptyFile()
184 {
185 $this->logInAs('admin');
186 $client = $this->getClient();
187
188 $crawler = $client->request('GET', '/import/pinboard');
189 $form = $crawler->filter('form[name=upload_import_file] > button[type=submit]')->form();
190
f808b016 191 $file = new UploadedFile(__DIR__ . '/../fixtures/test.txt', 'test.txt');
9ab024b4
JB
192
193 $data = [
194 'upload_import_file[file]' => $file,
195 ];
196
197 $client->submit($form, $data);
198
f808b016 199 $this->assertSame(302, $client->getResponse()->getStatusCode());
9ab024b4
JB
200
201 $crawler = $client->followRedirect();
202
203 $this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
204 $this->assertContains('flashes.import.notice.failed', $body[0]);
205 }
206}