]> git.immae.eu Git - github/wallabag/wallabag.git/blame - tests/Wallabag/ImportBundle/Controller/FirefoxControllerTest.php
Enable PHPStan
[github/wallabag/wallabag.git] / tests / Wallabag / ImportBundle / Controller / FirefoxControllerTest.php
CommitLineData
ae669126
TC
1<?php
2
3namespace Tests\Wallabag\ImportBundle\Controller;
4
ae669126 5use Symfony\Component\HttpFoundation\File\UploadedFile;
f808b016 6use Tests\Wallabag\CoreBundle\WallabagCoreTestCase;
ae669126 7
59201088 8class FirefoxControllerTest extends WallabagCoreTestCase
ae669126 9{
59201088 10 public function testImportFirefox()
ae669126
TC
11 {
12 $this->logInAs('admin');
13 $client = $this->getClient();
14
59201088 15 $crawler = $client->request('GET', '/import/firefox');
ae669126 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());
ae669126
TC
20 }
21
59201088
TC
22 public function testImportFirefoxWithRabbitEnabled()
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/firefox');
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());
59201088
TC
34
35 $client->getContainer()->get('craue_config')->set('import_with_rabbitmq', 0);
36 }
37
38 public function testImportFirefoxBadFile()
ae669126
TC
39 {
40 $this->logInAs('admin');
41 $client = $this->getClient();
42
59201088
TC
43 $crawler = $client->request('GET', '/import/firefox');
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
f808b016 52 $this->assertSame(200, $client->getResponse()->getStatusCode());
59201088
TC
53 }
54
55 public function testImportFirefoxWithRedisEnabled()
56 {
e40bed36 57 $this->checkRedis();
59201088
TC
58 $this->logInAs('admin');
59 $client = $this->getClient();
60 $client->getContainer()->get('craue_config')->set('import_with_redis', 1);
61
62 $crawler = $client->request('GET', '/import/firefox');
63
f808b016
JB
64 $this->assertSame(200, $client->getResponse()->getStatusCode());
65 $this->assertSame(1, $crawler->filter('form[name=upload_import_file] > button[type=submit]')->count());
66 $this->assertSame(1, $crawler->filter('input[type=file]')->count());
59201088 67
ae669126
TC
68 $form = $crawler->filter('form[name=upload_import_file] > button[type=submit]')->form();
69
f808b016 70 $file = new UploadedFile(__DIR__ . '/../fixtures/firefox-bookmarks.json', 'Bookmarks');
ae669126
TC
71
72 $data = [
73 'upload_import_file[file]' => $file,
74 ];
75
76 $client->submit($form, $data);
77
f808b016 78 $this->assertSame(302, $client->getResponse()->getStatusCode());
ae669126
TC
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
59201088 85 $this->assertNotEmpty($client->getContainer()->get('wallabag_core.redis.client')->lpop('wallabag.import.firefox'));
ae669126 86
59201088 87 $client->getContainer()->get('craue_config')->set('import_with_redis', 0);
ae669126
TC
88 }
89
59201088 90 public function testImportWallabagWithFirefoxFile()
f7c55b38
NL
91 {
92 $this->logInAs('admin');
93 $client = $this->getClient();
94
59201088 95 $crawler = $client->request('GET', '/import/firefox');
f7c55b38
NL
96 $form = $crawler->filter('form[name=upload_import_file] > button[type=submit]')->form();
97
f808b016 98 $file = new UploadedFile(__DIR__ . '/../fixtures/firefox-bookmarks.json', 'Bookmarks');
f7c55b38
NL
99
100 $data = [
101 'upload_import_file[file]' => $file,
102 ];
103
104 $client->submit($form, $data);
105
f808b016 106 $this->assertSame(302, $client->getResponse()->getStatusCode());
f7c55b38
NL
107
108 $crawler = $client->followRedirect();
109
110 $this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
111 $this->assertContains('flashes.import.notice.summary', $body[0]);
112
113 $content = $client->getContainer()
114 ->get('doctrine.orm.entity_manager')
115 ->getRepository('WallabagCoreBundle:Entry')
116 ->findByUrlAndUserId(
d81bf605 117 'https://lexpansion.lexpress.fr/high-tech/orange-offre-un-meilleur-reseau-mobile-que-bouygues-et-sfr-free-derriere_1811554.html',
f7c55b38
NL
118 $this->getLoggedInUserId()
119 );
120
f40c88eb 121 $this->assertInstanceOf('Wallabag\CoreBundle\Entity\Entry', $content);
d8a35aba
JB
122 $this->assertNotEmpty($content->getMimetype(), 'Mimetype for http://lexpansion.lexpress.fr is ok');
123 $this->assertNotEmpty($content->getPreviewPicture(), 'Preview picture for http://lexpansion.lexpress.fr is ok');
124 $this->assertNotEmpty($content->getLanguage(), 'Language for http://lexpansion.lexpress.fr is ok');
1e0d8ad7 125 $this->assertCount(3, $content->getTags());
59201088
TC
126
127 $content = $client->getContainer()
128 ->get('doctrine.orm.entity_manager')
129 ->getRepository('WallabagCoreBundle:Entry')
130 ->findByUrlAndUserId(
9c48053b 131 'https://www.lemonde.fr/disparitions/article/2018/07/05/le-journaliste-et-cineaste-claude-lanzmann-est-mort_5326313_3382.html',
59201088
TC
132 $this->getLoggedInUserId()
133 );
134
f40c88eb 135 $this->assertInstanceOf('Wallabag\CoreBundle\Entity\Entry', $content);
9c48053b
JB
136 $this->assertNotEmpty($content->getMimetype(), 'Mimetype for https://www.lemonde.fr is ok');
137 $this->assertNotEmpty($content->getPreviewPicture(), 'Preview picture for https://www.lemonde.fr is ok');
138 $this->assertNotEmpty($content->getLanguage(), 'Language for https://www.lemonde.fr is ok');
27acc6dd
JB
139
140 $createdAt = $content->getCreatedAt();
f808b016
JB
141 $this->assertSame('2013', $createdAt->format('Y'));
142 $this->assertSame('12', $createdAt->format('m'));
f7c55b38
NL
143 }
144
ae669126
TC
145 public function testImportWallabagWithEmptyFile()
146 {
147 $this->logInAs('admin');
148 $client = $this->getClient();
149
59201088 150 $crawler = $client->request('GET', '/import/firefox');
ae669126
TC
151 $form = $crawler->filter('form[name=upload_import_file] > button[type=submit]')->form();
152
f808b016 153 $file = new UploadedFile(__DIR__ . '/../fixtures/test.txt', 'test.txt');
ae669126
TC
154
155 $data = [
156 'upload_import_file[file]' => $file,
157 ];
158
159 $client->submit($form, $data);
160
f808b016 161 $this->assertSame(302, $client->getResponse()->getStatusCode());
ae669126
TC
162
163 $crawler = $client->followRedirect();
164
165 $this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
166 $this->assertContains('flashes.import.notice.failed', $body[0]);
167 }
168}