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-12-27 21:28:48 +01:00
|
|
|
use Wallabag\CoreBundle\Entity\Entry;
|
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'));
|
|
|
|
}
|
|
|
|
|
2016-01-09 14:34:49 +01:00
|
|
|
public function testQuickstart()
|
|
|
|
{
|
|
|
|
$this->logInAs('empty');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$client->request('GET', '/unread/list');
|
|
|
|
$client->followRedirect();
|
|
|
|
|
|
|
|
$this->assertEquals(200, $client->getResponse()->getStatusCode());
|
|
|
|
$this->assertContains('We\'ll accompany you to visit wallabag', $client->getResponse()->getContent());
|
|
|
|
|
|
|
|
// Test if quickstart is disabled when user has 1 entry
|
|
|
|
$crawler = $client->request('GET', '/new');
|
|
|
|
|
|
|
|
$this->assertEquals(200, $client->getResponse()->getStatusCode());
|
|
|
|
|
|
|
|
$form = $crawler->filter('button[type=submit]')->form();
|
|
|
|
|
|
|
|
$data = array(
|
2016-01-15 15:28:22 +01:00
|
|
|
'entry[url]' => $this->url,
|
2016-01-09 14:34:49 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
$client->submit($form, $data);
|
|
|
|
$this->assertEquals(302, $client->getResponse()->getStatusCode());
|
|
|
|
$client->followRedirect();
|
|
|
|
|
|
|
|
$client->request('GET', '/unread/list');
|
|
|
|
$this->assertContains('There is one entry.', $client->getResponse()->getContent());
|
|
|
|
}
|
|
|
|
|
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]'));
|
|
|
|
}
|
|
|
|
|
2015-10-07 18:08:51 +02:00
|
|
|
public function testPostNewViaBookmarklet()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/');
|
|
|
|
|
|
|
|
$this->assertCount(4, $crawler->filter('div[class=entry]'));
|
|
|
|
|
|
|
|
// Good URL
|
2016-01-09 14:34:49 +01:00
|
|
|
$client->request('GET', '/bookmarklet', array('url' => $this->url));
|
2015-10-07 18:08:51 +02:00
|
|
|
$this->assertEquals(302, $client->getResponse()->getStatusCode());
|
2016-01-09 14:34:49 +01:00
|
|
|
$client->followRedirect();
|
2015-10-07 18:08:51 +02:00
|
|
|
$crawler = $client->request('GET', '/');
|
|
|
|
$this->assertCount(5, $crawler->filter('div[class=entry]'));
|
|
|
|
|
|
|
|
$em = $client->getContainer()
|
|
|
|
->get('doctrine.orm.entity_manager');
|
|
|
|
$entry = $em
|
|
|
|
->getRepository('WallabagCoreBundle:Entry')
|
2016-01-15 15:28:22 +01:00
|
|
|
->findByUrlAndUserId($this->url, $this->getLoggedInUserId());
|
2015-10-07 18:08:51 +02:00
|
|
|
$em->remove($entry);
|
|
|
|
$em->flush();
|
|
|
|
}
|
|
|
|
|
2015-02-07 18:30:46 +01:00
|
|
|
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]);
|
|
|
|
}
|
|
|
|
|
2015-11-01 23:42:52 +01:00
|
|
|
/**
|
2015-11-06 22:15:20 +01:00
|
|
|
* This test will require an internet connection.
|
2015-11-01 23:42:52 +01:00
|
|
|
*/
|
2015-02-07 18:30:46 +01:00
|
|
|
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());
|
|
|
|
|
2016-01-21 16:37:25 +01:00
|
|
|
$content = $client->getContainer()
|
|
|
|
->get('doctrine.orm.entity_manager')
|
|
|
|
->getRepository('WallabagCoreBundle:Entry')
|
|
|
|
->findByUrlAndUserId($this->url, $this->getLoggedInUserId());
|
|
|
|
|
|
|
|
$this->assertInstanceOf('Wallabag\CoreBundle\Entity\Entry', $content);
|
|
|
|
$this->assertEquals($this->url, $content->getUrl());
|
|
|
|
$this->assertContains('Google', $content->getTitle());
|
|
|
|
}
|
2015-02-07 18:30:46 +01:00
|
|
|
|
2016-01-21 16:37:25 +01:00
|
|
|
public function testPostNewOkUrlExist()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/new');
|
|
|
|
|
|
|
|
$this->assertEquals(200, $client->getResponse()->getStatusCode());
|
|
|
|
|
|
|
|
$form = $crawler->filter('button[type=submit]')->form();
|
|
|
|
|
|
|
|
$data = array(
|
|
|
|
'entry[url]' => $this->url,
|
|
|
|
);
|
|
|
|
|
|
|
|
$client->submit($form, $data);
|
|
|
|
|
|
|
|
$this->assertEquals(302, $client->getResponse()->getStatusCode());
|
|
|
|
$this->assertContains('/view/', $client->getResponse()->getTargetUrl());
|
2015-02-07 18:30:46 +01:00
|
|
|
}
|
|
|
|
|
2015-11-13 21:23:39 +01:00
|
|
|
/**
|
|
|
|
* This test will require an internet connection.
|
|
|
|
*/
|
|
|
|
public function testPostNewThatWillBeTaggued()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/new');
|
|
|
|
|
|
|
|
$this->assertEquals(200, $client->getResponse()->getStatusCode());
|
|
|
|
|
|
|
|
$form = $crawler->filter('button[type=submit]')->form();
|
|
|
|
|
|
|
|
$data = array(
|
|
|
|
'entry[url]' => $url = 'https://github.com/wallabag/wallabag',
|
|
|
|
);
|
|
|
|
|
|
|
|
$client->submit($form, $data);
|
|
|
|
|
|
|
|
$this->assertEquals(302, $client->getResponse()->getStatusCode());
|
|
|
|
|
2016-01-09 14:34:49 +01:00
|
|
|
$client->followRedirect();
|
2015-11-13 21:23:39 +01:00
|
|
|
|
|
|
|
$em = $client->getContainer()
|
|
|
|
->get('doctrine.orm.entity_manager');
|
|
|
|
$entry = $em
|
|
|
|
->getRepository('WallabagCoreBundle:Entry')
|
|
|
|
->findOneByUrl($url);
|
2015-11-16 13:34:00 +01:00
|
|
|
$tags = $entry->getTags();
|
|
|
|
|
|
|
|
$this->assertCount(1, $tags);
|
|
|
|
$this->assertEquals('wallabag', $tags[0]->getLabel());
|
2015-11-13 21:23:39 +01:00
|
|
|
|
|
|
|
$em->remove($entry);
|
|
|
|
$em->flush();
|
|
|
|
}
|
|
|
|
|
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());
|
|
|
|
}
|
|
|
|
|
2016-02-19 14:22:27 +01:00
|
|
|
public function testRangeException()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$client->request('GET', '/all/list/900');
|
|
|
|
|
|
|
|
$this->assertEquals(302, $client->getResponse()->getStatusCode());
|
|
|
|
$this->assertEquals('/all/list', $client->getResponse()->getTargetUrl());
|
|
|
|
}
|
|
|
|
|
2015-11-01 23:42:52 +01:00
|
|
|
/**
|
|
|
|
* @depends testPostNewOk
|
|
|
|
*/
|
2015-02-07 18:30:46 +01:00
|
|
|
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')
|
2016-01-15 15:28:22 +01:00
|
|
|
->findByUrlAndUserId($this->url, $this->getLoggedInUserId());
|
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-12-30 09:41:17 +01:00
|
|
|
/**
|
|
|
|
* @depends testPostNewOk
|
|
|
|
*
|
|
|
|
* This test will require an internet connection.
|
|
|
|
*/
|
|
|
|
public function testReload()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$content = $client->getContainer()
|
|
|
|
->get('doctrine.orm.entity_manager')
|
|
|
|
->getRepository('WallabagCoreBundle:Entry')
|
2016-01-15 15:28:22 +01:00
|
|
|
->findByUrlAndUserId($this->url, $this->getLoggedInUserId());
|
2015-12-30 09:41:17 +01:00
|
|
|
|
|
|
|
// empty content
|
|
|
|
$content->setContent('');
|
|
|
|
$client->getContainer()->get('doctrine.orm.entity_manager')->persist($content);
|
|
|
|
$client->getContainer()->get('doctrine.orm.entity_manager')->flush();
|
|
|
|
|
|
|
|
$client->request('GET', '/reload/'.$content->getId());
|
|
|
|
|
|
|
|
$this->assertEquals(302, $client->getResponse()->getStatusCode());
|
|
|
|
|
|
|
|
$content = $client->getContainer()
|
|
|
|
->get('doctrine.orm.entity_manager')
|
|
|
|
->getRepository('WallabagCoreBundle:Entry')
|
2016-01-15 15:28:22 +01:00
|
|
|
->findByUrlAndUserId($this->url, $this->getLoggedInUserId());
|
2015-12-30 09:41:17 +01:00
|
|
|
|
|
|
|
$this->assertNotEmpty($content->getContent());
|
|
|
|
}
|
|
|
|
|
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')
|
2016-01-15 15:28:22 +01:00
|
|
|
->findByUrlAndUserId($this->url, $this->getLoggedInUserId());
|
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')
|
2016-01-15 15:28:22 +01:00
|
|
|
->findByUrlAndUserId($this->url, $this->getLoggedInUserId());
|
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')
|
2016-01-15 15:28:22 +01:00
|
|
|
->findByUrlAndUserId($this->url, $this->getLoggedInUserId());
|
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')
|
2016-01-15 15:28:22 +01:00
|
|
|
->findByUrlAndUserId($this->url, $this->getLoggedInUserId());
|
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')
|
2016-01-15 15:28:22 +01:00
|
|
|
->findByUrlAndUserId($this->url, $this->getLoggedInUserId());
|
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
|
|
|
|
2015-12-27 21:28:48 +01:00
|
|
|
/**
|
|
|
|
* It will create a new entry.
|
|
|
|
* Browse to it.
|
|
|
|
* Then remove it.
|
|
|
|
*
|
|
|
|
* And it'll check that user won't be redirected to the view page of the content when it had been removed
|
|
|
|
*/
|
|
|
|
public function testViewAndDelete()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
// add a new content to be removed later
|
|
|
|
$user = $client->getContainer()
|
|
|
|
->get('doctrine.orm.entity_manager')
|
|
|
|
->getRepository('WallabagUserBundle:User')
|
|
|
|
->findOneByUserName('admin');
|
|
|
|
|
|
|
|
$content = new Entry($user);
|
|
|
|
$content->setUrl('http://1.1.1.1/entry');
|
|
|
|
$content->setReadingTime(12);
|
|
|
|
$content->setDomainName('domain.io');
|
|
|
|
$content->setMimetype('text/html');
|
|
|
|
$content->setTitle('test title entry');
|
|
|
|
$content->setContent('This is my content /o/');
|
|
|
|
$content->setArchived(true);
|
|
|
|
$content->setLanguage('fr');
|
|
|
|
|
|
|
|
$client->getContainer()
|
|
|
|
->get('doctrine.orm.entity_manager')
|
|
|
|
->persist($content);
|
|
|
|
$client->getContainer()
|
|
|
|
->get('doctrine.orm.entity_manager')
|
|
|
|
->flush();
|
|
|
|
|
|
|
|
$client->request('GET', '/view/'.$content->getId());
|
|
|
|
$this->assertEquals(200, $client->getResponse()->getStatusCode());
|
|
|
|
|
|
|
|
$client->request('GET', '/delete/'.$content->getId());
|
|
|
|
$this->assertEquals(302, $client->getResponse()->getStatusCode());
|
|
|
|
|
|
|
|
$client->followRedirect();
|
|
|
|
$this->assertEquals(200, $client->getResponse()->getStatusCode());
|
|
|
|
}
|
|
|
|
|
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=';
|
|
|
|
|
2016-01-09 14:34:49 +01:00
|
|
|
$client->request('GET', 'unread/list'.$parameters);
|
2015-08-17 15:15:51 +02:00
|
|
|
|
|
|
|
$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
|
|
|
}
|