]> git.immae.eu Git - github/wallabag/wallabag.git/blob - tests/Wallabag/ImportBundle/Controller/WallabagV1ControllerTest.php
Jump to Symfony 3.3 & update others deps
[github/wallabag/wallabag.git] / tests / Wallabag / ImportBundle / Controller / WallabagV1ControllerTest.php
1 <?php
2
3 namespace Tests\Wallabag\ImportBundle\Controller;
4
5 use Symfony\Component\HttpFoundation\File\UploadedFile;
6 use Tests\Wallabag\CoreBundle\WallabagCoreTestCase;
7
8 class WallabagV1ControllerTest extends WallabagCoreTestCase
9 {
10 public function testImportWallabag()
11 {
12 $this->logInAs('admin');
13 $client = $this->getClient();
14
15 $crawler = $client->request('GET', '/import/wallabag-v1');
16
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());
20 }
21
22 public function testImportWallabagWithRabbitEnabled()
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/wallabag-v1');
30
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());
34
35 $client->getContainer()->get('craue_config')->set('import_with_rabbitmq', 0);
36 }
37
38 public function testImportWallabagBadFile()
39 {
40 $this->logInAs('admin');
41 $client = $this->getClient();
42
43 $crawler = $client->request('GET', '/import/wallabag-v1');
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->assertSame(200, $client->getResponse()->getStatusCode());
53 }
54
55 public function testImportWallabagWithRedisEnabled()
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/wallabag-v1');
64
65 $this->assertSame(200, $client->getResponse()->getStatusCode());
66 $this->assertSame(1, $crawler->filter('form[name=upload_import_file] > button[type=submit]')->count());
67 $this->assertSame(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/wallabag-v1.json', 'wallabag-v1.json');
72
73 $data = [
74 'upload_import_file[file]' => $file,
75 ];
76
77 $client->submit($form, $data);
78
79 $this->assertSame(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.wallabag_v1'));
87
88 $client->getContainer()->get('craue_config')->set('import_with_redis', 0);
89 }
90
91 public function testImportWallabagWithFile()
92 {
93 $this->logInAs('admin');
94 $client = $this->getClient();
95
96 $crawler = $client->request('GET', '/import/wallabag-v1');
97 $form = $crawler->filter('form[name=upload_import_file] > button[type=submit]')->form();
98
99 $file = new UploadedFile(__DIR__ . '/../fixtures/wallabag-v1.json', 'wallabag-v1.json');
100
101 $data = [
102 'upload_import_file[file]' => $file,
103 ];
104
105 $client->submit($form, $data);
106
107 $this->assertSame(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 'http://www.framablog.org/index.php/post/2014/02/05/Framabag-service-libre-gratuit-interview-developpeur',
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->assertInstanceOf('Wallabag\CoreBundle\Entity\Entry', $content);
123 $this->assertEmpty($content->getMimetype(), 'Mimetype for http://www.framablog.org is empty');
124 $this->assertEmpty($content->getPreviewPicture(), 'Preview picture for http://www.framablog.org is empty');
125 $this->assertEmpty($content->getLanguage(), 'Language for http://www.framablog.org is empty');
126
127 $tags = $content->getTags();
128 $this->assertContains('foot', $tags, 'It includes the "foot" tag');
129 $this->assertContains('framabag', $tags, 'It includes the "framabag" tag');
130 $this->assertSame(2, count($tags));
131
132 $this->assertInstanceOf(\DateTime::class, $content->getCreatedAt());
133 }
134
135 public function testImportWallabagWithFileAndMarkAllAsRead()
136 {
137 $this->logInAs('admin');
138 $client = $this->getClient();
139
140 $crawler = $client->request('GET', '/import/wallabag-v1');
141 $form = $crawler->filter('form[name=upload_import_file] > button[type=submit]')->form();
142
143 $file = new UploadedFile(__DIR__ . '/../fixtures/wallabag-v1-read.json', 'wallabag-v1-read.json');
144
145 $data = [
146 'upload_import_file[file]' => $file,
147 'upload_import_file[mark_as_read]' => 1,
148 ];
149
150 $client->submit($form, $data);
151
152 $this->assertSame(302, $client->getResponse()->getStatusCode());
153
154 $crawler = $client->followRedirect();
155
156 $content1 = $client->getContainer()
157 ->get('doctrine.orm.entity_manager')
158 ->getRepository('WallabagCoreBundle:Entry')
159 ->findByUrlAndUserId(
160 'http://gilbert.pellegrom.me/recreating-the-square-slider',
161 $this->getLoggedInUserId()
162 );
163
164 $this->assertInstanceOf('Wallabag\CoreBundle\Entity\Entry', $content1);
165 $this->assertTrue($content1->isArchived());
166
167 $content2 = $client->getContainer()
168 ->get('doctrine.orm.entity_manager')
169 ->getRepository('WallabagCoreBundle:Entry')
170 ->findByUrlAndUserId(
171 'https://www.wallabag.org/features/',
172 $this->getLoggedInUserId()
173 );
174
175 $this->assertInstanceOf('Wallabag\CoreBundle\Entity\Entry', $content2);
176 $this->assertTrue($content2->isArchived());
177
178 $this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
179 $this->assertContains('flashes.import.notice.summary', $body[0]);
180 }
181
182 public function testImportWallabagWithEmptyFile()
183 {
184 $this->logInAs('admin');
185 $client = $this->getClient();
186
187 $crawler = $client->request('GET', '/import/wallabag-v1');
188 $form = $crawler->filter('form[name=upload_import_file] > button[type=submit]')->form();
189
190 $file = new UploadedFile(__DIR__ . '/../fixtures/test.txt', 'test.txt');
191
192 $data = [
193 'upload_import_file[file]' => $file,
194 ];
195
196 $client->submit($form, $data);
197
198 $this->assertSame(302, $client->getResponse()->getStatusCode());
199
200 $crawler = $client->followRedirect();
201
202 $this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
203 $this->assertContains('flashes.import.notice.failed', $body[0]);
204 }
205 }