]> git.immae.eu Git - github/wallabag/wallabag.git/blame - tests/Wallabag/ImportBundle/Controller/WallabagV1ControllerTest.php
Display a message when async import won’t work
[github/wallabag/wallabag.git] / tests / Wallabag / ImportBundle / Controller / WallabagV1ControllerTest.php
CommitLineData
7019c7cf
JB
1<?php
2
23634d5d 3namespace Tests\Wallabag\ImportBundle\Controller;
7019c7cf 4
23634d5d 5use Tests\Wallabag\CoreBundle\WallabagCoreTestCase;
7019c7cf
JB
6use Symfony\Component\HttpFoundation\File\UploadedFile;
7
8class 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->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
13470c35
JB
22 public function testImportWallabagWithRabbitEnabled()
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/wallabag-v1');
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
b3437d58
JB
35 $client->getContainer()->get('craue_config')->set('import_with_rabbitmq', 0);
36 }
37
47d7c682 38 public function testImportWallabagBadFile()
b3437d58
JB
39 {
40 $this->logInAs('admin');
41 $client = $this->getClient();
42
b3437d58 43 $crawler = $client->request('GET', '/import/wallabag-v1');
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
52 $this->assertEquals(200, $client->getResponse()->getStatusCode());
13470c35
JB
53 }
54
47d7c682 55 public function testImportWallabagWithRedisEnabled()
015c7a83
JB
56 {
57 $this->logInAs('admin');
58 $client = $this->getClient();
59
47d7c682
JB
60 $client->getContainer()->get('craue_config')->set('import_with_redis', 1);
61
015c7a83 62 $crawler = $client->request('GET', '/import/wallabag-v1');
47d7c682
JB
63
64 $this->assertEquals(200, $client->getResponse()->getStatusCode());
65 $this->assertEquals(1, $crawler->filter('form[name=upload_import_file] > button[type=submit]')->count());
66 $this->assertEquals(1, $crawler->filter('input[type=file]')->count());
67
015c7a83
JB
68 $form = $crawler->filter('form[name=upload_import_file] > button[type=submit]')->form();
69
47d7c682
JB
70 $file = new UploadedFile(__DIR__.'/../fixtures/wallabag-v1.json', 'wallabag-v1.json');
71
015c7a83 72 $data = [
47d7c682 73 'upload_import_file[file]' => $file,
015c7a83
JB
74 ];
75
76 $client->submit($form, $data);
77
47d7c682
JB
78 $this->assertEquals(302, $client->getResponse()->getStatusCode());
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.wallabag_v1'));
86
87 $client->getContainer()->get('craue_config')->set('import_with_redis', 0);
015c7a83
JB
88 }
89
7019c7cf
JB
90 public function testImportWallabagWithFile()
91 {
92 $this->logInAs('admin');
93 $client = $this->getClient();
94
95 $crawler = $client->request('GET', '/import/wallabag-v1');
96 $form = $crawler->filter('form[name=upload_import_file] > button[type=submit]')->form();
97
98 $file = new UploadedFile(__DIR__.'/../fixtures/wallabag-v1.json', 'wallabag-v1.json');
99
4094ea47 100 $data = [
7019c7cf 101 'upload_import_file[file]' => $file,
4094ea47 102 ];
7019c7cf
JB
103
104 $client->submit($form, $data);
105
106 $this->assertEquals(302, $client->getResponse()->getStatusCode());
107
108 $crawler = $client->followRedirect();
109
fca2b052
TC
110 $content = $client->getContainer()
111 ->get('doctrine.orm.entity_manager')
112 ->getRepository('WallabagCoreBundle:Entry')
113 ->findByUrlAndUserId(
114 'http://www.framablog.org/index.php/post/2014/02/05/Framabag-service-libre-gratuit-interview-developpeur',
115 $this->getLoggedInUserId()
116 );
117
118 $tag = $client->getContainer()
119 ->get('doctrine.orm.entity_manager')
120 ->getRepository('WallabagCoreBundle:Tag')
121 ->findOneByLabel('Framabag');
122
123 $this->assertTrue($content->getTags()->contains($tag));
124
4094ea47 125 $this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
4204a06b 126 $this->assertContains('flashes.import.notice.summary', $body[0]);
6d65c0a8
JB
127
128 $this->assertEmpty($content->getMimetype());
129 $this->assertEmpty($content->getPreviewPicture());
130 $this->assertEmpty($content->getLanguage());
131 $this->assertEquals(1, count($content->getTags()));
132 $this->assertInstanceOf(\DateTime::class, $content->getCreatedAt());
7019c7cf
JB
133 }
134
c32ae320
TC
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
4094ea47 145 $data = [
c32ae320
TC
146 'upload_import_file[file]' => $file,
147 'upload_import_file[mark_as_read]' => 1,
4094ea47 148 ];
c32ae320
TC
149
150 $client->submit($form, $data);
151
152 $this->assertEquals(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->assertTrue($content1->isArchived());
165
166 $content2 = $client->getContainer()
167 ->get('doctrine.orm.entity_manager')
168 ->getRepository('WallabagCoreBundle:Entry')
169 ->findByUrlAndUserId(
170 'https://www.wallabag.org/features/',
171 $this->getLoggedInUserId()
172 );
173
174 $this->assertTrue($content2->isArchived());
175
4094ea47 176 $this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
4204a06b 177 $this->assertContains('flashes.import.notice.summary', $body[0]);
c32ae320
TC
178 }
179
7019c7cf
JB
180 public function testImportWallabagWithEmptyFile()
181 {
182 $this->logInAs('admin');
183 $client = $this->getClient();
184
185 $crawler = $client->request('GET', '/import/wallabag-v1');
186 $form = $crawler->filter('form[name=upload_import_file] > button[type=submit]')->form();
187
188 $file = new UploadedFile(__DIR__.'/../fixtures/test.txt', 'test.txt');
189
4094ea47 190 $data = [
7019c7cf 191 'upload_import_file[file]' => $file,
4094ea47 192 ];
7019c7cf
JB
193
194 $client->submit($form, $data);
195
196 $this->assertEquals(302, $client->getResponse()->getStatusCode());
197
198 $crawler = $client->followRedirect();
199
4094ea47 200 $this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
4204a06b 201 $this->assertContains('flashes.import.notice.failed', $body[0]);
7019c7cf
JB
202 }
203}