1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-08-01 17:38:38 +00:00

Add tests for tag list routes

This commit is contained in:
Nicolas Lœuillet 2016-04-30 15:03:22 +02:00 committed by Jeremy Benoist
parent 371bcca0f6
commit 267e8d6361
No known key found for this signature in database
GPG key ID: BCA73962457ACC3C
3 changed files with 43 additions and 1 deletions

View file

@ -131,4 +131,35 @@ class TagControllerTest extends WallabagCoreTestCase
$this->assertEquals(404, $client->getResponse()->getStatusCode());
}
public function testShowEntriesForTagAction()
{
$this->logInAs('admin');
$client = $this->getClient();
$entry = $client->getContainer()
->get('doctrine.orm.entity_manager')
->getRepository('WallabagCoreBundle:Entry')
->findOneByUsernameAndNotArchived('admin');
$tag = $client->getContainer()
->get('doctrine.orm.entity_manager')
->getRepository('WallabagCoreBundle:Tag')
->findOneByEntryAndTagLabel($entry, 'foo');
$crawler = $client->request('GET', '/tag/list/'.$tag->getSlug());
$this->assertEquals(200, $client->getResponse()->getStatusCode());
$this->assertCount(2, $crawler->filter('div[class=entry]'));
$tag = $client->getContainer()
->get('doctrine.orm.entity_manager')
->getRepository('WallabagCoreBundle:Tag')
->findOneByLabel('baz');
$crawler = $client->request('GET', '/tag/list/'.$tag->getSlug());
$this->assertEquals(200, $client->getResponse()->getStatusCode());
$this->assertCount(0, $crawler->filter('div[class=entry]'));
}
}