2015-01-22 07:30:07 +00:00
|
|
|
<?php
|
|
|
|
|
2016-06-01 19:27:35 +00:00
|
|
|
namespace Tests\Wallabag\CoreBundle\Controller;
|
2015-01-22 07:30:07 +00:00
|
|
|
|
2016-06-01 19:27:35 +00:00
|
|
|
use Tests\Wallabag\CoreBundle\WallabagCoreTestCase;
|
2015-12-27 20:28:48 +00:00
|
|
|
use Wallabag\CoreBundle\Entity\Entry;
|
2015-01-22 07:30:07 +00:00
|
|
|
|
2015-03-29 08:53:10 +00:00
|
|
|
class EntryControllerTest extends WallabagCoreTestCase
|
2015-01-22 07:30:07 +00:00
|
|
|
{
|
2015-09-28 18:26:37 +00: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 22:05:51 +00:00
|
|
|
public function testLogin()
|
|
|
|
{
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
2015-02-10 21:32:42 +00:00
|
|
|
$client->request('GET', '/new');
|
2015-02-08 22:05:51 +00:00
|
|
|
|
|
|
|
$this->assertEquals(302, $client->getResponse()->getStatusCode());
|
|
|
|
$this->assertContains('login', $client->getResponse()->headers->get('location'));
|
|
|
|
}
|
|
|
|
|
2016-01-09 13:34:49 +00:00
|
|
|
public function testQuickstart()
|
|
|
|
{
|
|
|
|
$this->logInAs('empty');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$client->request('GET', '/unread/list');
|
2016-03-11 08:42:08 +00:00
|
|
|
$crawler = $client->followRedirect();
|
2016-01-09 13:34:49 +00:00
|
|
|
|
|
|
|
$this->assertEquals(200, $client->getResponse()->getStatusCode());
|
2016-04-12 09:36:01 +00:00
|
|
|
$this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
|
2016-10-01 23:47:10 +00:00
|
|
|
$this->assertContains('quickstart.intro.title', $body[0]);
|
2016-01-09 13:34:49 +00:00
|
|
|
|
|
|
|
// Test if quickstart is disabled when user has 1 entry
|
|
|
|
$crawler = $client->request('GET', '/new');
|
|
|
|
|
|
|
|
$this->assertEquals(200, $client->getResponse()->getStatusCode());
|
|
|
|
|
2016-03-09 07:59:08 +00:00
|
|
|
$form = $crawler->filter('form[name=entry]')->form();
|
2016-01-09 13:34:49 +00:00
|
|
|
|
2016-04-12 09:36:01 +00:00
|
|
|
$data = [
|
2016-01-15 14:28:22 +00:00
|
|
|
'entry[url]' => $this->url,
|
2016-04-12 09:36:01 +00:00
|
|
|
];
|
2016-01-09 13:34:49 +00:00
|
|
|
|
|
|
|
$client->submit($form, $data);
|
|
|
|
$this->assertEquals(302, $client->getResponse()->getStatusCode());
|
|
|
|
$client->followRedirect();
|
|
|
|
|
2016-03-11 08:42:08 +00:00
|
|
|
$crawler = $client->request('GET', '/unread/list');
|
2016-04-12 09:36:01 +00:00
|
|
|
$this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
|
2016-03-11 08:42:08 +00:00
|
|
|
$this->assertContains('entry.list.number_on_the_page', $body[0]);
|
2016-01-09 13:34:49 +00:00
|
|
|
}
|
|
|
|
|
2015-02-07 17:30:46 +00:00
|
|
|
public function testGetNew()
|
2015-01-22 07:30:07 +00:00
|
|
|
{
|
2015-02-10 21:32:42 +00:00
|
|
|
$this->logInAs('admin');
|
2015-02-08 22:05:51 +00:00
|
|
|
$client = $this->getClient();
|
2015-01-22 07:30:07 +00:00
|
|
|
|
2015-01-31 08:15:51 +00:00
|
|
|
$crawler = $client->request('GET', '/new');
|
2015-01-22 07:30:07 +00:00
|
|
|
|
|
|
|
$this->assertEquals(200, $client->getResponse()->getStatusCode());
|
2015-02-07 17:30:46 +00:00
|
|
|
|
|
|
|
$this->assertCount(1, $crawler->filter('input[type=url]'));
|
2016-03-09 07:59:08 +00:00
|
|
|
$this->assertCount(1, $crawler->filter('form[name=entry]'));
|
2015-02-07 17:30:46 +00:00
|
|
|
}
|
|
|
|
|
2015-10-07 16:08:51 +00: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-04-12 09:36:01 +00:00
|
|
|
$client->request('GET', '/bookmarklet', ['url' => $this->url]);
|
2015-10-07 16:08:51 +00:00
|
|
|
$this->assertEquals(302, $client->getResponse()->getStatusCode());
|
2016-01-09 13:34:49 +00:00
|
|
|
$client->followRedirect();
|
2015-10-07 16:08:51 +00: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 14:28:22 +00:00
|
|
|
->findByUrlAndUserId($this->url, $this->getLoggedInUserId());
|
2015-10-07 16:08:51 +00:00
|
|
|
$em->remove($entry);
|
|
|
|
$em->flush();
|
|
|
|
}
|
|
|
|
|
2015-02-07 17:30:46 +00:00
|
|
|
public function testPostNewEmpty()
|
|
|
|
{
|
2015-02-10 21:32:42 +00:00
|
|
|
$this->logInAs('admin');
|
2015-02-08 22:05:51 +00:00
|
|
|
$client = $this->getClient();
|
2015-02-07 17:30:46 +00:00
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/new');
|
|
|
|
|
|
|
|
$this->assertEquals(200, $client->getResponse()->getStatusCode());
|
|
|
|
|
2016-03-09 07:59:08 +00:00
|
|
|
$form = $crawler->filter('form[name=entry]')->form();
|
2015-02-07 17:30:46 +00:00
|
|
|
|
|
|
|
$crawler = $client->submit($form);
|
|
|
|
|
|
|
|
$this->assertEquals(200, $client->getResponse()->getStatusCode());
|
2016-04-12 09:36:01 +00:00
|
|
|
$this->assertCount(1, $alert = $crawler->filter('form ul li')->extract(['_text']));
|
2015-02-07 17:30:46 +00:00
|
|
|
$this->assertEquals('This value should not be blank.', $alert[0]);
|
|
|
|
}
|
|
|
|
|
2015-11-01 22:42:52 +00:00
|
|
|
/**
|
2015-11-06 21:15:20 +00:00
|
|
|
* This test will require an internet connection.
|
2015-11-01 22:42:52 +00:00
|
|
|
*/
|
2015-02-07 17:30:46 +00:00
|
|
|
public function testPostNewOk()
|
|
|
|
{
|
2015-02-10 21:32:42 +00:00
|
|
|
$this->logInAs('admin');
|
2015-02-08 22:05:51 +00:00
|
|
|
$client = $this->getClient();
|
2015-02-07 17:30:46 +00:00
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/new');
|
|
|
|
|
|
|
|
$this->assertEquals(200, $client->getResponse()->getStatusCode());
|
|
|
|
|
2016-03-09 07:59:08 +00:00
|
|
|
$form = $crawler->filter('form[name=entry]')->form();
|
2015-02-07 17:30:46 +00:00
|
|
|
|
2016-04-12 09:36:01 +00:00
|
|
|
$data = [
|
2015-09-28 18:26:37 +00:00
|
|
|
'entry[url]' => $this->url,
|
2016-04-12 09:36:01 +00:00
|
|
|
];
|
2015-02-07 17:30:46 +00:00
|
|
|
|
|
|
|
$client->submit($form, $data);
|
|
|
|
|
|
|
|
$this->assertEquals(302, $client->getResponse()->getStatusCode());
|
|
|
|
|
2016-01-21 15:37:25 +00: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 17:30:46 +00:00
|
|
|
|
2016-01-21 15:37:25 +00:00
|
|
|
public function testPostNewOkUrlExist()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/new');
|
|
|
|
|
|
|
|
$this->assertEquals(200, $client->getResponse()->getStatusCode());
|
|
|
|
|
2016-03-09 07:59:08 +00:00
|
|
|
$form = $crawler->filter('form[name=entry]')->form();
|
2016-01-21 15:37:25 +00:00
|
|
|
|
2016-04-12 09:36:01 +00:00
|
|
|
$data = [
|
2016-01-21 15:37:25 +00:00
|
|
|
'entry[url]' => $this->url,
|
2016-04-12 09:36:01 +00:00
|
|
|
];
|
2016-01-21 15:37:25 +00:00
|
|
|
|
|
|
|
$client->submit($form, $data);
|
|
|
|
|
|
|
|
$this->assertEquals(302, $client->getResponse()->getStatusCode());
|
|
|
|
$this->assertContains('/view/', $client->getResponse()->getTargetUrl());
|
2015-02-07 17:30:46 +00:00
|
|
|
}
|
|
|
|
|
2016-10-01 15:57:38 +00:00
|
|
|
public function testPostNewOkUrlExistWithAccent()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$url = 'http://www.aritylabs.com/post/106091708292/des-contr%C3%B4leurs-optionnels-gr%C3%A2ce-%C3%A0-constmissing';
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/new');
|
|
|
|
|
|
|
|
$this->assertEquals(200, $client->getResponse()->getStatusCode());
|
|
|
|
|
|
|
|
$form = $crawler->filter('form[name=entry]')->form();
|
|
|
|
|
|
|
|
$data = [
|
|
|
|
'entry[url]' => $url,
|
|
|
|
];
|
|
|
|
|
|
|
|
$client->submit($form, $data);
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/new');
|
|
|
|
|
|
|
|
$this->assertEquals(200, $client->getResponse()->getStatusCode());
|
|
|
|
|
|
|
|
$form = $crawler->filter('form[name=entry]')->form();
|
|
|
|
|
|
|
|
$data = [
|
|
|
|
'entry[url]' => $url,
|
|
|
|
];
|
2016-01-21 15:37:25 +00:00
|
|
|
|
|
|
|
$client->submit($form, $data);
|
|
|
|
|
|
|
|
$this->assertEquals(302, $client->getResponse()->getStatusCode());
|
|
|
|
$this->assertContains('/view/', $client->getResponse()->getTargetUrl());
|
2016-10-01 23:34:52 +00:00
|
|
|
|
|
|
|
$em = $client->getContainer()
|
|
|
|
->get('doctrine.orm.entity_manager');
|
|
|
|
$entry = $em
|
|
|
|
->getRepository('WallabagCoreBundle:Entry')
|
|
|
|
->findOneByUrl(urldecode($url));
|
|
|
|
|
|
|
|
$em->remove($entry);
|
|
|
|
$em->flush();
|
2015-02-07 17:30:46 +00:00
|
|
|
}
|
|
|
|
|
2015-11-13 20:23:39 +00:00
|
|
|
/**
|
|
|
|
* This test will require an internet connection.
|
|
|
|
*/
|
2016-05-30 12:34:11 +00:00
|
|
|
public function testPostNewThatWillBeTagged()
|
2015-11-13 20:23:39 +00:00
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/new');
|
|
|
|
|
|
|
|
$this->assertEquals(200, $client->getResponse()->getStatusCode());
|
|
|
|
|
2016-03-09 07:59:08 +00:00
|
|
|
$form = $crawler->filter('form[name=entry]')->form();
|
2015-11-13 20:23:39 +00:00
|
|
|
|
2016-04-12 09:36:01 +00:00
|
|
|
$data = [
|
2015-11-13 20:23:39 +00:00
|
|
|
'entry[url]' => $url = 'https://github.com/wallabag/wallabag',
|
2016-04-12 09:36:01 +00:00
|
|
|
];
|
2015-11-13 20:23:39 +00:00
|
|
|
|
|
|
|
$client->submit($form, $data);
|
|
|
|
|
|
|
|
$this->assertEquals(302, $client->getResponse()->getStatusCode());
|
2016-05-30 12:34:11 +00:00
|
|
|
$this->assertContains('/', $client->getResponse()->getTargetUrl());
|
2015-11-13 20:23:39 +00:00
|
|
|
|
|
|
|
$em = $client->getContainer()
|
|
|
|
->get('doctrine.orm.entity_manager');
|
|
|
|
$entry = $em
|
|
|
|
->getRepository('WallabagCoreBundle:Entry')
|
|
|
|
->findOneByUrl($url);
|
2015-11-16 12:34:00 +00:00
|
|
|
$tags = $entry->getTags();
|
|
|
|
|
|
|
|
$this->assertCount(1, $tags);
|
|
|
|
$this->assertEquals('wallabag', $tags[0]->getLabel());
|
2015-11-13 20:23:39 +00:00
|
|
|
|
|
|
|
$em->remove($entry);
|
|
|
|
$em->flush();
|
2016-05-30 12:34:11 +00:00
|
|
|
|
|
|
|
// and now re-submit it to test the cascade persistence for tags after entry removal
|
|
|
|
// related https://github.com/wallabag/wallabag/issues/2121
|
|
|
|
$crawler = $client->request('GET', '/new');
|
|
|
|
|
|
|
|
$this->assertEquals(200, $client->getResponse()->getStatusCode());
|
|
|
|
|
|
|
|
$form = $crawler->filter('form[name=entry]')->form();
|
|
|
|
|
|
|
|
$data = [
|
|
|
|
'entry[url]' => $url = 'https://github.com/wallabag/wallabag/tree/master',
|
|
|
|
];
|
|
|
|
|
|
|
|
$client->submit($form, $data);
|
|
|
|
|
|
|
|
$this->assertEquals(302, $client->getResponse()->getStatusCode());
|
|
|
|
$this->assertContains('/', $client->getResponse()->getTargetUrl());
|
|
|
|
|
|
|
|
$entry = $em
|
|
|
|
->getRepository('WallabagCoreBundle:Entry')
|
|
|
|
->findOneByUrl($url);
|
|
|
|
|
|
|
|
$tags = $entry->getTags();
|
|
|
|
|
|
|
|
$this->assertCount(1, $tags);
|
|
|
|
$this->assertEquals('wallabag', $tags[0]->getLabel());
|
|
|
|
|
|
|
|
$em->remove($entry);
|
|
|
|
$em->flush();
|
2015-11-13 20:23:39 +00:00
|
|
|
}
|
|
|
|
|
2015-02-07 17:30:46 +00:00
|
|
|
public function testArchive()
|
|
|
|
{
|
2015-02-10 21:32:42 +00:00
|
|
|
$this->logInAs('admin');
|
2015-02-08 22:05:51 +00:00
|
|
|
$client = $this->getClient();
|
2015-02-07 17:30:46 +00:00
|
|
|
|
2015-07-27 21:20:32 +00:00
|
|
|
$client->request('GET', '/archive/list');
|
2015-02-07 17:30:46 +00:00
|
|
|
|
|
|
|
$this->assertEquals(200, $client->getResponse()->getStatusCode());
|
|
|
|
}
|
|
|
|
|
2016-08-26 19:01:56 +00:00
|
|
|
public function testUntagged()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$client->request('GET', '/untagged/list');
|
|
|
|
|
|
|
|
$this->assertEquals(200, $client->getResponse()->getStatusCode());
|
|
|
|
}
|
|
|
|
|
2015-02-07 17:30:46 +00:00
|
|
|
public function testStarred()
|
|
|
|
{
|
2015-02-10 21:32:42 +00:00
|
|
|
$this->logInAs('admin');
|
2015-02-08 22:05:51 +00:00
|
|
|
$client = $this->getClient();
|
2015-02-07 17:30:46 +00:00
|
|
|
|
2015-07-27 21:20:32 +00:00
|
|
|
$client->request('GET', '/starred/list');
|
2015-02-07 17:30:46 +00:00
|
|
|
|
|
|
|
$this->assertEquals(200, $client->getResponse()->getStatusCode());
|
|
|
|
}
|
|
|
|
|
2016-02-19 13:22:27 +00:00
|
|
|
public function testRangeException()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$client->request('GET', '/all/list/900');
|
|
|
|
|
2016-04-12 14:40:18 +00:00
|
|
|
$this->assertEquals(302, $client->getResponse()->getStatusCode());
|
|
|
|
$this->assertEquals('/all/list', $client->getResponse()->getTargetUrl());
|
2016-02-19 13:22:27 +00:00
|
|
|
}
|
|
|
|
|
2015-11-01 22:42:52 +00:00
|
|
|
/**
|
|
|
|
* @depends testPostNewOk
|
|
|
|
*/
|
2015-02-07 17:30:46 +00:00
|
|
|
public function testView()
|
|
|
|
{
|
2015-02-10 21:32:42 +00:00
|
|
|
$this->logInAs('admin');
|
2015-02-08 22:05:51 +00:00
|
|
|
$client = $this->getClient();
|
2015-02-07 17:30:46 +00:00
|
|
|
|
|
|
|
$content = $client->getContainer()
|
|
|
|
->get('doctrine.orm.entity_manager')
|
|
|
|
->getRepository('WallabagCoreBundle:Entry')
|
2016-01-15 14:28:22 +00:00
|
|
|
->findByUrlAndUserId($this->url, $this->getLoggedInUserId());
|
2015-02-07 17:30:46 +00:00
|
|
|
|
2016-03-11 08:42:08 +00:00
|
|
|
$crawler = $client->request('GET', '/view/'.$content->getId());
|
2015-02-07 17:30:46 +00:00
|
|
|
|
|
|
|
$this->assertEquals(200, $client->getResponse()->getStatusCode());
|
2016-04-12 09:36:01 +00:00
|
|
|
$this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
|
2016-03-11 08:42:08 +00:00
|
|
|
$this->assertContains($content->getTitle(), $body[0]);
|
2015-01-22 07:30:07 +00:00
|
|
|
}
|
2015-02-10 21:32:42 +00:00
|
|
|
|
2015-12-30 08:41:17 +00: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 14:28:22 +00:00
|
|
|
->findByUrlAndUserId($this->url, $this->getLoggedInUserId());
|
2015-12-30 08:41:17 +00: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 14:28:22 +00:00
|
|
|
->findByUrlAndUserId($this->url, $this->getLoggedInUserId());
|
2015-12-30 08:41:17 +00:00
|
|
|
|
|
|
|
$this->assertNotEmpty($content->getContent());
|
|
|
|
}
|
|
|
|
|
2015-06-02 16:54:34 +00:00
|
|
|
public function testEdit()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$content = $client->getContainer()
|
|
|
|
->get('doctrine.orm.entity_manager')
|
|
|
|
->getRepository('WallabagCoreBundle:Entry')
|
2016-01-15 14:28:22 +00:00
|
|
|
->findByUrlAndUserId($this->url, $this->getLoggedInUserId());
|
2015-06-02 16:54:34 +00: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 14:28:22 +00:00
|
|
|
->findByUrlAndUserId($this->url, $this->getLoggedInUserId());
|
2015-06-02 16:54:34 +00:00
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/edit/'.$content->getId());
|
|
|
|
|
|
|
|
$this->assertEquals(200, $client->getResponse()->getStatusCode());
|
|
|
|
|
|
|
|
$form = $crawler->filter('button[type=submit]')->form();
|
|
|
|
|
2016-04-12 09:36:01 +00:00
|
|
|
$data = [
|
2015-06-02 16:54:34 +00:00
|
|
|
'entry[title]' => 'My updated title hehe :)',
|
2016-04-12 09:36:01 +00:00
|
|
|
];
|
2015-06-02 16:54:34 +00:00
|
|
|
|
|
|
|
$client->submit($form, $data);
|
|
|
|
|
|
|
|
$this->assertEquals(302, $client->getResponse()->getStatusCode());
|
|
|
|
|
|
|
|
$crawler = $client->followRedirect();
|
|
|
|
|
2016-04-12 09:36:01 +00:00
|
|
|
$this->assertGreaterThan(1, $alert = $crawler->filter('div[id=article] h1')->extract(['_text']));
|
2015-06-02 16:54:34 +00:00
|
|
|
$this->assertContains('My updated title hehe :)', $alert[0]);
|
|
|
|
}
|
|
|
|
|
2015-02-10 21:32:42 +00:00
|
|
|
public function testToggleArchive()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$content = $client->getContainer()
|
|
|
|
->get('doctrine.orm.entity_manager')
|
|
|
|
->getRepository('WallabagCoreBundle:Entry')
|
2016-01-15 14:28:22 +00:00
|
|
|
->findByUrlAndUserId($this->url, $this->getLoggedInUserId());
|
2015-02-10 21:32:42 +00: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 17:35:55 +00:00
|
|
|
->find($content->getId());
|
2015-02-10 21:32:42 +00: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 14:28:22 +00:00
|
|
|
->findByUrlAndUserId($this->url, $this->getLoggedInUserId());
|
2015-02-10 21:32:42 +00: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 14:28:22 +00:00
|
|
|
->findByUrlAndUserId($this->url, $this->getLoggedInUserId());
|
2015-02-10 21:32:42 +00:00
|
|
|
|
|
|
|
$client->request('GET', '/delete/'.$content->getId());
|
|
|
|
|
|
|
|
$this->assertEquals(302, $client->getResponse()->getStatusCode());
|
|
|
|
|
2015-02-20 14:36:25 +00:00
|
|
|
$client->request('GET', '/delete/'.$content->getId());
|
2015-02-10 21:32:42 +00:00
|
|
|
|
2015-02-20 14:36:25 +00:00
|
|
|
$this->assertEquals(404, $client->getResponse()->getStatusCode());
|
2015-02-10 21:32:42 +00:00
|
|
|
}
|
2015-02-10 21:33:18 +00:00
|
|
|
|
2015-12-27 20:28:48 +00: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 21:33:18 +00:00
|
|
|
public function testViewOtherUserEntry()
|
|
|
|
{
|
2015-09-28 17:35:55 +00:00
|
|
|
$this->logInAs('admin');
|
2015-02-10 21:33:18 +00:00
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$content = $client->getContainer()
|
|
|
|
->get('doctrine.orm.entity_manager')
|
|
|
|
->getRepository('WallabagCoreBundle:Entry')
|
2015-09-28 17:35:55 +00:00
|
|
|
->findOneByUsernameAndNotArchived('bob');
|
2015-02-10 21:33:18 +00:00
|
|
|
|
2015-09-28 17:35:55 +00:00
|
|
|
$client->request('GET', '/view/'.$content->getId());
|
2015-02-10 21:33:18 +00:00
|
|
|
|
|
|
|
$this->assertEquals(403, $client->getResponse()->getStatusCode());
|
|
|
|
}
|
2015-08-07 20:20:30 +00:00
|
|
|
|
2015-08-18 14:33:32 +00:00
|
|
|
public function testFilterOnReadingTime()
|
2015-08-07 20:20:30 +00:00
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/unread/list');
|
|
|
|
|
|
|
|
$form = $crawler->filter('button[id=submit-filter]')->form();
|
|
|
|
|
2016-04-12 09:36:01 +00:00
|
|
|
$data = [
|
2016-04-24 18:46:25 +00:00
|
|
|
'entry_filter[readingTime][right_number]' => 22,
|
|
|
|
'entry_filter[readingTime][left_number]' => 22,
|
2016-04-12 09:36:01 +00:00
|
|
|
];
|
2015-08-07 20:20:30 +00:00
|
|
|
|
|
|
|
$crawler = $client->submit($form, $data);
|
|
|
|
|
|
|
|
$this->assertCount(1, $crawler->filter('div[class=entry]'));
|
|
|
|
}
|
2015-08-17 13:15:51 +00:00
|
|
|
|
2016-06-23 08:46:47 +00:00
|
|
|
public function testFilterOnReadingTimeOnlyUpper()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/unread/list');
|
|
|
|
|
|
|
|
$form = $crawler->filter('button[id=submit-filter]')->form();
|
|
|
|
|
|
|
|
$data = [
|
|
|
|
'entry_filter[readingTime][right_number]' => 22,
|
|
|
|
];
|
|
|
|
|
|
|
|
$crawler = $client->submit($form, $data);
|
|
|
|
|
|
|
|
$this->assertCount(2, $crawler->filter('div[class=entry]'));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testFilterOnReadingTimeOnlyLower()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/unread/list');
|
|
|
|
|
|
|
|
$form = $crawler->filter('button[id=submit-filter]')->form();
|
|
|
|
|
|
|
|
$data = [
|
|
|
|
'entry_filter[readingTime][left_number]' => 22,
|
|
|
|
];
|
|
|
|
|
|
|
|
$crawler = $client->submit($form, $data);
|
|
|
|
|
|
|
|
$this->assertCount(4, $crawler->filter('div[class=entry]'));
|
|
|
|
}
|
|
|
|
|
2016-05-09 18:48:28 +00:00
|
|
|
public function testFilterOnUnreadStatus()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/all/list');
|
|
|
|
|
|
|
|
$form = $crawler->filter('button[id=submit-filter]')->form();
|
|
|
|
|
|
|
|
$data = [
|
|
|
|
'entry_filter[isUnread]' => true,
|
|
|
|
];
|
|
|
|
|
|
|
|
$crawler = $client->submit($form, $data);
|
|
|
|
|
|
|
|
$this->assertCount(4, $crawler->filter('div[class=entry]'));
|
|
|
|
}
|
|
|
|
|
2015-08-18 14:33:32 +00:00
|
|
|
public function testFilterOnCreationDate()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/unread/list');
|
|
|
|
|
|
|
|
$form = $crawler->filter('button[id=submit-filter]')->form();
|
|
|
|
|
2016-04-12 09:36:01 +00:00
|
|
|
$data = [
|
2015-08-18 14:33:32 +00:00
|
|
|
'entry_filter[createdAt][left_date]' => date('d/m/Y'),
|
2015-08-20 05:53:55 +00:00
|
|
|
'entry_filter[createdAt][right_date]' => date('d/m/Y', strtotime('+1 day')),
|
2016-04-12 09:36:01 +00:00
|
|
|
];
|
2015-08-18 14:33:32 +00:00
|
|
|
|
|
|
|
$crawler = $client->submit($form, $data);
|
|
|
|
|
2015-08-20 15:59:58 +00:00
|
|
|
$this->assertCount(5, $crawler->filter('div[class=entry]'));
|
2015-08-18 14:33:32 +00:00
|
|
|
|
2016-04-12 09:36:01 +00:00
|
|
|
$data = [
|
2015-08-23 20:06:27 +00:00
|
|
|
'entry_filter[createdAt][left_date]' => date('d/m/Y'),
|
|
|
|
'entry_filter[createdAt][right_date]' => date('d/m/Y'),
|
2016-04-12 09:36:01 +00:00
|
|
|
];
|
2015-08-23 20:06:27 +00:00
|
|
|
|
|
|
|
$crawler = $client->submit($form, $data);
|
|
|
|
|
|
|
|
$this->assertCount(5, $crawler->filter('div[class=entry]'));
|
|
|
|
|
2016-04-12 09:36:01 +00:00
|
|
|
$data = [
|
2015-08-18 14:33:32 +00:00
|
|
|
'entry_filter[createdAt][left_date]' => '01/01/1970',
|
2015-08-20 05:53:55 +00:00
|
|
|
'entry_filter[createdAt][right_date]' => '01/01/1970',
|
2016-04-12 09:36:01 +00:00
|
|
|
];
|
2015-08-18 14:33:32 +00:00
|
|
|
|
|
|
|
$crawler = $client->submit($form, $data);
|
|
|
|
|
|
|
|
$this->assertCount(0, $crawler->filter('div[class=entry]'));
|
|
|
|
}
|
|
|
|
|
2015-08-17 13:15:51 +00:00
|
|
|
public function testPaginationWithFilter()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
$crawler = $client->request('GET', '/config');
|
|
|
|
|
|
|
|
$form = $crawler->filter('button[id=config_save]')->form();
|
|
|
|
|
2016-04-12 09:36:01 +00:00
|
|
|
$data = [
|
2015-08-17 13:15:51 +00:00
|
|
|
'config[items_per_page]' => '1',
|
2016-04-12 09:36:01 +00:00
|
|
|
];
|
2015-08-17 13:15:51 +00:00
|
|
|
|
|
|
|
$client->submit($form, $data);
|
|
|
|
|
2016-04-12 14:32:01 +00:00
|
|
|
$parameters = '?entry_filter%5BreadingTime%5D%5Bleft_number%5D=&entry_filter%5BreadingTime%5D%5Bright_number%5D=';
|
2015-08-17 13:15:51 +00:00
|
|
|
|
2016-01-09 13:34:49 +00:00
|
|
|
$client->request('GET', 'unread/list'.$parameters);
|
2015-08-17 13:15:51 +00:00
|
|
|
|
|
|
|
$this->assertContains($parameters, $client->getResponse()->getContent());
|
2015-08-20 15:59:58 +00:00
|
|
|
|
|
|
|
// reset pagination
|
|
|
|
$crawler = $client->request('GET', '/config');
|
|
|
|
$form = $crawler->filter('button[id=config_save]')->form();
|
2016-04-12 09:36:01 +00:00
|
|
|
$data = [
|
2015-08-20 15:59:58 +00:00
|
|
|
'config[items_per_page]' => '12',
|
2016-04-12 09:36:01 +00:00
|
|
|
];
|
2015-08-20 15:59:58 +00:00
|
|
|
$client->submit($form, $data);
|
2015-08-17 13:15:51 +00:00
|
|
|
}
|
2015-08-18 15:28:12 +00:00
|
|
|
|
|
|
|
public function testFilterOnDomainName()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/unread/list');
|
|
|
|
$form = $crawler->filter('button[id=submit-filter]')->form();
|
2016-04-12 09:36:01 +00:00
|
|
|
$data = [
|
2015-09-28 18:26:37 +00:00
|
|
|
'entry_filter[domainName]' => 'domain',
|
2016-04-12 09:36:01 +00:00
|
|
|
];
|
2015-08-18 15:28:12 +00:00
|
|
|
|
|
|
|
$crawler = $client->submit($form, $data);
|
2015-09-28 18:26:37 +00:00
|
|
|
$this->assertCount(5, $crawler->filter('div[class=entry]'));
|
2015-08-18 15:28:12 +00:00
|
|
|
|
|
|
|
$form = $crawler->filter('button[id=submit-filter]')->form();
|
2016-04-12 09:36:01 +00:00
|
|
|
$data = [
|
2015-08-20 05:53:55 +00:00
|
|
|
'entry_filter[domainName]' => 'wallabag',
|
2016-04-12 09:36:01 +00:00
|
|
|
];
|
2015-08-18 15:28:12 +00:00
|
|
|
|
|
|
|
$crawler = $client->submit($form, $data);
|
|
|
|
$this->assertCount(0, $crawler->filter('div[class=entry]'));
|
|
|
|
}
|
2015-08-20 15:59:58 +00: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 17:35:55 +00:00
|
|
|
$this->assertCount(1, $crawler->filter('div[class=entry]'));
|
2015-08-20 15:59:58 +00: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 18:26:37 +00:00
|
|
|
$this->assertCount(1, $crawler->filter('div[class=entry]'));
|
2015-08-20 15:59:58 +00:00
|
|
|
}
|
2015-09-13 07:57:35 +00: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 05:55:55 +00:00
|
|
|
|
|
|
|
public function testFilterOnLanguage()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/unread/list');
|
|
|
|
$form = $crawler->filter('button[id=submit-filter]')->form();
|
2016-04-12 09:36:01 +00:00
|
|
|
$data = [
|
2015-09-28 17:35:55 +00:00
|
|
|
'entry_filter[language]' => 'fr',
|
2016-04-12 09:36:01 +00:00
|
|
|
];
|
2015-09-23 05:55:55 +00:00
|
|
|
|
|
|
|
$crawler = $client->submit($form, $data);
|
2015-09-28 18:26:37 +00:00
|
|
|
$this->assertCount(2, $crawler->filter('div[class=entry]'));
|
2015-09-23 05:55:55 +00:00
|
|
|
|
|
|
|
$form = $crawler->filter('button[id=submit-filter]')->form();
|
2016-04-12 09:36:01 +00:00
|
|
|
$data = [
|
2015-09-23 05:55:55 +00:00
|
|
|
'entry_filter[language]' => 'en',
|
2016-04-12 09:36:01 +00:00
|
|
|
];
|
2015-09-23 05:55:55 +00:00
|
|
|
|
|
|
|
$crawler = $client->submit($form, $data);
|
|
|
|
$this->assertCount(2, $crawler->filter('div[class=entry]'));
|
|
|
|
}
|
2016-04-15 11:42:13 +00:00
|
|
|
|
|
|
|
public function testCache()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$content = $client->getContainer()
|
|
|
|
->get('doctrine.orm.entity_manager')
|
|
|
|
->getRepository('WallabagCoreBundle:Entry')
|
|
|
|
->findOneByUser($this->getLoggedInUserId());
|
|
|
|
|
2016-08-24 20:29:36 +00:00
|
|
|
// no uuid
|
2016-04-15 11:42:13 +00:00
|
|
|
$client->request('GET', '/share/'.$content->getUuid());
|
2016-08-24 20:29:36 +00:00
|
|
|
$this->assertEquals(404, $client->getResponse()->getStatusCode());
|
|
|
|
|
|
|
|
// generating the uuid
|
|
|
|
$client->request('GET', '/share/'.$content->getId());
|
|
|
|
$this->assertEquals(302, $client->getResponse()->getStatusCode());
|
|
|
|
|
|
|
|
// follow link with uuid
|
|
|
|
$crawler = $client->followRedirect();
|
|
|
|
$this->assertEquals(200, $client->getResponse()->getStatusCode());
|
|
|
|
$this->assertContains('max-age=25200', $client->getResponse()->headers->get('cache-control'));
|
|
|
|
$this->assertContains('public', $client->getResponse()->headers->get('cache-control'));
|
|
|
|
$this->assertContains('s-maxage=25200', $client->getResponse()->headers->get('cache-control'));
|
2016-04-15 11:42:13 +00:00
|
|
|
$this->assertNotContains('no-cache', $client->getResponse()->headers->get('cache-control'));
|
|
|
|
|
2016-08-24 20:29:36 +00:00
|
|
|
// sharing is now disabled
|
|
|
|
$client->getContainer()->get('craue_config')->set('share_public', 0);
|
|
|
|
$client->request('GET', '/share/'.$content->getUuid());
|
|
|
|
$this->assertEquals(404, $client->getResponse()->getStatusCode());
|
|
|
|
|
2016-04-15 11:42:13 +00:00
|
|
|
$client->request('GET', '/view/'.$content->getId());
|
|
|
|
$this->assertContains('no-cache', $client->getResponse()->headers->get('cache-control'));
|
2016-08-24 20:29:36 +00:00
|
|
|
|
|
|
|
// removing the share
|
|
|
|
$client->request('GET', '/share/delete/'.$content->getId());
|
|
|
|
$this->assertEquals(302, $client->getResponse()->getStatusCode());
|
|
|
|
|
|
|
|
// share is now disable
|
|
|
|
$client->request('GET', '/share/'.$content->getUuid());
|
|
|
|
$this->assertEquals(404, $client->getResponse()->getStatusCode());
|
2016-04-15 11:42:13 +00:00
|
|
|
}
|
2015-01-22 07:30:07 +00:00
|
|
|
}
|