]> git.immae.eu Git - github/wallabag/wallabag.git/blob - tests/Wallabag/ImportBundle/Controller/ReadabilityControllerTest.php
Merge pull request #2306 from wallabag/redis-rabbit-check
[github/wallabag/wallabag.git] / tests / Wallabag / ImportBundle / Controller / ReadabilityControllerTest.php
1 <?php
2
3 namespace Tests\Wallabag\ImportBundle\Controller;
4
5 use Tests\Wallabag\CoreBundle\WallabagCoreTestCase;
6 use Symfony\Component\HttpFoundation\File\UploadedFile;
7
8 class 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
17 $this->assertEquals(200, $client->getResponse()->getStatusCode());
18 $this->assertEquals(1, $crawler->filter('form[name=upload_import_file] > button[type=submit]')->count());
19 $this->assertEquals(1, $crawler->filter('input[type=file]')->count());
20 }
21
22 public function testImportReadabilityWithRabbitEnabled()
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/readability');
30
31 $this->assertEquals(200, $client->getResponse()->getStatusCode());
32 $this->assertEquals(1, $crawler->filter('form[name=upload_import_file] > button[type=submit]')->count());
33 $this->assertEquals(1, $crawler->filter('input[type=file]')->count());
34
35 $client->getContainer()->get('craue_config')->set('import_with_rabbitmq', 0);
36 }
37
38 public function testImportReadabilityBadFile()
39 {
40 $this->logInAs('admin');
41 $client = $this->getClient();
42
43 $crawler = $client->request('GET', '/import/readability');
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
52 $this->assertEquals(200, $client->getResponse()->getStatusCode());
53 }
54
55 public function testImportReadabilityWithRedisEnabled()
56 {
57 $this->checkRedis();
58 $this->logInAs('admin');
59 $client = $this->getClient();
60
61 $client->getContainer()->get('craue_config')->set('import_with_redis', 1);
62
63 $crawler = $client->request('GET', '/import/readability');
64
65 $this->assertEquals(200, $client->getResponse()->getStatusCode());
66 $this->assertEquals(1, $crawler->filter('form[name=upload_import_file] > button[type=submit]')->count());
67 $this->assertEquals(1, $crawler->filter('input[type=file]')->count());
68
69 $form = $crawler->filter('form[name=upload_import_file] > button[type=submit]')->form();
70
71 $file = new UploadedFile(__DIR__.'/../fixtures/readability.json', 'readability.json');
72
73 $data = [
74 'upload_import_file[file]' => $file,
75 ];
76
77 $client->submit($form, $data);
78
79 $this->assertEquals(302, $client->getResponse()->getStatusCode());
80
81 $crawler = $client->followRedirect();
82
83 $this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
84 $this->assertContains('flashes.import.notice.summary', $body[0]);
85
86 $this->assertNotEmpty($client->getContainer()->get('wallabag_core.redis.client')->lpop('wallabag.import.readability'));
87
88 $client->getContainer()->get('craue_config')->set('import_with_redis', 0);
89 }
90
91 public function testImportReadabilityWithFile()
92 {
93 $this->logInAs('admin');
94 $client = $this->getClient();
95
96 $crawler = $client->request('GET', '/import/readability');
97 $form = $crawler->filter('form[name=upload_import_file] > button[type=submit]')->form();
98
99 $file = new UploadedFile(__DIR__.'/../fixtures/readability.json', 'readability.json');
100
101 $data = [
102 'upload_import_file[file]' => $file,
103 ];
104
105 $client->submit($form, $data);
106
107 $this->assertEquals(302, $client->getResponse()->getStatusCode());
108
109 $crawler = $client->followRedirect();
110
111 $content = $client->getContainer()
112 ->get('doctrine.orm.entity_manager')
113 ->getRepository('WallabagCoreBundle:Entry')
114 ->findByUrlAndUserId(
115 'https://venngage.com/blog/hashtags-are-worthless/',
116 $this->getLoggedInUserId()
117 );
118
119 $this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
120 $this->assertContains('flashes.import.notice.summary', $body[0]);
121
122 $this->assertNotEmpty($content->getMimetype());
123 $this->assertNotEmpty($content->getPreviewPicture());
124 $this->assertNotEmpty($content->getLanguage());
125 $this->assertEquals(0, count($content->getTags()));
126 $this->assertInstanceOf(\DateTime::class, $content->getCreatedAt());
127 $this->assertEquals('2016-08-25', $content->getCreatedAt()->format('Y-m-d'));
128 }
129
130 public function testImportReadabilityWithFileAndMarkAllAsRead()
131 {
132 $this->logInAs('admin');
133 $client = $this->getClient();
134
135 $crawler = $client->request('GET', '/import/readability');
136 $form = $crawler->filter('form[name=upload_import_file] > button[type=submit]')->form();
137
138 $file = new UploadedFile(__DIR__.'/../fixtures/readability-read.json', 'readability-read.json');
139
140 $data = [
141 'upload_import_file[file]' => $file,
142 'upload_import_file[mark_as_read]' => 1,
143 ];
144
145 $client->submit($form, $data);
146
147 $this->assertEquals(302, $client->getResponse()->getStatusCode());
148
149 $crawler = $client->followRedirect();
150
151 $content1 = $client->getContainer()
152 ->get('doctrine.orm.entity_manager')
153 ->getRepository('WallabagCoreBundle:Entry')
154 ->findByUrlAndUserId(
155 'https://blog.travis-ci.com/2016-07-28-what-we-learned-from-analyzing-2-million-travis-builds/',
156 $this->getLoggedInUserId()
157 );
158
159 $this->assertTrue($content1->isArchived());
160
161 $content2 = $client->getContainer()
162 ->get('doctrine.orm.entity_manager')
163 ->getRepository('WallabagCoreBundle:Entry')
164 ->findByUrlAndUserId(
165 'https://facebook.github.io/graphql/',
166 $this->getLoggedInUserId()
167 );
168
169 $this->assertTrue($content2->isArchived());
170
171 $this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
172 $this->assertContains('flashes.import.notice.summary', $body[0]);
173 }
174
175 public function testImportReadabilityWithEmptyFile()
176 {
177 $this->logInAs('admin');
178 $client = $this->getClient();
179
180 $crawler = $client->request('GET', '/import/readability');
181 $form = $crawler->filter('form[name=upload_import_file] > button[type=submit]')->form();
182
183 $file = new UploadedFile(__DIR__.'/../fixtures/test.txt', 'test.txt');
184
185 $data = [
186 'upload_import_file[file]' => $file,
187 ];
188
189 $client->submit($form, $data);
190
191 $this->assertEquals(302, $client->getResponse()->getStatusCode());
192
193 $crawler = $client->followRedirect();
194
195 $this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
196 $this->assertContains('flashes.import.notice.failed', $body[0]);
197 }
198 }