]> git.immae.eu Git - github/wallabag/wallabag.git/blame - tests/Wallabag/ImportBundle/Controller/WallabagV1ControllerTest.php
Added notmatches operator for tagging rule
[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 56 {
0e0102b6 57 $this->checkRedis();
015c7a83
JB
58 $this->logInAs('admin');
59 $client = $this->getClient();
60
47d7c682
JB
61 $client->getContainer()->get('craue_config')->set('import_with_redis', 1);
62
015c7a83 63 $crawler = $client->request('GET', '/import/wallabag-v1');
47d7c682
JB
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
015c7a83
JB
69 $form = $crawler->filter('form[name=upload_import_file] > button[type=submit]')->form();
70
47d7c682
JB
71 $file = new UploadedFile(__DIR__.'/../fixtures/wallabag-v1.json', 'wallabag-v1.json');
72
015c7a83 73 $data = [
47d7c682 74 'upload_import_file[file]' => $file,
015c7a83
JB
75 ];
76
77 $client->submit($form, $data);
78
47d7c682
JB
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.wallabag_v1'));
87
88 $client->getContainer()->get('craue_config')->set('import_with_redis', 0);
015c7a83
JB
89 }
90
7019c7cf
JB
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
4094ea47 101 $data = [
7019c7cf 102 'upload_import_file[file]' => $file,
4094ea47 103 ];
7019c7cf
JB
104
105 $client->submit($form, $data);
106
107 $this->assertEquals(302, $client->getResponse()->getStatusCode());
108
109 $crawler = $client->followRedirect();
110
fca2b052
TC
111 $content = $client->getContainer()
112 ->get('doctrine.orm.entity_manager')
113 ->getRepository('WallabagCoreBundle:Entry')
114 ->findByUrlAndUserId(
dba1e0b1 115 'https://framablog.org/2014/02/05/framabag-service-libre-gratuit-interview-developpeur/',
fca2b052
TC
116 $this->getLoggedInUserId()
117 );
118
119 $tag = $client->getContainer()
120 ->get('doctrine.orm.entity_manager')
121 ->getRepository('WallabagCoreBundle:Tag')
122 ->findOneByLabel('Framabag');
123
124 $this->assertTrue($content->getTags()->contains($tag));
125
4094ea47 126 $this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
4204a06b 127 $this->assertContains('flashes.import.notice.summary', $body[0]);
6d65c0a8 128
dba1e0b1
JC
129 $this->assertNotEmpty($content->getMimetype(), 'Mimetype for http://www.framablog.org is ok');
130 $this->assertNotEmpty($content->getPreviewPicture(), 'Preview picture for http://www.framablog.org is ok');
131 $this->assertNotEmpty($content->getLanguage(), 'Language for http://www.framablog.org is ok');
fdd725f5 132 $this->assertEquals(2, count($content->getTags()));
6d65c0a8 133 $this->assertInstanceOf(\DateTime::class, $content->getCreatedAt());
7019c7cf
JB
134 }
135
c32ae320
TC
136 public function testImportWallabagWithFileAndMarkAllAsRead()
137 {
138 $this->logInAs('admin');
139 $client = $this->getClient();
140
141 $crawler = $client->request('GET', '/import/wallabag-v1');
142 $form = $crawler->filter('form[name=upload_import_file] > button[type=submit]')->form();
143
144 $file = new UploadedFile(__DIR__.'/../fixtures/wallabag-v1-read.json', 'wallabag-v1-read.json');
145
4094ea47 146 $data = [
c32ae320
TC
147 'upload_import_file[file]' => $file,
148 'upload_import_file[mark_as_read]' => 1,
4094ea47 149 ];
c32ae320
TC
150
151 $client->submit($form, $data);
152
153 $this->assertEquals(302, $client->getResponse()->getStatusCode());
154
155 $crawler = $client->followRedirect();
156
157 $content1 = $client->getContainer()
158 ->get('doctrine.orm.entity_manager')
159 ->getRepository('WallabagCoreBundle:Entry')
160 ->findByUrlAndUserId(
161 'http://gilbert.pellegrom.me/recreating-the-square-slider',
162 $this->getLoggedInUserId()
163 );
164
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->assertTrue($content2->isArchived());
176
4094ea47 177 $this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
4204a06b 178 $this->assertContains('flashes.import.notice.summary', $body[0]);
c32ae320
TC
179 }
180
7019c7cf
JB
181 public function testImportWallabagWithEmptyFile()
182 {
183 $this->logInAs('admin');
184 $client = $this->getClient();
185
186 $crawler = $client->request('GET', '/import/wallabag-v1');
187 $form = $crawler->filter('form[name=upload_import_file] > button[type=submit]')->form();
188
189 $file = new UploadedFile(__DIR__.'/../fixtures/test.txt', 'test.txt');
190
4094ea47 191 $data = [
7019c7cf 192 'upload_import_file[file]' => $file,
4094ea47 193 ];
7019c7cf
JB
194
195 $client->submit($form, $data);
196
197 $this->assertEquals(302, $client->getResponse()->getStatusCode());
198
199 $crawler = $client->followRedirect();
200
4094ea47 201 $this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
4204a06b 202 $this->assertContains('flashes.import.notice.failed', $body[0]);
7019c7cf
JB
203 }
204}