]> git.immae.eu Git - github/wallabag/wallabag.git/blame - tests/Wallabag/ImportBundle/Controller/WallabagV2ControllerTest.php
Jump to Symfony 3.3 & update others deps
[github/wallabag/wallabag.git] / tests / Wallabag / ImportBundle / Controller / WallabagV2ControllerTest.php
CommitLineData
6785f4aa
NL
1<?php
2
23634d5d 3namespace Tests\Wallabag\ImportBundle\Controller;
6785f4aa 4
6785f4aa 5use Symfony\Component\HttpFoundation\File\UploadedFile;
f808b016 6use Tests\Wallabag\CoreBundle\WallabagCoreTestCase;
6785f4aa
NL
7
8class WallabagV2ControllerTest extends WallabagCoreTestCase
9{
10 public function testImportWallabag()
11 {
12 $this->logInAs('admin');
13 $client = $this->getClient();
14
15 $crawler = $client->request('GET', '/import/wallabag-v2');
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());
6785f4aa
NL
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-v2');
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-v2');
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-v2');
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-v2.json', 'wallabag-v2.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_v2'));
87
88 $client->getContainer()->get('craue_config')->set('import_with_redis', 0);
015c7a83
JB
89 }
90
6785f4aa
NL
91 public function testImportWallabagWithFile()
92 {
93 $this->logInAs('admin');
94 $client = $this->getClient();
95
96 $crawler = $client->request('GET', '/import/wallabag-v2');
97 $form = $crawler->filter('form[name=upload_import_file] > button[type=submit]')->form();
98
f808b016 99 $file = new UploadedFile(__DIR__ . '/../fixtures/wallabag-v2.json', 'wallabag-v2.json');
6785f4aa 100
4094ea47 101 $data = [
6785f4aa 102 'upload_import_file[file]' => $file,
4094ea47 103 ];
6785f4aa
NL
104
105 $client->submit($form, $data);
106
f808b016 107 $this->assertSame(302, $client->getResponse()->getStatusCode());
6785f4aa
NL
108
109 $crawler = $client->followRedirect();
110
4094ea47 111 $this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
4204a06b 112 $this->assertContains('flashes.import.notice.summary', $body[0]);
f21a5388
NL
113
114 $content = $client->getContainer()
115 ->get('doctrine.orm.entity_manager')
116 ->getRepository('WallabagCoreBundle:Entry')
117 ->findByUrlAndUserId(
118 'http://www.liberation.fr/planete/2015/10/26/refugies-l-ue-va-creer-100-000-places-d-accueil-dans-les-balkans_1408867',
119 $this->getLoggedInUserId()
120 );
121
f40c88eb
JB
122 $this->assertInstanceOf('Wallabag\CoreBundle\Entity\Entry', $content);
123
cf05a1ae 124 // empty because it wasn't re-imported
e668a812
JB
125 $this->assertEmpty($content->getMimetype(), 'Mimetype for http://www.liberation.fr is empty');
126 $this->assertEmpty($content->getPreviewPicture(), 'Preview picture for http://www.liberation.fr is empty');
127 $this->assertEmpty($content->getLanguage(), 'Language for http://www.liberation.fr is empty');
bad7df8c
JB
128
129 $tags = $content->getTags();
130 $this->assertContains('foot', $tags, 'It includes the "foot" tag');
f808b016 131 $this->assertSame(1, count($tags));
4c46e260
NL
132
133 $content = $client->getContainer()
134 ->get('doctrine.orm.entity_manager')
135 ->getRepository('WallabagCoreBundle:Entry')
136 ->findByUrlAndUserId(
137 'https://www.mediapart.fr/',
138 $this->getLoggedInUserId()
139 );
140
f40c88eb 141 $this->assertInstanceOf('Wallabag\CoreBundle\Entity\Entry', $content);
d8a35aba
JB
142 $this->assertNotEmpty($content->getMimetype(), 'Mimetype for https://www.mediapart.fr is ok');
143 $this->assertNotEmpty($content->getPreviewPicture(), 'Preview picture for https://www.mediapart.fr is ok');
144 $this->assertNotEmpty($content->getLanguage(), 'Language for https://www.mediapart.fr is ok');
bad7df8c
JB
145
146 $tags = $content->getTags();
147 $this->assertContains('foot', $tags, 'It includes the "foot" tag');
148 $this->assertContains('mediapart', $tags, 'It includes the "mediapart" tag');
149 $this->assertContains('blog', $tags, 'It includes the "blog" tag');
f808b016 150 $this->assertSame(3, count($tags));
bad7df8c 151
6d65c0a8 152 $this->assertInstanceOf(\DateTime::class, $content->getCreatedAt());
f808b016 153 $this->assertSame('2016-09-08', $content->getCreatedAt()->format('Y-m-d'));
047fdc76 154 $this->assertTrue($content->isStarred(), 'Entry is starred');
6785f4aa
NL
155 }
156
157 public function testImportWallabagWithEmptyFile()
158 {
159 $this->logInAs('admin');
160 $client = $this->getClient();
161
162 $crawler = $client->request('GET', '/import/wallabag-v2');
163 $form = $crawler->filter('form[name=upload_import_file] > button[type=submit]')->form();
164
f808b016 165 $file = new UploadedFile(__DIR__ . '/../fixtures/test.txt', 'test.txt');
6785f4aa 166
4094ea47 167 $data = [
6785f4aa 168 'upload_import_file[file]' => $file,
4094ea47 169 ];
6785f4aa
NL
170
171 $client->submit($form, $data);
172
f808b016 173 $this->assertSame(302, $client->getResponse()->getStatusCode());
6785f4aa
NL
174
175 $crawler = $client->followRedirect();
176
4094ea47 177 $this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
4204a06b 178 $this->assertContains('flashes.import.notice.failed', $body[0]);
6785f4aa
NL
179 }
180}