Add more tests on Entry controller

Also add more fixtures
This commit is contained in:
Jeremy 2015-02-10 22:32:42 +01:00
parent f59f45d740
commit eb3bd7efb7
5 changed files with 114 additions and 20 deletions

View file

@ -16,13 +16,32 @@ class LoadEntryData extends AbstractFixture implements OrderedFixtureInterface
{ {
$entry1 = new Entry($this->getReference('admin-user')); $entry1 = new Entry($this->getReference('admin-user'));
$entry1->setUrl('http://0.0.0.0'); $entry1->setUrl('http://0.0.0.0');
$entry1->setTitle('test title'); $entry1->setTitle('test title entry1');
$entry1->setContent('This is my content /o/'); $entry1->setContent('This is my content /o/');
$manager->persist($entry1); $manager->persist($entry1);
$manager->flush();
$this->addReference('entry1', $entry1); $this->addReference('entry1', $entry1);
$entry2 = new Entry($this->getReference('admin-user'));
$entry2->setUrl('http://0.0.0.0');
$entry2->setTitle('test title entry2');
$entry2->setContent('This is my content /o/');
$manager->persist($entry2);
$this->addReference('entry2', $entry2);
$entry3 = new Entry($this->getReference('bob-user'));
$entry3->setUrl('http://0.0.0.0');
$entry3->setTitle('test title entry3');
$entry3->setContent('This is my content /o/');
$manager->persist($entry3);
$this->addReference('entry3', $entry3);
$manager->flush();
} }
/** /**

View file

@ -15,13 +15,26 @@ class LoadUserData extends AbstractFixture implements OrderedFixtureInterface
public function load(ObjectManager $manager) public function load(ObjectManager $manager)
{ {
$userAdmin = new User(); $userAdmin = new User();
$userAdmin->setName('Big boss');
$userAdmin->setEmail('bigboss@wallabag.org');
$userAdmin->setUsername('admin'); $userAdmin->setUsername('admin');
$userAdmin->setPassword('test'); $userAdmin->setPassword('test');
$manager->persist($userAdmin); $manager->persist($userAdmin);
$manager->flush();
$this->addReference('admin-user', $userAdmin); $this->addReference('admin-user', $userAdmin);
$bobUser = new User();
$bobUser->setName('Bobby');
$bobUser->setEmail('bobby@wallabag.org');
$bobUser->setUsername('bob');
$bobUser->setPassword('test');
$manager->persist($bobUser);
$this->addReference('bob-user', $bobUser);
$manager->flush();
} }
/** /**

View file

@ -2,7 +2,6 @@
namespace Wallabag\CoreBundle\Repository; namespace Wallabag\CoreBundle\Repository;
use Doctrine\ORM\Query;
use Doctrine\ORM\EntityRepository; use Doctrine\ORM\EntityRepository;
use Doctrine\ORM\Tools\Pagination\Paginator; use Doctrine\ORM\Tools\Pagination\Paginator;

View file

@ -3,6 +3,7 @@
namespace Wallabag\CoreBundle\Tests\Controller; namespace Wallabag\CoreBundle\Tests\Controller;
use Wallabag\CoreBundle\Tests\WallabagTestCase; use Wallabag\CoreBundle\Tests\WallabagTestCase;
use Doctrine\ORM\AbstractQuery;
class EntryControllerTest extends WallabagTestCase class EntryControllerTest extends WallabagTestCase
{ {
@ -10,7 +11,7 @@ class EntryControllerTest extends WallabagTestCase
{ {
$client = $this->getClient(); $client = $this->getClient();
$crawler = $client->request('GET', '/new'); $client->request('GET', '/new');
$this->assertEquals(302, $client->getResponse()->getStatusCode()); $this->assertEquals(302, $client->getResponse()->getStatusCode());
$this->assertContains('login', $client->getResponse()->headers->get('location')); $this->assertContains('login', $client->getResponse()->headers->get('location'));
@ -18,7 +19,7 @@ class EntryControllerTest extends WallabagTestCase
public function testGetNew() public function testGetNew()
{ {
$this->logIn(); $this->logInAs('admin');
$client = $this->getClient(); $client = $this->getClient();
$crawler = $client->request('GET', '/new'); $crawler = $client->request('GET', '/new');
@ -31,7 +32,7 @@ class EntryControllerTest extends WallabagTestCase
public function testPostNewEmpty() public function testPostNewEmpty()
{ {
$this->logIn(); $this->logInAs('admin');
$client = $this->getClient(); $client = $this->getClient();
$crawler = $client->request('GET', '/new'); $crawler = $client->request('GET', '/new');
@ -49,7 +50,7 @@ class EntryControllerTest extends WallabagTestCase
public function testPostNewOk() public function testPostNewOk()
{ {
$this->logIn(); $this->logInAs('admin');
$client = $this->getClient(); $client = $this->getClient();
$crawler = $client->request('GET', '/new'); $crawler = $client->request('GET', '/new');
@ -74,27 +75,27 @@ class EntryControllerTest extends WallabagTestCase
public function testArchive() public function testArchive()
{ {
$this->logIn(); $this->logInAs('admin');
$client = $this->getClient(); $client = $this->getClient();
$crawler = $client->request('GET', '/archive'); $client->request('GET', '/archive');
$this->assertEquals(200, $client->getResponse()->getStatusCode()); $this->assertEquals(200, $client->getResponse()->getStatusCode());
} }
public function testStarred() public function testStarred()
{ {
$this->logIn(); $this->logInAs('admin');
$client = $this->getClient(); $client = $this->getClient();
$crawler = $client->request('GET', '/starred'); $client->request('GET', '/starred');
$this->assertEquals(200, $client->getResponse()->getStatusCode()); $this->assertEquals(200, $client->getResponse()->getStatusCode());
} }
public function testView() public function testView()
{ {
$this->logIn(); $this->logInAs('admin');
$client = $this->getClient(); $client = $this->getClient();
$content = $client->getContainer() $content = $client->getContainer()
@ -102,13 +103,75 @@ class EntryControllerTest extends WallabagTestCase
->getRepository('WallabagCoreBundle:Entry') ->getRepository('WallabagCoreBundle:Entry')
->findOneByIsArchived(false); ->findOneByIsArchived(false);
if (!$content) { $client->request('GET', '/view/'.$content->getId());
$this->markTestSkipped('No content found in db.');
}
$crawler = $client->request('GET', '/view/'.$content->getId());
$this->assertEquals(200, $client->getResponse()->getStatusCode()); $this->assertEquals(200, $client->getResponse()->getStatusCode());
$this->assertContains($content->getTitle(), $client->getResponse()->getContent()); $this->assertContains($content->getTitle(), $client->getResponse()->getContent());
} }
public function testToggleArchive()
{
$this->logInAs('admin');
$client = $this->getClient();
$content = $client->getContainer()
->get('doctrine.orm.entity_manager')
->getRepository('WallabagCoreBundle:Entry')
->findOneByIsArchived(false);
$client->request('GET', '/archive/'.$content->getId());
$this->assertEquals(302, $client->getResponse()->getStatusCode());
$res = $client->getContainer()
->get('doctrine.orm.entity_manager')
->getRepository('WallabagCoreBundle:Entry')
->findOneById($content->getId());
$this->assertEquals($res->isArchived(), true);
}
public function testToggleStar()
{
$this->logInAs('admin');
$client = $this->getClient();
$content = $client->getContainer()
->get('doctrine.orm.entity_manager')
->getRepository('WallabagCoreBundle:Entry')
->findOneByIsStarred(false);
$client->request('GET', '/star/'.$content->getId());
$this->assertEquals(302, $client->getResponse()->getStatusCode());
$res = $client->getContainer()
->get('doctrine.orm.entity_manager')
->getRepository('WallabagCoreBundle:Entry')
->findOneById($content->getId());
$this->assertEquals($res->isStarred(), true);
}
public function testDelete()
{
$this->logInAs('admin');
$client = $this->getClient();
$content = $client->getContainer()
->get('doctrine.orm.entity_manager')
->getRepository('WallabagCoreBundle:Entry')
->findOneByIsDeleted(false);
$client->request('GET', '/delete/'.$content->getId());
$this->assertEquals(302, $client->getResponse()->getStatusCode());
$res = $client->getContainer()
->get('doctrine.orm.entity_manager')
->getRepository('WallabagCoreBundle:Entry')
->findOneById($content->getId());
$this->assertEquals($res->isDeleted(), true);
}
} }

View file

@ -18,12 +18,12 @@ class WallabagTestCase extends WebTestCase
$this->client = static::createClient(); $this->client = static::createClient();
} }
public function logIn() public function logInAs($username)
{ {
$crawler = $this->client->request('GET', '/login'); $crawler = $this->client->request('GET', '/login');
$form = $crawler->filter('button[type=submit]')->form(); $form = $crawler->filter('button[type=submit]')->form();
$data = array( $data = array(
'_username' => 'admin', '_username' => $username,
'_password' => 'test', '_password' => 'test',
); );