]> git.immae.eu Git - github/wallabag/wallabag.git/blame - tests/Wallabag/ImportBundle/Controller/ReadabilityControllerTest.php
Add a real configuration for CS-Fixer
[github/wallabag/wallabag.git] / tests / Wallabag / ImportBundle / Controller / ReadabilityControllerTest.php
CommitLineData
a1a10770
JB
1<?php
2
3namespace Tests\Wallabag\ImportBundle\Controller;
4
a1a10770 5use Symfony\Component\HttpFoundation\File\UploadedFile;
f808b016 6use Tests\Wallabag\CoreBundle\WallabagCoreTestCase;
a1a10770
JB
7
8class ReadabilityControllerTest extends WallabagCoreTestCase
9{
10 public function testImportReadability()
11 {
12 $this->logInAs('admin');
13 $client = $this->getClient();
14
15 $crawler = $client->request('GET', '/import/readability');
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());
a1a10770
JB
20 }
21
13470c35
JB
22 public function testImportReadabilityWithRabbitEnabled()
23 {
24 $this->logInAs('admin');
25 $client = $this->getClient();
26
b3437d58 27 $client->getContainer()->get('craue_config')->set('import_with_rabbitmq', 1);
13470c35
JB
28
29 $crawler = $client->request('GET', '/import/readability');
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());
13470c35 34
b3437d58
JB
35 $client->getContainer()->get('craue_config')->set('import_with_rabbitmq', 0);
36 }
37
47d7c682 38 public function testImportReadabilityBadFile()
b3437d58
JB
39 {
40 $this->logInAs('admin');
41 $client = $this->getClient();
42
b3437d58 43 $crawler = $client->request('GET', '/import/readability');
47d7c682 44 $form = $crawler->filter('form[name=upload_import_file] > button[type=submit]')->form();
b3437d58 45
47d7c682
JB
46 $data = [
47 'upload_import_file[file]' => '',
48 ];
b3437d58 49
47d7c682
JB
50 $client->submit($form, $data);
51
f808b016 52 $this->assertSame(200, $client->getResponse()->getStatusCode());
13470c35
JB
53 }
54
47d7c682 55 public function testImportReadabilityWithRedisEnabled()
015c7a83 56 {
0e0102b6 57 $this->checkRedis();
015c7a83
JB
58 $this->logInAs('admin');
59 $client = $this->getClient();
47d7c682
JB
60 $client->getContainer()->get('craue_config')->set('import_with_redis', 1);
61
015c7a83 62 $crawler = $client->request('GET', '/import/readability');
47d7c682 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());
47d7c682 67
015c7a83
JB
68 $form = $crawler->filter('form[name=upload_import_file] > button[type=submit]')->form();
69
f808b016 70 $file = new UploadedFile(__DIR__ . '/../fixtures/readability.json', 'readability.json');
47d7c682 71
015c7a83 72 $data = [
47d7c682 73 'upload_import_file[file]' => $file,
015c7a83
JB
74 ];
75
76 $client->submit($form, $data);
77
f808b016 78 $this->assertSame(302, $client->getResponse()->getStatusCode());
47d7c682
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.readability'));
86
87 $client->getContainer()->get('craue_config')->set('import_with_redis', 0);
015c7a83
JB
88 }
89
a1a10770
JB
90 public function testImportReadabilityWithFile()
91 {
92 $this->logInAs('admin');
93 $client = $this->getClient();
94
95 $crawler = $client->request('GET', '/import/readability');
96 $form = $crawler->filter('form[name=upload_import_file] > button[type=submit]')->form();
97
f808b016 98 $file = new UploadedFile(__DIR__ . '/../fixtures/readability.json', 'readability.json');
a1a10770
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());
a1a10770
JB
107
108 $crawler = $client->followRedirect();
109
110 $content = $client->getContainer()
111 ->get('doctrine.orm.entity_manager')
112 ->getRepository('WallabagCoreBundle:Entry')
113 ->findByUrlAndUserId(
5cc367b8 114 'http://www.zataz.com/90-des-dossiers-medicaux-des-coreens-du-sud-vendus-a-des-entreprises-privees/',
a1a10770
JB
115 $this->getLoggedInUserId()
116 );
117
118 $this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
119 $this->assertContains('flashes.import.notice.summary', $body[0]);
6d65c0a8 120
5cc367b8
JB
121 $this->assertNotEmpty($content->getMimetype(), 'Mimetype for http://www.zataz.com is ok');
122 $this->assertNotEmpty($content->getPreviewPicture(), 'Preview picture for http://www.zataz.com is ok');
123 $this->assertNotEmpty($content->getLanguage(), 'Language for http://www.zataz.com is ok');
bad7df8c
JB
124
125 $tags = $content->getTags();
126 $this->assertContains('foot', $tags, 'It includes the "foot" tag');
f808b016 127 $this->assertSame(1, count($tags));
bad7df8c 128
6d65c0a8 129 $this->assertInstanceOf(\DateTime::class, $content->getCreatedAt());
f808b016 130 $this->assertSame('2016-09-08', $content->getCreatedAt()->format('Y-m-d'));
a1a10770
JB
131 }
132
133 public function testImportReadabilityWithFileAndMarkAllAsRead()
134 {
135 $this->logInAs('admin');
136 $client = $this->getClient();
137
138 $crawler = $client->request('GET', '/import/readability');
139 $form = $crawler->filter('form[name=upload_import_file] > button[type=submit]')->form();
140
f808b016 141 $file = new UploadedFile(__DIR__ . '/../fixtures/readability-read.json', 'readability-read.json');
a1a10770
JB
142
143 $data = [
144 'upload_import_file[file]' => $file,
145 'upload_import_file[mark_as_read]' => 1,
146 ];
147
148 $client->submit($form, $data);
149
f808b016 150 $this->assertSame(302, $client->getResponse()->getStatusCode());
a1a10770
JB
151
152 $crawler = $client->followRedirect();
153
154 $content1 = $client->getContainer()
155 ->get('doctrine.orm.entity_manager')
156 ->getRepository('WallabagCoreBundle:Entry')
157 ->findByUrlAndUserId(
158 'https://blog.travis-ci.com/2016-07-28-what-we-learned-from-analyzing-2-million-travis-builds/',
159 $this->getLoggedInUserId()
160 );
161
162 $this->assertTrue($content1->isArchived());
163
164 $content2 = $client->getContainer()
165 ->get('doctrine.orm.entity_manager')
166 ->getRepository('WallabagCoreBundle:Entry')
167 ->findByUrlAndUserId(
168 'https://facebook.github.io/graphql/',
169 $this->getLoggedInUserId()
170 );
171
172 $this->assertTrue($content2->isArchived());
173
174 $this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
175 $this->assertContains('flashes.import.notice.summary', $body[0]);
176 }
177
178 public function testImportReadabilityWithEmptyFile()
179 {
180 $this->logInAs('admin');
181 $client = $this->getClient();
182
183 $crawler = $client->request('GET', '/import/readability');
184 $form = $crawler->filter('form[name=upload_import_file] > button[type=submit]')->form();
185
f808b016 186 $file = new UploadedFile(__DIR__ . '/../fixtures/test.txt', 'test.txt');
a1a10770
JB
187
188 $data = [
189 'upload_import_file[file]' => $file,
190 ];
191
192 $client->submit($form, $data);
193
f808b016 194 $this->assertSame(302, $client->getResponse()->getStatusCode());
a1a10770
JB
195
196 $crawler = $client->followRedirect();
197
198 $this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
199 $this->assertContains('flashes.import.notice.failed', $body[0]);
200 }
201}