]>
Commit | Line | Data |
---|---|---|
7019c7cf JB |
1 | <?php |
2 | ||
23634d5d | 3 | namespace Tests\Wallabag\ImportBundle\Controller; |
7019c7cf | 4 | |
7019c7cf | 5 | use Symfony\Component\HttpFoundation\File\UploadedFile; |
f808b016 | 6 | use Tests\Wallabag\CoreBundle\WallabagCoreTestCase; |
7019c7cf JB |
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 | ||
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()); | |
7019c7cf JB |
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 | ||
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 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 | ||
f808b016 | 52 | $this->assertSame(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 | 64 | |
f808b016 JB |
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()); | |
47d7c682 | 68 | |
015c7a83 JB |
69 | $form = $crawler->filter('form[name=upload_import_file] > button[type=submit]')->form(); |
70 | ||
f808b016 | 71 | $file = new UploadedFile(__DIR__ . '/../fixtures/wallabag-v1.json', 'wallabag-v1.json'); |
47d7c682 | 72 | |
015c7a83 | 73 | $data = [ |
47d7c682 | 74 | 'upload_import_file[file]' => $file, |
015c7a83 JB |
75 | ]; |
76 | ||
77 | $client->submit($form, $data); | |
78 | ||
f808b016 | 79 | $this->assertSame(302, $client->getResponse()->getStatusCode()); |
47d7c682 JB |
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 | ||
f808b016 | 99 | $file = new UploadedFile(__DIR__ . '/../fixtures/wallabag-v1.json', 'wallabag-v1.json'); |
7019c7cf | 100 | |
4094ea47 | 101 | $data = [ |
7019c7cf | 102 | 'upload_import_file[file]' => $file, |
4094ea47 | 103 | ]; |
7019c7cf JB |
104 | |
105 | $client->submit($form, $data); | |
106 | ||
f808b016 | 107 | $this->assertSame(302, $client->getResponse()->getStatusCode()); |
7019c7cf JB |
108 | |
109 | $crawler = $client->followRedirect(); | |
110 | ||
fca2b052 TC |
111 | $content = $client->getContainer() |
112 | ->get('doctrine.orm.entity_manager') | |
113 | ->getRepository('WallabagCoreBundle:Entry') | |
114 | ->findByUrlAndUserId( | |
e668a812 | 115 | 'http://www.framablog.org/index.php/post/2014/02/05/Framabag-service-libre-gratuit-interview-developpeur', |
fca2b052 TC |
116 | $this->getLoggedInUserId() |
117 | ); | |
118 | ||
4094ea47 | 119 | $this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text'])); |
4204a06b | 120 | $this->assertContains('flashes.import.notice.summary', $body[0]); |
6d65c0a8 | 121 | |
f40c88eb | 122 | $this->assertInstanceOf('Wallabag\CoreBundle\Entity\Entry', $content); |
e668a812 JB |
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'); | |
bad7df8c JB |
126 | |
127 | $tags = $content->getTags(); | |
128 | $this->assertContains('foot', $tags, 'It includes the "foot" tag'); | |
7036d91f | 129 | $this->assertContains('framabag', $tags, 'It includes the "framabag" tag'); |
2a1ceb67 | 130 | $this->assertSame(2, \count($tags)); |
bad7df8c | 131 | |
6d65c0a8 | 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 | ||
f808b016 | 143 | $file = new UploadedFile(__DIR__ . '/../fixtures/wallabag-v1-read.json', 'wallabag-v1-read.json'); |
c32ae320 | 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 | ||
f808b016 | 152 | $this->assertSame(302, $client->getResponse()->getStatusCode()); |
c32ae320 TC |
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 | ||
f40c88eb | 164 | $this->assertInstanceOf('Wallabag\CoreBundle\Entity\Entry', $content1); |
c32ae320 TC |
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 | ||
f40c88eb | 175 | $this->assertInstanceOf('Wallabag\CoreBundle\Entity\Entry', $content2); |
c32ae320 TC |
176 | $this->assertTrue($content2->isArchived()); |
177 | ||
4094ea47 | 178 | $this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text'])); |
4204a06b | 179 | $this->assertContains('flashes.import.notice.summary', $body[0]); |
c32ae320 TC |
180 | } |
181 | ||
7019c7cf JB |
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 | ||
f808b016 | 190 | $file = new UploadedFile(__DIR__ . '/../fixtures/test.txt', 'test.txt'); |
7019c7cf | 191 | |
4094ea47 | 192 | $data = [ |
7019c7cf | 193 | 'upload_import_file[file]' => $file, |
4094ea47 | 194 | ]; |
7019c7cf JB |
195 | |
196 | $client->submit($form, $data); | |
197 | ||
f808b016 | 198 | $this->assertSame(302, $client->getResponse()->getStatusCode()); |
7019c7cf JB |
199 | |
200 | $crawler = $client->followRedirect(); | |
201 | ||
4094ea47 | 202 | $this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text'])); |
4204a06b | 203 | $this->assertContains('flashes.import.notice.failed', $body[0]); |
7019c7cf JB |
204 | } |
205 | } |