logInAs('admin'); $client = $this->getTestClient(); $crawler = $client->request('GET', '/import/pocket_csv'); $this->assertSame(200, $client->getResponse()->getStatusCode()); $this->assertSame(1, $crawler->filter('form[name=upload_import_file] > button[type=submit]')->count()); $this->assertSame(1, $crawler->filter('input[type=file]')->count()); } public function testImportPocketCsvWithRabbitEnabled() { $this->logInAs('admin'); $client = $this->getTestClient(); $client->getContainer()->get(Config::class)->set('import_with_rabbitmq', 1); $crawler = $client->request('GET', '/import/pocket_csv'); $this->assertSame(200, $client->getResponse()->getStatusCode()); $this->assertSame(1, $crawler->filter('form[name=upload_import_file] > button[type=submit]')->count()); $this->assertSame(1, $crawler->filter('input[type=file]')->count()); $client->getContainer()->get(Config::class)->set('import_with_rabbitmq', 0); } public function testImportPocketCsvBadFile() { $this->logInAs('admin'); $client = $this->getTestClient(); $crawler = $client->request('GET', '/import/pocket_csv'); $form = $crawler->filter('form[name=upload_import_file] > button[type=submit]')->form(); $data = [ 'upload_import_file[file]' => '', ]; $client->submit($form, $data); $this->assertSame(200, $client->getResponse()->getStatusCode()); } public function testImportPocketCsvWithRedisEnabled() { $this->checkRedis(); $this->logInAs('admin'); $client = $this->getTestClient(); $client->getContainer()->get(Config::class)->set('import_with_redis', 1); $crawler = $client->request('GET', '/import/pocket_csv'); $this->assertSame(200, $client->getResponse()->getStatusCode()); $this->assertSame(1, $crawler->filter('form[name=upload_import_file] > button[type=submit]')->count()); $this->assertSame(1, $crawler->filter('input[type=file]')->count()); $form = $crawler->filter('form[name=upload_import_file] > button[type=submit]')->form(); $file = new UploadedFile(__DIR__ . '/../fixtures/pocket.csv', 'Bookmarks'); $data = [ 'upload_import_file[file]' => $file, ]; $client->submit($form, $data); $this->assertSame(302, $client->getResponse()->getStatusCode()); $crawler = $client->followRedirect(); $this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text'])); $this->assertStringContainsString('flashes.import.notice.summary', $body[0]); $this->assertNotEmpty($client->getContainer()->get(Client::class)->lpop('wallabag.import.pocket_csv')); $client->getContainer()->get(Config::class)->set('import_with_redis', 0); } public function testImportWallabagWithPocketCsvFile() { $this->logInAs('admin'); $client = $this->getTestClient(); $crawler = $client->request('GET', '/import/pocket_csv'); $form = $crawler->filter('form[name=upload_import_file] > button[type=submit]')->form(); $file = new UploadedFile(__DIR__ . '/../fixtures/pocket.csv', 'Bookmarks'); $data = [ 'upload_import_file[file]' => $file, ]; $client->submit($form, $data); $this->assertSame(302, $client->getResponse()->getStatusCode()); $crawler = $client->followRedirect(); $this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text'])); $this->assertStringContainsString('flashes.import.notice.summary', $body[0]); $content = $client->getContainer() ->get(EntityManagerInterface::class) ->getRepository(Entry::class) ->findByUrlAndUserId( 'https://jp-lambert.me/est-ce-que-jai-besoin-d-un-scrum-master-604f5a471c73', $this->getLoggedInUserId() ); $this->assertInstanceOf(Entry::class, $content); $this->assertNotEmpty($content->getMimetype(), 'Mimetype for jp-lambert.me is ok'); $this->assertNotEmpty($content->getPreviewPicture(), 'Preview picture for jp-lambert.me is ok'); $this->assertNotEmpty($content->getLanguage(), 'Language for jp-lambert.me is ok'); $this->assertCount(1, $content->getTags()); } public function testImportWallabagWithEmptyFile() { $this->logInAs('admin'); $client = $this->getTestClient(); $crawler = $client->request('GET', '/import/pocket_csv'); $form = $crawler->filter('form[name=upload_import_file] > button[type=submit]')->form(); $file = new UploadedFile(__DIR__ . '/../fixtures/test.csv', 'test.csv'); $data = [ 'upload_import_file[file]' => $file, ]; $client->submit($form, $data); $this->assertSame(302, $client->getResponse()->getStatusCode()); $crawler = $client->followRedirect(); $this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text'])); $this->assertStringContainsString('flashes.import.notice.failed', $body[0]); } }