From 23634d5d842dabcf5d7475e2becb7e127824239e Mon Sep 17 00:00:00 2001 From: Jeremy Benoist Date: Wed, 1 Jun 2016 21:27:35 +0200 Subject: Jump to Symfony 3.1 --- .../Tests/Controller/PocketControllerTest.php | 65 ---------------------- 1 file changed, 65 deletions(-) delete mode 100644 src/Wallabag/ImportBundle/Tests/Controller/PocketControllerTest.php (limited to 'src/Wallabag/ImportBundle/Tests/Controller/PocketControllerTest.php') diff --git a/src/Wallabag/ImportBundle/Tests/Controller/PocketControllerTest.php b/src/Wallabag/ImportBundle/Tests/Controller/PocketControllerTest.php deleted file mode 100644 index 403fe9b0..00000000 --- a/src/Wallabag/ImportBundle/Tests/Controller/PocketControllerTest.php +++ /dev/null @@ -1,65 +0,0 @@ -logInAs('admin'); - $client = $this->getClient(); - - $crawler = $client->request('GET', '/import/pocket'); - - $this->assertEquals(200, $client->getResponse()->getStatusCode()); - $this->assertEquals(1, $crawler->filter('button[type=submit]')->count()); - } - - public function testImportPocketAuthBadToken() - { - $this->logInAs('admin'); - $client = $this->getClient(); - - $crawler = $client->request('GET', '/import/pocket/auth'); - - $this->assertEquals(302, $client->getResponse()->getStatusCode()); - } - - public function testImportPocketAuth() - { - $this->markTestSkipped('PocketImport: Find a way to properly mock a service.'); - - $this->logInAs('admin'); - $client = $this->getClient(); - - $pocketImport = $this->getMockBuilder('Wallabag\ImportBundle\Import\PocketImport') - ->disableOriginalConstructor() - ->getMock(); - - $pocketImport - ->expects($this->once()) - ->method('getRequestToken') - ->willReturn('token'); - - $client->getContainer()->set('wallabag_import.pocket.import', $pocketImport); - - $crawler = $client->request('GET', '/import/pocket/auth'); - - $this->assertEquals(301, $client->getResponse()->getStatusCode()); - $this->assertContains('getpocket.com/auth/authorize', $client->getResponse()->headers->get('location')); - } - - public function testImportPocketCallbackWithBadToken() - { - $this->logInAs('admin'); - $client = $this->getClient(); - - $crawler = $client->request('GET', '/import/pocket/callback'); - - $this->assertEquals(302, $client->getResponse()->getStatusCode()); - $this->assertContains('import/pocket', $client->getResponse()->headers->get('location')); - $this->assertEquals('flashes.import.notice.failed', $client->getContainer()->get('session')->getFlashBag()->peek('notice')[0]); - } -} -- cgit v1.2.3