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-02-08 23:05:51 +01:00
|
|
|
use Wallabag\CoreBundle\Tests\WallabagTestCase;
|
2015-01-22 08:30:07 +01:00
|
|
|
|
2015-02-08 23:05:51 +01:00
|
|
|
class EntryControllerTest extends WallabagTestCase
|
2015-01-22 08:30:07 +01:00
|
|
|
{
|
2015-02-08 23:05:51 +01:00
|
|
|
public function testLogin()
|
|
|
|
{
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/new');
|
|
|
|
|
|
|
|
$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-08 23:05:51 +01:00
|
|
|
$this->logIn();
|
|
|
|
$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-08 23:05:51 +01:00
|
|
|
$this->logIn();
|
|
|
|
$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-08 23:05:51 +01:00
|
|
|
$this->logIn();
|
|
|
|
$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(
|
|
|
|
'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();
|
|
|
|
|
2015-02-08 23:05:51 +01:00
|
|
|
$this->assertGreaterThan(1, $alert = $crawler->filter('h2 a')->extract(array('_text')));
|
2015-02-07 18:30:46 +01:00
|
|
|
$this->assertContains('Mailjet', $alert[0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testArchive()
|
|
|
|
{
|
2015-02-08 23:05:51 +01:00
|
|
|
$this->logIn();
|
|
|
|
$client = $this->getClient();
|
2015-02-07 18:30:46 +01:00
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/archive');
|
|
|
|
|
|
|
|
$this->assertEquals(200, $client->getResponse()->getStatusCode());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testStarred()
|
|
|
|
{
|
2015-02-08 23:05:51 +01:00
|
|
|
$this->logIn();
|
|
|
|
$client = $this->getClient();
|
2015-02-07 18:30:46 +01:00
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/starred');
|
|
|
|
|
|
|
|
$this->assertEquals(200, $client->getResponse()->getStatusCode());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testView()
|
|
|
|
{
|
2015-02-08 23:05:51 +01:00
|
|
|
$this->logIn();
|
|
|
|
$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-08 23:05:51 +01:00
|
|
|
if (!$content) {
|
|
|
|
$this->markTestSkipped('No content found in db.');
|
|
|
|
}
|
|
|
|
|
2015-02-07 18:30:46 +01:00
|
|
|
$crawler = $client->request('GET', '/view/'.$content->getId());
|
|
|
|
|
|
|
|
$this->assertEquals(200, $client->getResponse()->getStatusCode());
|
|
|
|
$this->assertContains($content->getTitle(), $client->getResponse()->getContent());
|
2015-01-22 08:30:07 +01:00
|
|
|
}
|
|
|
|
}
|