]> git.immae.eu Git - github/wallabag/wallabag.git/blame - tests/Wallabag/ImportBundle/Controller/InstapaperControllerTest.php
Enable PHPStan
[github/wallabag/wallabag.git] / tests / Wallabag / ImportBundle / Controller / InstapaperControllerTest.php
CommitLineData
c7ea9b41
JB
1<?php
2
3namespace Tests\Wallabag\ImportBundle\Controller;
4
c7ea9b41 5use Symfony\Component\HttpFoundation\File\UploadedFile;
f808b016 6use Tests\Wallabag\CoreBundle\WallabagCoreTestCase;
c7ea9b41
JB
7
8class InstapaperControllerTest extends WallabagCoreTestCase
9{
10 public function testImportInstapaper()
11 {
12 $this->logInAs('admin');
13 $client = $this->getClient();
14
15 $crawler = $client->request('GET', '/import/instapaper');
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());
c7ea9b41
JB
20 }
21
22 public function testImportInstapaperWithRabbitEnabled()
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/instapaper');
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());
c7ea9b41
JB
34
35 $client->getContainer()->get('craue_config')->set('import_with_rabbitmq', 0);
36 }
37
38 public function testImportInstapaperBadFile()
39 {
40 $this->logInAs('admin');
41 $client = $this->getClient();
42
43 $crawler = $client->request('GET', '/import/instapaper');
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());
c7ea9b41
JB
53 }
54
55 public function testImportInstapaperWithRedisEnabled()
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/instapaper');
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());
c7ea9b41
JB
67
68 $form = $crawler->filter('form[name=upload_import_file] > button[type=submit]')->form();
69
f808b016 70 $file = new UploadedFile(__DIR__ . '/../fixtures/instapaper-export.csv', 'instapaper.csv');
c7ea9b41
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());
c7ea9b41
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.instapaper'));
86
87 $client->getContainer()->get('craue_config')->set('import_with_redis', 0);
88 }
89
90 public function testImportInstapaperWithFile()
91 {
92 $this->logInAs('admin');
93 $client = $this->getClient();
94
95 $crawler = $client->request('GET', '/import/instapaper');
96 $form = $crawler->filter('form[name=upload_import_file] > button[type=submit]')->form();
97
f808b016 98 $file = new UploadedFile(__DIR__ . '/../fixtures/instapaper-export.csv', 'instapaper.csv');
c7ea9b41
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());
c7ea9b41
JB
107
108 $crawler = $client->followRedirect();
109
7a8ed3ce
JB
110 $this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
111 $this->assertContains('flashes.import.notice.summary', $body[0]);
112
c7ea9b41
JB
113 $content = $client->getContainer()
114 ->get('doctrine.orm.entity_manager')
115 ->getRepository('WallabagCoreBundle:Entry')
116 ->findByUrlAndUserId(
84b3bdaa 117 'https://www.liberation.fr/societe/2012/12/06/baumettes-un-tour-en-cellule_865551',
c7ea9b41
JB
118 $this->getLoggedInUserId()
119 );
120
84b3bdaa
JB
121 $this->assertInstanceOf('Wallabag\CoreBundle\Entity\Entry', $content);
122
123 $this->assertNotEmpty($content->getMimetype(), 'Mimetype for https://www.liberation.fr is ok');
124 $this->assertNotEmpty($content->getPreviewPicture(), 'Preview picture for https://www.liberation.fr is ok');
125 $this->assertNotEmpty($content->getLanguage(), 'Language for https://www.liberation.fr is ok');
7a8ed3ce 126 $this->assertContains('foot', $content->getTags(), 'It includes the "foot" tag');
1e0d8ad7 127 $this->assertCount(1, $content->getTags());
c7ea9b41 128 $this->assertInstanceOf(\DateTime::class, $content->getCreatedAt());
7a8ed3ce
JB
129
130 $content = $client->getContainer()
131 ->get('doctrine.orm.entity_manager')
132 ->getRepository('WallabagCoreBundle:Entry')
133 ->findByUrlAndUserId(
77854331 134 'https://www.20minutes.fr/high-tech/2077615-20170531-quoi-exactement-tweet-covfefe-donald-trump-persiste-signe',
7a8ed3ce
JB
135 $this->getLoggedInUserId()
136 );
137
138 $this->assertContains('foot', $content->getTags());
139 $this->assertContains('test_tag', $content->getTags());
140
1e0d8ad7 141 $this->assertCount(2, $content->getTags());
c7ea9b41
JB
142 }
143
144 public function testImportInstapaperWithFileAndMarkAllAsRead()
145 {
146 $this->logInAs('admin');
147 $client = $this->getClient();
148
149 $crawler = $client->request('GET', '/import/instapaper');
150 $form = $crawler->filter('form[name=upload_import_file] > button[type=submit]')->form();
151
f808b016 152 $file = new UploadedFile(__DIR__ . '/../fixtures/instapaper-export.csv', 'instapaper-read.csv');
c7ea9b41
JB
153
154 $data = [
155 'upload_import_file[file]' => $file,
156 'upload_import_file[mark_as_read]' => 1,
157 ];
158
159 $client->submit($form, $data);
160
f808b016 161 $this->assertSame(302, $client->getResponse()->getStatusCode());
c7ea9b41
JB
162
163 $crawler = $client->followRedirect();
164
165 $content1 = $client->getContainer()
166 ->get('doctrine.orm.entity_manager')
167 ->getRepository('WallabagCoreBundle:Entry')
168 ->findByUrlAndUserId(
169 'https://redditblog.com/2016/09/20/amp-and-reactredux/',
170 $this->getLoggedInUserId()
171 );
172
173 $this->assertTrue($content1->isArchived());
174
175 $content2 = $client->getContainer()
176 ->get('doctrine.orm.entity_manager')
177 ->getRepository('WallabagCoreBundle:Entry')
178 ->findByUrlAndUserId(
179 'https://medium.com/@the_minh/why-foursquare-swarm-is-still-my-favourite-social-network-e38228493e6c',
180 $this->getLoggedInUserId()
181 );
182
183 $this->assertTrue($content2->isArchived());
184
185 $this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
186 $this->assertContains('flashes.import.notice.summary', $body[0]);
187 }
188
189 public function testImportInstapaperWithEmptyFile()
190 {
191 $this->logInAs('admin');
192 $client = $this->getClient();
193
194 $crawler = $client->request('GET', '/import/instapaper');
195 $form = $crawler->filter('form[name=upload_import_file] > button[type=submit]')->form();
196
f808b016 197 $file = new UploadedFile(__DIR__ . '/../fixtures/test.txt', 'test.txt');
c7ea9b41
JB
198
199 $data = [
200 'upload_import_file[file]' => $file,
201 ];
202
203 $client->submit($form, $data);
204
f808b016 205 $this->assertSame(302, $client->getResponse()->getStatusCode());
c7ea9b41
JB
206
207 $crawler = $client->followRedirect();
208
209 $this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
210 $this->assertContains('flashes.import.notice.failed', $body[0]);
211 }
212}