]> git.immae.eu Git - github/wallabag/wallabag.git/blame - tests/Wallabag/ImportBundle/Controller/FirefoxControllerTest.php
bring chrome and firefox as separate imports
[github/wallabag/wallabag.git] / tests / Wallabag / ImportBundle / Controller / FirefoxControllerTest.php
CommitLineData
ae669126
TC
1<?php
2
3namespace Tests\Wallabag\ImportBundle\Controller;
4
5use Tests\Wallabag\CoreBundle\WallabagCoreTestCase;
6use Symfony\Component\HttpFoundation\File\UploadedFile;
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
TC
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
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
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
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
52 $this->assertEquals(200, $client->getResponse()->getStatusCode());
53 }
54
55 public function testImportFirefoxWithRedisEnabled()
56 {
57 $this->logInAs('admin');
58 $client = $this->getClient();
59 $client->getContainer()->get('craue_config')->set('import_with_redis', 1);
60
61 $crawler = $client->request('GET', '/import/firefox');
62
63 $this->assertEquals(200, $client->getResponse()->getStatusCode());
64 $this->assertEquals(1, $crawler->filter('form[name=upload_import_file] > button[type=submit]')->count());
65 $this->assertEquals(1, $crawler->filter('input[type=file]')->count());
66
ae669126
TC
67 $form = $crawler->filter('form[name=upload_import_file] > button[type=submit]')->form();
68
f7c55b38 69 $file = new UploadedFile(__DIR__.'/../fixtures/firefox-bookmarks.json', 'Bookmarks');
ae669126
TC
70
71 $data = [
72 'upload_import_file[file]' => $file,
73 ];
74
75 $client->submit($form, $data);
76
77 $this->assertEquals(302, $client->getResponse()->getStatusCode());
78
79 $crawler = $client->followRedirect();
80
81 $this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
82 $this->assertContains('flashes.import.notice.summary', $body[0]);
83
59201088 84 $this->assertNotEmpty($client->getContainer()->get('wallabag_core.redis.client')->lpop('wallabag.import.firefox'));
ae669126 85
59201088 86 $client->getContainer()->get('craue_config')->set('import_with_redis', 0);
ae669126
TC
87 }
88
59201088 89 public function testImportWallabagWithFirefoxFile()
f7c55b38
NL
90 {
91 $this->logInAs('admin');
92 $client = $this->getClient();
93
59201088 94 $crawler = $client->request('GET', '/import/firefox');
f7c55b38
NL
95 $form = $crawler->filter('form[name=upload_import_file] > button[type=submit]')->form();
96
59201088 97 $file = new UploadedFile(__DIR__.'/../fixtures/firefox-bookmarks.json', 'Bookmarks');
f7c55b38
NL
98
99 $data = [
100 'upload_import_file[file]' => $file,
101 ];
102
103 $client->submit($form, $data);
104
105 $this->assertEquals(302, $client->getResponse()->getStatusCode());
106
107 $crawler = $client->followRedirect();
108
109 $this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
110 $this->assertContains('flashes.import.notice.summary', $body[0]);
111
112 $content = $client->getContainer()
113 ->get('doctrine.orm.entity_manager')
114 ->getRepository('WallabagCoreBundle:Entry')
115 ->findByUrlAndUserId(
59201088 116 'http://lexpansion.lexpress.fr/high-tech/orange-offre-un-meilleur-reseau-mobile-que-bouygues-et-sfr-free-derriere_1811554.html',
f7c55b38
NL
117 $this->getLoggedInUserId()
118 );
119
120 $this->assertNotEmpty($content->getMimetype());
121 $this->assertNotEmpty($content->getPreviewPicture());
122 $this->assertNotEmpty($content->getLanguage());
123 $this->assertEquals(0, count($content->getTags()));
59201088
TC
124
125 $content = $client->getContainer()
126 ->get('doctrine.orm.entity_manager')
127 ->getRepository('WallabagCoreBundle:Entry')
128 ->findByUrlAndUserId(
129 'http://stackoverflow.com/questions/15017163/parser-for-exported-bookmarks-html-file-of-google-chrome-and-mozilla-in-java',
130 $this->getLoggedInUserId()
131 );
132
133 $this->assertNotEmpty($content->getMimetype());
134 $this->assertNotEmpty($content->getPreviewPicture());
135 $this->assertEmpty($content->getLanguage());
f7c55b38
NL
136 }
137
ae669126
TC
138 public function testImportWallabagWithEmptyFile()
139 {
140 $this->logInAs('admin');
141 $client = $this->getClient();
142
59201088 143 $crawler = $client->request('GET', '/import/firefox');
ae669126
TC
144 $form = $crawler->filter('form[name=upload_import_file] > button[type=submit]')->form();
145
146 $file = new UploadedFile(__DIR__.'/../fixtures/test.txt', 'test.txt');
147
148 $data = [
149 'upload_import_file[file]' => $file,
150 ];
151
152 $client->submit($form, $data);
153
154 $this->assertEquals(302, $client->getResponse()->getStatusCode());
155
156 $crawler = $client->followRedirect();
157
158 $this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
159 $this->assertContains('flashes.import.notice.failed', $body[0]);
160 }
161}