2015-01-22 08:30:07 +01:00
|
|
|
<?php
|
|
|
|
|
2015-01-23 16:28:37 +01:00
|
|
|
namespace Wallabag\CoreBundle\Tests\Controller;
|
2015-01-22 08:30:07 +01:00
|
|
|
|
2015-03-29 10:53:10 +02:00
|
|
|
use Wallabag\CoreBundle\Tests\WallabagCoreTestCase;
|
2015-02-10 22:32:42 +01:00
|
|
|
use Doctrine\ORM\AbstractQuery;
|
2015-01-22 08:30:07 +01:00
|
|
|
|
2015-03-29 10:53:10 +02:00
|
|
|
class EntryControllerTest extends WallabagCoreTestCase
|
2015-01-22 08:30:07 +01:00
|
|
|
{
|
2015-02-08 23:05:51 +01:00
|
|
|
public function testLogin()
|
|
|
|
{
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
2015-02-10 22:32:42 +01:00
|
|
|
$client->request('GET', '/new');
|
2015-02-08 23:05:51 +01:00
|
|
|
|
|
|
|
$this->assertEquals(302, $client->getResponse()->getStatusCode());
|
|
|
|
$this->assertContains('login', $client->getResponse()->headers->get('location'));
|
|
|
|
}
|
|
|
|
|
2015-02-07 18:30:46 +01:00
|
|
|
public function testGetNew()
|
2015-01-22 08:30:07 +01:00
|
|
|
{
|
2015-02-10 22:32:42 +01:00
|
|
|
$this->logInAs('admin');
|
2015-02-08 23:05:51 +01:00
|
|
|
$client = $this->getClient();
|
2015-01-22 08:30:07 +01:00
|
|
|
|
2015-01-31 09:15:51 +01:00
|
|
|
$crawler = $client->request('GET', '/new');
|
2015-01-22 08:30:07 +01:00
|
|
|
|
|
|
|
$this->assertEquals(200, $client->getResponse()->getStatusCode());
|
2015-02-07 18:30:46 +01:00
|
|
|
|
|
|
|
$this->assertCount(1, $crawler->filter('input[type=url]'));
|
|
|
|
$this->assertCount(1, $crawler->filter('button[type=submit]'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testPostNewEmpty()
|
|
|
|
{
|
2015-02-10 22:32:42 +01:00
|
|
|
$this->logInAs('admin');
|
2015-02-08 23:05:51 +01:00
|
|
|
$client = $this->getClient();
|
2015-02-07 18:30:46 +01:00
|
|
|
|
|
|
|
$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()
|
|
|
|
{
|
2015-02-10 22:32:42 +01:00
|
|
|
$this->logInAs('admin');
|
2015-02-08 23:05:51 +01:00
|
|
|
$client = $this->getClient();
|
2015-02-07 18:30:46 +01:00
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/new');
|
|
|
|
|
|
|
|
$this->assertEquals(200, $client->getResponse()->getStatusCode());
|
|
|
|
|
|
|
|
$form = $crawler->filter('button[type=submit]')->form();
|
|
|
|
|
|
|
|
$data = array(
|
2015-03-28 22:15:24 +01:00
|
|
|
'entry[url]' => 'http://www.lemonde.fr/pixels/article/2015/03/28/plongee-dans-l-univers-d-ingress-le-jeu-de-google-aux-frontieres-du-reel_4601155_4408996.html',
|
2015-02-07 18:30:46 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
$client->submit($form, $data);
|
|
|
|
|
|
|
|
$this->assertEquals(302, $client->getResponse()->getStatusCode());
|
|
|
|
|
|
|
|
$crawler = $client->followRedirect();
|
|
|
|
|
2015-02-08 23:05:51 +01:00
|
|
|
$this->assertGreaterThan(1, $alert = $crawler->filter('h2 a')->extract(array('_text')));
|
2015-03-28 22:15:24 +01:00
|
|
|
$this->assertContains('Google', $alert[0]);
|
2015-02-07 18:30:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testArchive()
|
|
|
|
{
|
2015-02-10 22:32:42 +01:00
|
|
|
$this->logInAs('admin');
|
2015-02-08 23:05:51 +01:00
|
|
|
$client = $this->getClient();
|
2015-02-07 18:30:46 +01:00
|
|
|
|
2015-02-10 22:32:42 +01:00
|
|
|
$client->request('GET', '/archive');
|
2015-02-07 18:30:46 +01:00
|
|
|
|
|
|
|
$this->assertEquals(200, $client->getResponse()->getStatusCode());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testStarred()
|
|
|
|
{
|
2015-02-10 22:32:42 +01:00
|
|
|
$this->logInAs('admin');
|
2015-02-08 23:05:51 +01:00
|
|
|
$client = $this->getClient();
|
2015-02-07 18:30:46 +01:00
|
|
|
|
2015-02-10 22:32:42 +01:00
|
|
|
$client->request('GET', '/starred');
|
2015-02-07 18:30:46 +01:00
|
|
|
|
|
|
|
$this->assertEquals(200, $client->getResponse()->getStatusCode());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testView()
|
|
|
|
{
|
2015-02-10 22:32:42 +01:00
|
|
|
$this->logInAs('admin');
|
2015-02-08 23:05:51 +01:00
|
|
|
$client = $this->getClient();
|
2015-02-07 18:30:46 +01:00
|
|
|
|
|
|
|
$content = $client->getContainer()
|
|
|
|
->get('doctrine.orm.entity_manager')
|
|
|
|
->getRepository('WallabagCoreBundle:Entry')
|
|
|
|
->findOneByIsArchived(false);
|
|
|
|
|
2015-02-10 22:32:42 +01:00
|
|
|
$client->request('GET', '/view/'.$content->getId());
|
2015-02-07 18:30:46 +01:00
|
|
|
|
|
|
|
$this->assertEquals(200, $client->getResponse()->getStatusCode());
|
|
|
|
$this->assertContains($content->getTitle(), $client->getResponse()->getContent());
|
2015-01-22 08:30:07 +01:00
|
|
|
}
|
2015-02-10 22:32:42 +01:00
|
|
|
|
2015-06-02 18:54:34 +02:00
|
|
|
public function testEdit()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$content = $client->getContainer()
|
|
|
|
->get('doctrine.orm.entity_manager')
|
|
|
|
->getRepository('WallabagCoreBundle:Entry')
|
|
|
|
->findOneByIsArchived(false);
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/edit/'.$content->getId());
|
|
|
|
|
|
|
|
$this->assertEquals(200, $client->getResponse()->getStatusCode());
|
|
|
|
|
|
|
|
$this->assertCount(1, $crawler->filter('input[id=entry_title]'));
|
|
|
|
$this->assertCount(1, $crawler->filter('button[id=entry_save]'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testEditUpdate()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$content = $client->getContainer()
|
|
|
|
->get('doctrine.orm.entity_manager')
|
|
|
|
->getRepository('WallabagCoreBundle:Entry')
|
|
|
|
->findOneByIsArchived(false);
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/edit/'.$content->getId());
|
|
|
|
|
|
|
|
$this->assertEquals(200, $client->getResponse()->getStatusCode());
|
|
|
|
|
|
|
|
$form = $crawler->filter('button[type=submit]')->form();
|
|
|
|
|
|
|
|
$data = array(
|
|
|
|
'entry[title]' => 'My updated title hehe :)',
|
|
|
|
);
|
|
|
|
|
|
|
|
$client->submit($form, $data);
|
|
|
|
|
|
|
|
$this->assertEquals(302, $client->getResponse()->getStatusCode());
|
|
|
|
|
|
|
|
$crawler = $client->followRedirect();
|
|
|
|
|
|
|
|
$this->assertGreaterThan(1, $alert = $crawler->filter('div[id=article] h1')->extract(array('_text')));
|
|
|
|
$this->assertContains('My updated title hehe :)', $alert[0]);
|
|
|
|
}
|
|
|
|
|
2015-02-10 22:32:42 +01:00
|
|
|
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')
|
2015-02-20 15:36:25 +01:00
|
|
|
->findOneById(1);
|
2015-02-10 22:32:42 +01:00
|
|
|
|
|
|
|
$client->request('GET', '/delete/'.$content->getId());
|
|
|
|
|
|
|
|
$this->assertEquals(302, $client->getResponse()->getStatusCode());
|
|
|
|
|
2015-02-20 15:36:25 +01:00
|
|
|
$client->request('GET', '/delete/'.$content->getId());
|
2015-02-10 22:32:42 +01:00
|
|
|
|
2015-02-20 15:36:25 +01:00
|
|
|
$this->assertEquals(404, $client->getResponse()->getStatusCode());
|
2015-02-10 22:32:42 +01:00
|
|
|
}
|
2015-02-10 22:33:18 +01:00
|
|
|
|
|
|
|
public function testViewOtherUserEntry()
|
|
|
|
{
|
|
|
|
$this->logInAs('bob');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$content = $client->getContainer()
|
|
|
|
->get('doctrine.orm.entity_manager')
|
|
|
|
->getRepository('WallabagCoreBundle:Entry')
|
|
|
|
->createQueryBuilder('e')
|
|
|
|
->select('e.id')
|
|
|
|
->leftJoin('e.user', 'u')
|
|
|
|
->where('u.username != :username')->setParameter('username', 'bob')
|
|
|
|
->setMaxResults(1)
|
|
|
|
->getQuery()
|
|
|
|
->getSingleResult(AbstractQuery::HYDRATE_ARRAY);
|
|
|
|
|
|
|
|
$client->request('GET', '/view/'.$content['id']);
|
|
|
|
|
|
|
|
$this->assertEquals(403, $client->getResponse()->getStatusCode());
|
|
|
|
}
|
2015-01-22 08:30:07 +01:00
|
|
|
}
|