X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=src%2FWallabag%2FCoreBundle%2FTests%2FController%2FEntryControllerTest.php;h=5d8daea39342b48cc0e12975765a1cc9800b4bf6;hb=3b815d2de5a852fe2ebad5827bd4c9070aa175ea;hp=786ff811795bca28005c8c41ff110f6762d48df0;hpb=71691fe44a7b2a80f3b9d96d54720cce7994ad08;p=github%2Fwallabag%2Fwallabag.git diff --git a/src/Wallabag/CoreBundle/Tests/Controller/EntryControllerTest.php b/src/Wallabag/CoreBundle/Tests/Controller/EntryControllerTest.php index 786ff811..5d8daea3 100644 --- a/src/Wallabag/CoreBundle/Tests/Controller/EntryControllerTest.php +++ b/src/Wallabag/CoreBundle/Tests/Controller/EntryControllerTest.php @@ -2,16 +2,113 @@ namespace Wallabag\CoreBundle\Tests\Controller; -use Symfony\Bundle\FrameworkBundle\Test\WebTestCase; +use Wallabag\CoreBundle\Tests\WallabagTestCase; -class EntryControllerTest extends WebTestCase +class EntryControllerTest extends WallabagTestCase { - public function testIndex() + public function testLogin() { - $client = static::createClient(); + $client = $this->getClient(); $crawler = $client->request('GET', '/new'); + $this->assertEquals(302, $client->getResponse()->getStatusCode()); + $this->assertContains('login', $client->getResponse()->headers->get('location')); + } + + public function testGetNew() + { + $this->logIn(); + $client = $this->getClient(); + + $crawler = $client->request('GET', '/new'); + + $this->assertEquals(200, $client->getResponse()->getStatusCode()); + + $this->assertCount(1, $crawler->filter('input[type=url]')); + $this->assertCount(1, $crawler->filter('button[type=submit]')); + } + + public function testPostNewEmpty() + { + $this->logIn(); + $client = $this->getClient(); + + $crawler = $client->request('GET', '/new'); + + $this->assertEquals(200, $client->getResponse()->getStatusCode()); + + $form = $crawler->filter('button[type=submit]')->form(); + + $crawler = $client->submit($form); + + $this->assertEquals(200, $client->getResponse()->getStatusCode()); + $this->assertCount(1, $alert = $crawler->filter('form ul li')->extract(array('_text'))); + $this->assertEquals('This value should not be blank.', $alert[0]); + } + + public function testPostNewOk() + { + $this->logIn(); + $client = $this->getClient(); + + $crawler = $client->request('GET', '/new'); + + $this->assertEquals(200, $client->getResponse()->getStatusCode()); + + $form = $crawler->filter('button[type=submit]')->form(); + + $data = array( + 'form[url]' => 'https://www.mailjet.com/blog/mailjet-zapier-integrations-made-easy/', + ); + + $client->submit($form, $data); + + $this->assertEquals(302, $client->getResponse()->getStatusCode()); + + $crawler = $client->followRedirect(); + + $this->assertGreaterThan(1, $alert = $crawler->filter('h2 a')->extract(array('_text'))); + $this->assertContains('Mailjet', $alert[0]); + } + + public function testArchive() + { + $this->logIn(); + $client = $this->getClient(); + + $crawler = $client->request('GET', '/archive'); + + $this->assertEquals(200, $client->getResponse()->getStatusCode()); + } + + public function testStarred() + { + $this->logIn(); + $client = $this->getClient(); + + $crawler = $client->request('GET', '/starred'); + + $this->assertEquals(200, $client->getResponse()->getStatusCode()); + } + + public function testView() + { + $this->logIn(); + $client = $this->getClient(); + + $content = $client->getContainer() + ->get('doctrine.orm.entity_manager') + ->getRepository('WallabagCoreBundle:Entry') + ->findOneByIsArchived(false); + + if (!$content) { + $this->markTestSkipped('No content found in db.'); + } + + $crawler = $client->request('GET', '/view/'.$content->getId()); + $this->assertEquals(200, $client->getResponse()->getStatusCode()); + $this->assertContains($content->getTitle(), $client->getResponse()->getContent()); } }