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-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-09-28 20:26:37 +02:00
|
|
|
public $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-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-09-28 20:26:37 +02:00
|
|
|
'entry[url]' => $this->url,
|
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-07-27 23:20:32 +02:00
|
|
|
$client->request('GET', '/archive/list');
|
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-07-27 23:20:32 +02:00
|
|
|
$client->request('GET', '/starred/list');
|
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')
|
2015-09-28 20:26:37 +02:00
|
|
|
->findOneByUrl($this->url);
|
2015-02-07 18:30:46 +01:00
|
|
|
|
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')
|
2015-09-28 20:26:37 +02:00
|
|
|
->findOneByUrl($this->url);
|
2015-06-02 18:54:34 +02:00
|
|
|
|
|
|
|
$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')
|
2015-09-28 20:26:37 +02:00
|
|
|
->findOneByUrl($this->url);
|
2015-06-02 18:54:34 +02:00
|
|
|
|
|
|
|
$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')
|
2015-09-28 20:26:37 +02:00
|
|
|
->findOneByUrl($this->url);
|
2015-02-10 22:32:42 +01:00
|
|
|
|
|
|
|
$client->request('GET', '/archive/'.$content->getId());
|
|
|
|
|
|
|
|
$this->assertEquals(302, $client->getResponse()->getStatusCode());
|
|
|
|
|
|
|
|
$res = $client->getContainer()
|
|
|
|
->get('doctrine.orm.entity_manager')
|
|
|
|
->getRepository('WallabagCoreBundle:Entry')
|
2015-09-28 19:35:55 +02:00
|
|
|
->find($content->getId());
|
2015-02-10 22:32:42 +01:00
|
|
|
|
|
|
|
$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')
|
2015-09-28 20:26:37 +02:00
|
|
|
->findOneByUrl($this->url);
|
2015-02-10 22:32:42 +01:00
|
|
|
|
|
|
|
$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-09-28 20:26:37 +02:00
|
|
|
->findOneByUrl($this->url);
|
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()
|
|
|
|
{
|
2015-09-28 19:35:55 +02:00
|
|
|
$this->logInAs('admin');
|
2015-02-10 22:33:18 +01:00
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$content = $client->getContainer()
|
|
|
|
->get('doctrine.orm.entity_manager')
|
|
|
|
->getRepository('WallabagCoreBundle:Entry')
|
2015-09-28 19:35:55 +02:00
|
|
|
->findOneByUsernameAndNotArchived('bob');
|
2015-02-10 22:33:18 +01:00
|
|
|
|
2015-09-28 19:35:55 +02:00
|
|
|
$client->request('GET', '/view/'.$content->getId());
|
2015-02-10 22:33:18 +01:00
|
|
|
|
|
|
|
$this->assertEquals(403, $client->getResponse()->getStatusCode());
|
|
|
|
}
|
2015-08-07 22:20:30 +02:00
|
|
|
|
2015-08-18 16:33:32 +02:00
|
|
|
public function testFilterOnReadingTime()
|
2015-08-07 22:20:30 +02:00
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/unread/list');
|
|
|
|
|
|
|
|
$form = $crawler->filter('button[id=submit-filter]')->form();
|
|
|
|
|
|
|
|
$data = array(
|
|
|
|
'entry_filter[readingTime][right_number]' => 11,
|
2015-08-20 07:53:55 +02:00
|
|
|
'entry_filter[readingTime][left_number]' => 11,
|
2015-08-07 22:20:30 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
$crawler = $client->submit($form, $data);
|
|
|
|
|
|
|
|
$this->assertCount(1, $crawler->filter('div[class=entry]'));
|
|
|
|
}
|
2015-08-17 15:15:51 +02:00
|
|
|
|
2015-08-18 16:33:32 +02:00
|
|
|
public function testFilterOnCreationDate()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/unread/list');
|
|
|
|
|
|
|
|
$form = $crawler->filter('button[id=submit-filter]')->form();
|
|
|
|
|
|
|
|
$data = array(
|
|
|
|
'entry_filter[createdAt][left_date]' => date('d/m/Y'),
|
2015-08-20 07:53:55 +02:00
|
|
|
'entry_filter[createdAt][right_date]' => date('d/m/Y', strtotime('+1 day')),
|
2015-08-18 16:33:32 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
$crawler = $client->submit($form, $data);
|
|
|
|
|
2015-08-20 17:59:58 +02:00
|
|
|
$this->assertCount(5, $crawler->filter('div[class=entry]'));
|
2015-08-18 16:33:32 +02:00
|
|
|
|
2015-08-23 22:06:27 +02:00
|
|
|
$data = array(
|
|
|
|
'entry_filter[createdAt][left_date]' => date('d/m/Y'),
|
|
|
|
'entry_filter[createdAt][right_date]' => date('d/m/Y'),
|
|
|
|
);
|
|
|
|
|
|
|
|
$crawler = $client->submit($form, $data);
|
|
|
|
|
|
|
|
$this->assertCount(5, $crawler->filter('div[class=entry]'));
|
|
|
|
|
2015-08-18 16:33:32 +02:00
|
|
|
$data = array(
|
|
|
|
'entry_filter[createdAt][left_date]' => '01/01/1970',
|
2015-08-20 07:53:55 +02:00
|
|
|
'entry_filter[createdAt][right_date]' => '01/01/1970',
|
2015-08-18 16:33:32 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
$crawler = $client->submit($form, $data);
|
|
|
|
|
|
|
|
$this->assertCount(0, $crawler->filter('div[class=entry]'));
|
|
|
|
}
|
|
|
|
|
2015-08-17 15:15:51 +02:00
|
|
|
public function testPaginationWithFilter()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
$crawler = $client->request('GET', '/config');
|
|
|
|
|
|
|
|
$form = $crawler->filter('button[id=config_save]')->form();
|
|
|
|
|
|
|
|
$data = array(
|
|
|
|
'config[items_per_page]' => '1',
|
|
|
|
);
|
|
|
|
|
|
|
|
$client->submit($form, $data);
|
|
|
|
|
|
|
|
$parameters = '?entry_filter%5BreadingTime%5D%5Bleft_number%5D=&entry_filter%5BreadingTime%5D%5Bright_number%5D=';
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', 'unread/list'.$parameters);
|
|
|
|
|
|
|
|
$this->assertContains($parameters, $client->getResponse()->getContent());
|
2015-08-20 17:59:58 +02:00
|
|
|
|
|
|
|
// reset pagination
|
|
|
|
$crawler = $client->request('GET', '/config');
|
|
|
|
$form = $crawler->filter('button[id=config_save]')->form();
|
|
|
|
$data = array(
|
|
|
|
'config[items_per_page]' => '12',
|
|
|
|
);
|
|
|
|
$client->submit($form, $data);
|
2015-08-17 15:15:51 +02:00
|
|
|
}
|
2015-08-18 17:28:12 +02:00
|
|
|
|
|
|
|
public function testFilterOnDomainName()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/unread/list');
|
|
|
|
$form = $crawler->filter('button[id=submit-filter]')->form();
|
|
|
|
$data = array(
|
2015-09-28 20:26:37 +02:00
|
|
|
'entry_filter[domainName]' => 'domain',
|
2015-08-18 17:28:12 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
$crawler = $client->submit($form, $data);
|
2015-09-28 20:26:37 +02:00
|
|
|
$this->assertCount(5, $crawler->filter('div[class=entry]'));
|
2015-08-18 17:28:12 +02:00
|
|
|
|
|
|
|
$form = $crawler->filter('button[id=submit-filter]')->form();
|
|
|
|
$data = array(
|
2015-08-20 07:53:55 +02:00
|
|
|
'entry_filter[domainName]' => 'wallabag',
|
2015-08-18 17:28:12 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
$crawler = $client->submit($form, $data);
|
|
|
|
$this->assertCount(0, $crawler->filter('div[class=entry]'));
|
|
|
|
}
|
2015-08-20 17:59:58 +02:00
|
|
|
|
|
|
|
public function testFilterOnStatus()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/unread/list');
|
|
|
|
$form = $crawler->filter('button[id=submit-filter]')->form();
|
|
|
|
$form['entry_filter[isArchived]']->tick();
|
|
|
|
$form['entry_filter[isStarred]']->untick();
|
|
|
|
|
|
|
|
$crawler = $client->submit($form);
|
2015-09-28 19:35:55 +02:00
|
|
|
$this->assertCount(1, $crawler->filter('div[class=entry]'));
|
2015-08-20 17:59:58 +02:00
|
|
|
|
|
|
|
$form = $crawler->filter('button[id=submit-filter]')->form();
|
|
|
|
$form['entry_filter[isArchived]']->untick();
|
|
|
|
$form['entry_filter[isStarred]']->tick();
|
|
|
|
|
|
|
|
$crawler = $client->submit($form);
|
2015-09-28 20:26:37 +02:00
|
|
|
$this->assertCount(1, $crawler->filter('div[class=entry]'));
|
2015-08-20 17:59:58 +02:00
|
|
|
}
|
2015-09-13 09:57:35 +02:00
|
|
|
|
|
|
|
public function testPreviewPictureFilter()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/unread/list');
|
|
|
|
$form = $crawler->filter('button[id=submit-filter]')->form();
|
|
|
|
$form['entry_filter[previewPicture]']->tick();
|
|
|
|
|
|
|
|
$crawler = $client->submit($form);
|
|
|
|
$this->assertCount(1, $crawler->filter('div[class=entry]'));
|
|
|
|
}
|
2015-09-23 07:55:55 +02:00
|
|
|
|
|
|
|
public function testFilterOnLanguage()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/unread/list');
|
|
|
|
$form = $crawler->filter('button[id=submit-filter]')->form();
|
|
|
|
$data = array(
|
2015-09-28 19:35:55 +02:00
|
|
|
'entry_filter[language]' => 'fr',
|
2015-09-23 07:55:55 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
$crawler = $client->submit($form, $data);
|
2015-09-28 20:26:37 +02:00
|
|
|
$this->assertCount(2, $crawler->filter('div[class=entry]'));
|
2015-09-23 07:55:55 +02:00
|
|
|
|
|
|
|
$form = $crawler->filter('button[id=submit-filter]')->form();
|
|
|
|
$data = array(
|
|
|
|
'entry_filter[language]' => 'en',
|
|
|
|
);
|
|
|
|
|
|
|
|
$crawler = $client->submit($form, $data);
|
|
|
|
$this->assertCount(2, $crawler->filter('div[class=entry]'));
|
|
|
|
}
|
2015-01-22 08:30:07 +01:00
|
|
|
}
|