logInAs('admin'); $client = $this->getClient(); $crawler = $client->request('GET', '/import/wallabag-v2'); $this->assertEquals(200, $client->getResponse()->getStatusCode()); $this->assertEquals(1, $crawler->filter('form[name=upload_import_file] > button[type=submit]')->count()); $this->assertEquals(1, $crawler->filter('input[type=file]')->count()); } public function testImportWallabagWithFile() { $this->logInAs('admin'); $client = $this->getClient(); $crawler = $client->request('GET', '/import/wallabag-v2'); $form = $crawler->filter('form[name=upload_import_file] > button[type=submit]')->form(); $file = new UploadedFile(__DIR__.'/../fixtures/wallabag-v2.json', 'wallabag-v2.json'); $data = array( 'upload_import_file[file]' => $file, ); $client->submit($form, $data); $this->assertEquals(302, $client->getResponse()->getStatusCode()); $crawler = $client->followRedirect(); $this->assertGreaterThan(1, $alert = $crawler->filter('div.messages.success')->extract(array('_text'))); $this->assertContains('Import summary', $alert[0]); } public function testImportWallabagWithEmptyFile() { $this->logInAs('admin'); $client = $this->getClient(); $crawler = $client->request('GET', '/import/wallabag-v2'); $form = $crawler->filter('form[name=upload_import_file] > button[type=submit]')->form(); $file = new UploadedFile(__DIR__.'/../fixtures/test.txt', 'test.txt'); $data = array( 'upload_import_file[file]' => $file, ); $client->submit($form, $data); $this->assertEquals(302, $client->getResponse()->getStatusCode()); $crawler = $client->followRedirect(); $this->assertGreaterThan(1, $alert = $crawler->filter('div.messages.success')->extract(array('_text'))); $this->assertContains('Import failed, please try again', $alert[0]); } }