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;
|
2016-11-07 09:26:05 +00:00
|
|
|
use Wallabag\CoreBundle\Entity\Config;
|
2015-12-27 20:28:48 +00:00
|
|
|
use Wallabag\CoreBundle\Entity\Entry;
|
2017-05-03 08:23:49 +00:00
|
|
|
use Wallabag\CoreBundle\Entity\SiteCredential;
|
2017-12-31 12:19:26 +00:00
|
|
|
use Wallabag\CoreBundle\Entity\Tag;
|
2017-11-27 21:56:46 +00:00
|
|
|
use Wallabag\CoreBundle\Helper\ContentProxy;
|
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
|
|
|
{
|
2018-06-06 15:34:20 +00:00
|
|
|
const AN_URL_CONTAINING_AN_ARTICLE_WITH_IMAGE = 'https://www.lemonde.fr/judo/article/2017/11/11/judo-la-decima-de-teddy-riner_5213605_1556020.html';
|
2017-05-19 10:41:31 +00:00
|
|
|
public $downloadImagesEnabled = false;
|
2019-06-18 20:40:05 +00:00
|
|
|
public $url = 'https://www.lemonde.fr/pixels/article/2019/06/18/ce-qu-il-faut-savoir-sur-le-libra-la-cryptomonnaie-de-facebook_5477887_4408996.html';
|
2015-09-28 18:26:37 +00:00
|
|
|
|
2017-05-19 10:41:31 +00:00
|
|
|
/**
|
|
|
|
* @after
|
|
|
|
*
|
|
|
|
* Ensure download_images_enabled is disabled after each script
|
|
|
|
*/
|
|
|
|
public function tearDownImagesEnabled()
|
|
|
|
{
|
|
|
|
if ($this->downloadImagesEnabled) {
|
|
|
|
$client = static::createClient();
|
|
|
|
$client->getContainer()->get('craue_config')->set('download_images_enabled', 0);
|
|
|
|
|
|
|
|
$this->downloadImagesEnabled = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2015-02-08 22:05:51 +00:00
|
|
|
$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');
|
2017-07-03 05:30:54 +00:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2016-03-11 08:42:08 +00:00
|
|
|
$crawler = $client->followRedirect();
|
2016-01-09 13:34:49 +00:00
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(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');
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2016-01-09 13:34:49 +00:00
|
|
|
|
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);
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2016-01-09 13:34:49 +00:00
|
|
|
$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');
|
2017-05-15 18:47:59 +00:00
|
|
|
$this->useTheme('baggy');
|
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
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(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');
|
2017-05-15 18:47:59 +00:00
|
|
|
$this->useTheme('baggy');
|
2015-10-07 16:08:51 +00:00
|
|
|
$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]);
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(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');
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2015-02-07 17:30:46 +00:00
|
|
|
|
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);
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2016-04-12 09:36:01 +00:00
|
|
|
$this->assertCount(1, $alert = $crawler->filter('form ul li')->extract(['_text']));
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame('This value should not be blank.', $alert[0]);
|
2015-02-07 17:30:46 +00:00
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2017-11-20 16:39:14 +00:00
|
|
|
$client->getContainer()->get('craue_config')->set('store_article_headers', 1);
|
|
|
|
|
2015-02-07 17:30:46 +00:00
|
|
|
$crawler = $client->request('GET', '/new');
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2015-02-07 17:30:46 +00:00
|
|
|
|
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);
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2015-02-07 17:30:46 +00:00
|
|
|
|
2016-01-21 15:37:25 +00:00
|
|
|
$content = $client->getContainer()
|
|
|
|
->get('doctrine.orm.entity_manager')
|
|
|
|
->getRepository('WallabagCoreBundle:Entry')
|
|
|
|
->findByUrlAndUserId($this->url, $this->getLoggedInUserId());
|
|
|
|
|
2017-04-06 07:36:20 +00:00
|
|
|
$author = $content->getPublishedBy();
|
|
|
|
|
2016-01-21 15:37:25 +00:00
|
|
|
$this->assertInstanceOf('Wallabag\CoreBundle\Entity\Entry', $content);
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame($this->url, $content->getUrl());
|
2019-06-18 20:40:05 +00:00
|
|
|
$this->assertContains('la cryptomonnaie de Facebook', $content->getTitle());
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame('fr', $content->getLanguage());
|
2018-11-21 20:11:55 +00:00
|
|
|
$this->assertArrayHasKey('x-frame-options', $content->getHeaders());
|
2017-11-20 16:39:14 +00:00
|
|
|
$client->getContainer()->get('craue_config')->set('store_article_headers', 0);
|
2016-01-21 15:37:25 +00:00
|
|
|
}
|
2015-02-07 17:30:46 +00:00
|
|
|
|
2017-04-10 15:58:27 +00:00
|
|
|
public function testPostWithMultipleAuthors()
|
|
|
|
{
|
2018-09-21 06:56:20 +00:00
|
|
|
$url = 'https://www.liberation.fr/planete/2017/04/05/donald-trump-et-xi-jinping-tentative-de-flirt-en-floride_1560768';
|
2017-04-10 15:58:27 +00:00
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/new');
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2017-04-10 15:58:27 +00:00
|
|
|
|
|
|
|
$form = $crawler->filter('form[name=entry]')->form();
|
|
|
|
|
|
|
|
$data = [
|
|
|
|
'entry[url]' => $url,
|
|
|
|
];
|
|
|
|
|
|
|
|
$client->submit($form, $data);
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2017-04-10 15:58:27 +00:00
|
|
|
|
|
|
|
$content = $client->getContainer()
|
|
|
|
->get('doctrine.orm.entity_manager')
|
|
|
|
->getRepository('WallabagCoreBundle:Entry')
|
|
|
|
->findByUrlAndUserId($url, $this->getLoggedInUserId());
|
|
|
|
|
2018-09-21 06:56:20 +00:00
|
|
|
$this->assertInstanceOf('Wallabag\CoreBundle\Entity\Entry', $content);
|
2017-04-10 15:58:27 +00:00
|
|
|
$authors = $content->getPublishedBy();
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame('2017-04-05 19:26:13', $content->getPublishedAt()->format('Y-m-d H:i:s'));
|
|
|
|
$this->assertSame('fr', $content->getLanguage());
|
|
|
|
$this->assertSame('Raphaël Balenieri, correspondant à Pékin', $authors[0]);
|
|
|
|
$this->assertSame('Frédéric Autran, correspondant à New York', $authors[1]);
|
2017-04-10 15:58:27 +00:00
|
|
|
}
|
|
|
|
|
2016-01-21 15:37:25 +00:00
|
|
|
public function testPostNewOkUrlExist()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
2017-05-15 18:47:59 +00:00
|
|
|
|
|
|
|
$entry = new Entry($this->getLoggedInUser());
|
|
|
|
$entry->setUrl($this->url);
|
|
|
|
$this->getEntityManager()->persist($entry);
|
|
|
|
$this->getEntityManager()->flush();
|
|
|
|
|
2016-01-21 15:37:25 +00:00
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/new');
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2016-01-21 15:37:25 +00:00
|
|
|
|
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);
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2016-01-21 15:37:25 +00:00
|
|
|
$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();
|
|
|
|
|
2019-05-27 07:38:07 +00:00
|
|
|
$url = 'https://www.aritylabs.com/post/106091708292/des-contr%C3%B4leurs-optionnels-gr%C3%A2ce-%C3%A0-constmissing';
|
2016-10-01 15:57:38 +00:00
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/new');
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2016-10-01 15:57:38 +00:00
|
|
|
|
|
|
|
$form = $crawler->filter('form[name=entry]')->form();
|
|
|
|
|
|
|
|
$data = [
|
|
|
|
'entry[url]' => $url,
|
|
|
|
];
|
|
|
|
|
|
|
|
$client->submit($form, $data);
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/new');
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2016-10-01 15:57:38 +00:00
|
|
|
|
|
|
|
$form = $crawler->filter('form[name=entry]')->form();
|
|
|
|
|
|
|
|
$data = [
|
|
|
|
'entry[url]' => $url,
|
|
|
|
];
|
2016-01-21 15:37:25 +00:00
|
|
|
|
|
|
|
$client->submit($form, $data);
|
|
|
|
|
2017-07-10 19:32:25 +00:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
|
|
|
$this->assertContains('/view/', $client->getResponse()->getTargetUrl());
|
|
|
|
}
|
|
|
|
|
2019-06-05 08:51:06 +00:00
|
|
|
/**
|
|
|
|
* This test will require an internet connection.
|
|
|
|
*/
|
2017-07-10 19:32:25 +00:00
|
|
|
public function testPostNewOkUrlExistWithRedirection()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$url = 'https://wllbg.org/test-redirect/c51c';
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/new');
|
|
|
|
|
|
|
|
$this->assertSame(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->assertSame(200, $client->getResponse()->getStatusCode());
|
|
|
|
|
|
|
|
$form = $crawler->filter('form[name=entry]')->form();
|
|
|
|
|
|
|
|
$data = [
|
|
|
|
'entry[url]' => $url,
|
|
|
|
];
|
|
|
|
|
|
|
|
$client->submit($form, $data);
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2016-01-21 15:37:25 +00:00
|
|
|
$this->assertContains('/view/', $client->getResponse()->getTargetUrl());
|
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');
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2015-11-13 20:23:39 +00:00
|
|
|
|
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);
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(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();
|
|
|
|
|
2017-04-20 12:58:20 +00:00
|
|
|
$this->assertCount(2, $tags);
|
2017-05-15 18:47:59 +00:00
|
|
|
$this->assertContains('wallabag', $tags);
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame('en', $entry->getLanguage());
|
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');
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2016-05-30 12:34:11 +00:00
|
|
|
|
|
|
|
$form = $crawler->filter('form[name=entry]')->form();
|
|
|
|
|
|
|
|
$data = [
|
|
|
|
'entry[url]' => $url = 'https://github.com/wallabag/wallabag/tree/master',
|
|
|
|
];
|
|
|
|
|
|
|
|
$client->submit($form, $data);
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2016-05-30 12:34:11 +00:00
|
|
|
$this->assertContains('/', $client->getResponse()->getTargetUrl());
|
|
|
|
|
|
|
|
$entry = $em
|
|
|
|
->getRepository('WallabagCoreBundle:Entry')
|
|
|
|
->findOneByUrl($url);
|
|
|
|
|
|
|
|
$tags = $entry->getTags();
|
|
|
|
|
2017-04-20 12:58:20 +00:00
|
|
|
$this->assertCount(2, $tags);
|
2017-05-15 18:47:59 +00:00
|
|
|
$this->assertContains('wallabag', $tags);
|
2016-05-30 12:34:11 +00:00
|
|
|
|
|
|
|
$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
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2015-02-07 17:30:46 +00:00
|
|
|
}
|
|
|
|
|
2016-08-26 19:01:56 +00:00
|
|
|
public function testUntagged()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$client->request('GET', '/untagged/list');
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2016-08-26 19:01:56 +00:00
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2015-02-07 17:30:46 +00:00
|
|
|
}
|
|
|
|
|
2016-02-19 13:22:27 +00:00
|
|
|
public function testRangeException()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$client->request('GET', '/all/list/900');
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
|
|
|
$this->assertSame('/all/list', $client->getResponse()->getTargetUrl());
|
2016-02-19 13:22:27 +00:00
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2017-05-15 18:47:59 +00:00
|
|
|
$entry = new Entry($this->getLoggedInUser());
|
|
|
|
$entry->setUrl('http://example.com/foo');
|
|
|
|
$entry->setTitle('title foo');
|
|
|
|
$entry->setContent('foo bar baz');
|
|
|
|
$this->getEntityManager()->persist($entry);
|
|
|
|
$this->getEntityManager()->flush();
|
2015-02-07 17:30:46 +00:00
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$crawler = $client->request('GET', '/view/' . $entry->getId());
|
2015-02-07 17:30:46 +00:00
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2016-04-12 09:36:01 +00:00
|
|
|
$this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
|
2017-05-15 18:47:59 +00:00
|
|
|
$this->assertContains($entry->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
|
|
|
/**
|
|
|
|
* This test will require an internet connection.
|
|
|
|
*/
|
|
|
|
public function testReload()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
2017-05-15 18:47:59 +00:00
|
|
|
$entry = new Entry($this->getLoggedInUser());
|
|
|
|
$entry->setUrl($this->url);
|
|
|
|
$entry->setTitle('title foo');
|
|
|
|
$entry->setContent('');
|
|
|
|
$this->getEntityManager()->persist($entry);
|
|
|
|
$this->getEntityManager()->flush();
|
|
|
|
$this->getEntityManager()->clear();
|
2016-10-07 21:31:53 +00:00
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$client->request('GET', '/reload/' . $entry->getId());
|
2015-12-30 08:41:17 +00:00
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2015-12-30 08:41:17 +00:00
|
|
|
|
2017-05-15 18:47:59 +00:00
|
|
|
$entry = $this->getEntityManager()
|
2015-12-30 08:41:17 +00:00
|
|
|
->getRepository('WallabagCoreBundle:Entry')
|
2017-05-15 18:47:59 +00:00
|
|
|
->find($entry->getId());
|
2015-12-30 08:41:17 +00:00
|
|
|
|
2017-05-15 18:47:59 +00:00
|
|
|
$this->assertNotEmpty($entry->getContent());
|
2015-12-30 08:41:17 +00:00
|
|
|
}
|
|
|
|
|
2016-10-20 20:49:46 +00:00
|
|
|
public function testReloadWithFetchingFailed()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
2017-05-15 18:47:59 +00:00
|
|
|
$entry = new Entry($this->getLoggedInUser());
|
|
|
|
$entry->setUrl('http://0.0.0.0/failed.html');
|
|
|
|
$this->getEntityManager()->persist($entry);
|
|
|
|
$this->getEntityManager()->flush();
|
2016-10-20 20:49:46 +00:00
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$client->request('GET', '/reload/' . $entry->getId());
|
2016-10-20 20:49:46 +00:00
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2016-10-20 20:49:46 +00:00
|
|
|
|
|
|
|
// force EntityManager to clear previous entity
|
|
|
|
// otherwise, retrieve the same entity will retrieve change from the previous request :0
|
2017-05-15 18:47:59 +00:00
|
|
|
$this->getEntityManager()->clear();
|
|
|
|
$newContent = $this->getEntityManager()
|
2016-10-20 20:49:46 +00:00
|
|
|
->getRepository('WallabagCoreBundle:Entry')
|
2017-05-15 18:47:59 +00:00
|
|
|
->find($entry->getId());
|
2016-10-20 20:49:46 +00:00
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertNotSame($client->getContainer()->getParameter('wallabag_core.fetching_error_message'), $newContent->getContent());
|
2016-10-20 20:49:46 +00:00
|
|
|
}
|
|
|
|
|
2015-06-02 16:54:34 +00:00
|
|
|
public function testEdit()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
2017-05-15 18:47:59 +00:00
|
|
|
$entry = new Entry($this->getLoggedInUser());
|
|
|
|
$entry->setUrl($this->url);
|
|
|
|
$this->getEntityManager()->persist($entry);
|
|
|
|
$this->getEntityManager()->flush();
|
2015-06-02 16:54:34 +00:00
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$crawler = $client->request('GET', '/edit/' . $entry->getId());
|
2015-06-02 16:54:34 +00:00
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2015-06-02 16:54:34 +00:00
|
|
|
|
|
|
|
$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();
|
|
|
|
|
2017-05-15 18:47:59 +00:00
|
|
|
$entry = new Entry($this->getLoggedInUser());
|
|
|
|
$entry->setUrl($this->url);
|
|
|
|
$this->getEntityManager()->persist($entry);
|
|
|
|
$this->getEntityManager()->flush();
|
2015-06-02 16:54:34 +00:00
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$crawler = $client->request('GET', '/edit/' . $entry->getId());
|
2015-06-02 16:54:34 +00:00
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2015-06-02 16:54:34 +00:00
|
|
|
|
2018-01-12 09:37:13 +00:00
|
|
|
$form = $crawler->filter('button[id=entry_save]')->form();
|
2015-06-02 16:54:34 +00:00
|
|
|
|
2016-04-12 09:36:01 +00:00
|
|
|
$data = [
|
2015-06-02 16:54:34 +00:00
|
|
|
'entry[title]' => 'My updated title hehe :)',
|
2017-11-19 13:50:21 +00:00
|
|
|
'entry[origin_url]' => 'https://example.io',
|
2016-04-12 09:36:01 +00:00
|
|
|
];
|
2015-06-02 16:54:34 +00:00
|
|
|
|
|
|
|
$client->submit($form, $data);
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2015-06-02 16:54:34 +00:00
|
|
|
|
|
|
|
$crawler = $client->followRedirect();
|
|
|
|
|
2017-11-19 13:50:21 +00:00
|
|
|
$this->assertGreaterThan(1, $title = $crawler->filter('div[id=article] h1')->extract(['_text']));
|
|
|
|
$this->assertContains('My updated title hehe :)', $title[0]);
|
|
|
|
$this->assertGreaterThan(1, $stats = $crawler->filter('div[class=tools] ul[class=stats] li a[class=tool]')->extract(['_text']));
|
|
|
|
$this->assertContains('example.io', trim($stats[1]));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testEditRemoveOriginUrl()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$entry = new Entry($this->getLoggedInUser());
|
|
|
|
$entry->setUrl($this->url);
|
|
|
|
$this->getEntityManager()->persist($entry);
|
|
|
|
$this->getEntityManager()->flush();
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/edit/' . $entry->getId());
|
|
|
|
|
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
|
|
|
|
2018-01-12 09:37:13 +00:00
|
|
|
$form = $crawler->filter('button[id=entry_save]')->form();
|
2017-11-19 13:50:21 +00:00
|
|
|
|
|
|
|
$data = [
|
|
|
|
'entry[title]' => 'My updated title hehe :)',
|
|
|
|
'entry[origin_url]' => '',
|
|
|
|
];
|
|
|
|
|
|
|
|
$client->submit($form, $data);
|
|
|
|
|
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
|
|
|
|
|
|
|
$crawler = $client->followRedirect();
|
|
|
|
|
2019-01-17 13:28:05 +00:00
|
|
|
$title = $crawler->filter('div[id=article] h1')->extract(['_text']);
|
|
|
|
$this->assertGreaterThan(1, $title);
|
2017-11-19 13:50:21 +00:00
|
|
|
$this->assertContains('My updated title hehe :)', $title[0]);
|
2019-01-17 13:28:05 +00:00
|
|
|
|
|
|
|
$stats = $crawler->filter('div[class=tools] ul[class=stats] li a[class=tool]')->extract(['_text']);
|
|
|
|
$this->assertCount(1, $stats);
|
2017-11-19 13:50:21 +00:00
|
|
|
$this->assertNotContains('example.io', trim($stats[0]));
|
2015-06-02 16:54:34 +00:00
|
|
|
}
|
|
|
|
|
2015-02-10 21:32:42 +00:00
|
|
|
public function testToggleArchive()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
2017-05-15 18:47:59 +00:00
|
|
|
$entry = new Entry($this->getLoggedInUser());
|
|
|
|
$entry->setUrl($this->url);
|
|
|
|
$this->getEntityManager()->persist($entry);
|
|
|
|
$this->getEntityManager()->flush();
|
|
|
|
$this->getEntityManager()->clear();
|
2015-02-10 21:32:42 +00:00
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$client->request('GET', '/archive/' . $entry->getId());
|
2015-02-10 21:32:42 +00:00
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2015-02-10 21:32:42 +00:00
|
|
|
|
|
|
|
$res = $client->getContainer()
|
|
|
|
->get('doctrine.orm.entity_manager')
|
|
|
|
->getRepository('WallabagCoreBundle:Entry')
|
2017-05-15 18:47:59 +00:00
|
|
|
->find($entry->getId());
|
2015-02-10 21:32:42 +00:00
|
|
|
|
2017-07-03 05:30:54 +00:00
|
|
|
$this->assertSame(1, $res->isArchived());
|
2015-02-10 21:32:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testToggleStar()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
2017-05-15 18:47:59 +00:00
|
|
|
$entry = new Entry($this->getLoggedInUser());
|
|
|
|
$entry->setUrl($this->url);
|
|
|
|
$this->getEntityManager()->persist($entry);
|
|
|
|
$this->getEntityManager()->flush();
|
|
|
|
$this->getEntityManager()->clear();
|
2015-02-10 21:32:42 +00:00
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$client->request('GET', '/star/' . $entry->getId());
|
2015-02-10 21:32:42 +00:00
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2015-02-10 21:32:42 +00:00
|
|
|
|
|
|
|
$res = $client->getContainer()
|
|
|
|
->get('doctrine.orm.entity_manager')
|
|
|
|
->getRepository('WallabagCoreBundle:Entry')
|
2017-05-15 18:47:59 +00:00
|
|
|
->findOneById($entry->getId());
|
2015-02-10 21:32:42 +00:00
|
|
|
|
2017-07-03 05:30:54 +00:00
|
|
|
$this->assertSame(1, $res->isStarred());
|
2015-02-10 21:32:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testDelete()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
2017-05-15 18:47:59 +00:00
|
|
|
$entry = new Entry($this->getLoggedInUser());
|
|
|
|
$entry->setUrl($this->url);
|
|
|
|
$this->getEntityManager()->persist($entry);
|
|
|
|
$this->getEntityManager()->flush();
|
2015-02-10 21:32:42 +00:00
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$client->request('GET', '/delete/' . $entry->getId());
|
2015-02-10 21:32:42 +00:00
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2015-02-10 21:32:42 +00:00
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$client->request('GET', '/delete/' . $entry->getId());
|
2015-02-10 21:32:42 +00:00
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(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();
|
|
|
|
|
2016-10-07 21:31:53 +00:00
|
|
|
$em = $client->getContainer()
|
|
|
|
->get('doctrine.orm.entity_manager');
|
|
|
|
|
2015-12-27 20:28:48 +00:00
|
|
|
// add a new content to be removed later
|
2016-10-07 21:31:53 +00:00
|
|
|
$user = $em
|
2015-12-27 20:28:48 +00:00
|
|
|
->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/');
|
2018-04-11 09:42:52 +00:00
|
|
|
$content->updateArchived(true);
|
2015-12-27 20:28:48 +00:00
|
|
|
$content->setLanguage('fr');
|
|
|
|
|
2016-10-07 21:31:53 +00:00
|
|
|
$em->persist($content);
|
|
|
|
$em->flush();
|
2015-12-27 20:28:48 +00:00
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$client->request('GET', '/view/' . $content->getId());
|
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2015-12-27 20:28:48 +00:00
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$client->request('GET', '/delete/' . $content->getId());
|
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2015-12-27 20:28:48 +00:00
|
|
|
|
|
|
|
$client->followRedirect();
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2015-12-27 20:28:48 +00:00
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$client->request('GET', '/view/' . $content->getId());
|
2015-02-10 21:33:18 +00:00
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(403, $client->getResponse()->getStatusCode());
|
2015-02-10 21:33:18 +00:00
|
|
|
}
|
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');
|
2017-05-15 18:47:59 +00:00
|
|
|
$this->useTheme('baggy');
|
2015-08-07 20:20:30 +00:00
|
|
|
$client = $this->getClient();
|
2017-05-15 18:47:59 +00:00
|
|
|
$entry = new Entry($this->getLoggedInUser());
|
|
|
|
$entry->setUrl($this->url);
|
|
|
|
$entry->setReadingTime(22);
|
|
|
|
$this->getEntityManager()->persist($entry);
|
|
|
|
$this->getEntityManager()->flush();
|
2015-08-07 20:20:30 +00:00
|
|
|
|
|
|
|
$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
|
|
|
|
2017-05-09 10:12:23 +00:00
|
|
|
public function testFilterOnReadingTimeWithNegativeValue()
|
|
|
|
{
|
|
|
|
$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,
|
|
|
|
'entry_filter[readingTime][left_number]' => -22,
|
|
|
|
];
|
|
|
|
|
|
|
|
$crawler = $client->submit($form, $data);
|
|
|
|
|
|
|
|
// forcing negative value results in no entry displayed
|
|
|
|
$this->assertCount(0, $crawler->filter('div[class=entry]'));
|
|
|
|
}
|
|
|
|
|
2016-06-23 08:46:47 +00:00
|
|
|
public function testFilterOnReadingTimeOnlyUpper()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
2017-05-15 18:47:59 +00:00
|
|
|
$this->useTheme('baggy');
|
2016-06-23 08:46:47 +00:00
|
|
|
$client = $this->getClient();
|
|
|
|
|
2017-05-15 18:47:59 +00:00
|
|
|
$crawler = $client->request('GET', '/all/list');
|
|
|
|
$this->assertCount(5, $crawler->filter('div[class=entry]'));
|
|
|
|
|
|
|
|
$entry = new Entry($this->getLoggedInUser());
|
|
|
|
$entry->setUrl($this->url);
|
|
|
|
$entry->setReadingTime(23);
|
|
|
|
$this->getEntityManager()->persist($entry);
|
|
|
|
$this->getEntityManager()->flush();
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/all/list');
|
|
|
|
$this->assertCount(6, $crawler->filter('div[class=entry]'));
|
2016-06-23 08:46:47 +00:00
|
|
|
|
|
|
|
$form = $crawler->filter('button[id=submit-filter]')->form();
|
|
|
|
|
|
|
|
$data = [
|
|
|
|
'entry_filter[readingTime][right_number]' => 22,
|
|
|
|
];
|
|
|
|
|
|
|
|
$crawler = $client->submit($form, $data);
|
|
|
|
|
2017-05-15 18:47:59 +00:00
|
|
|
$this->assertCount(5, $crawler->filter('div[class=entry]'));
|
2016-06-23 08:46:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testFilterOnReadingTimeOnlyLower()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
2017-05-15 18:47:59 +00:00
|
|
|
$this->useTheme('baggy');
|
2016-06-23 08:46:47 +00:00
|
|
|
$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);
|
|
|
|
|
2017-05-15 18:47:59 +00:00
|
|
|
$this->assertCount(0, $crawler->filter('div[class=entry]'));
|
|
|
|
|
|
|
|
$entry = new Entry($this->getLoggedInUser());
|
|
|
|
$entry->setUrl($this->url);
|
|
|
|
$entry->setReadingTime(23);
|
|
|
|
$this->getEntityManager()->persist($entry);
|
|
|
|
$this->getEntityManager()->flush();
|
|
|
|
|
|
|
|
$crawler = $client->submit($form, $data);
|
|
|
|
$this->assertCount(1, $crawler->filter('div[class=entry]'));
|
2016-06-23 08:46:47 +00:00
|
|
|
}
|
|
|
|
|
2016-05-09 18:48:28 +00:00
|
|
|
public function testFilterOnUnreadStatus()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
2017-05-15 18:47:59 +00:00
|
|
|
$this->useTheme('baggy');
|
2016-05-09 18:48:28 +00:00
|
|
|
$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);
|
|
|
|
|
2017-05-15 18:47:59 +00:00
|
|
|
$this->assertCount(4, $crawler->filter('div[class=entry]'));
|
|
|
|
|
|
|
|
$entry = new Entry($this->getLoggedInUser());
|
|
|
|
$entry->setUrl($this->url);
|
2018-04-11 09:42:52 +00:00
|
|
|
$entry->updateArchived(false);
|
2017-05-15 18:47:59 +00:00
|
|
|
$this->getEntityManager()->persist($entry);
|
|
|
|
$this->getEntityManager()->flush();
|
|
|
|
|
|
|
|
$crawler = $client->submit($form, $data);
|
|
|
|
|
2017-04-10 15:58:27 +00:00
|
|
|
$this->assertCount(5, $crawler->filter('div[class=entry]'));
|
2016-05-09 18:48:28 +00:00
|
|
|
}
|
|
|
|
|
2015-08-18 14:33:32 +00:00
|
|
|
public function testFilterOnCreationDate()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
2017-05-15 18:47:59 +00:00
|
|
|
$this->useTheme('baggy');
|
2015-08-18 14:33:32 +00:00
|
|
|
$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);
|
|
|
|
|
2017-05-15 18:47:59 +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);
|
|
|
|
|
2017-05-15 18:47:59 +00:00
|
|
|
$this->assertCount(5, $crawler->filter('div[class=entry]'));
|
2015-08-23 20:06:27 +00:00
|
|
|
|
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
|
|
|
|
2017-07-01 07:52:38 +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');
|
2017-05-15 18:47:59 +00:00
|
|
|
$this->useTheme('baggy');
|
2015-08-18 15:28:12 +00:00
|
|
|
$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
|
|
|
|
2016-11-26 18:52:50 +00:00
|
|
|
$crawler = $client->request('GET', '/unread/list');
|
|
|
|
$form = $crawler->filter('button[id=submit-filter]')->form();
|
|
|
|
$data = [
|
|
|
|
'entry_filter[domainName]' => 'dOmain',
|
|
|
|
];
|
|
|
|
|
|
|
|
$crawler = $client->submit($form, $data);
|
|
|
|
$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');
|
2017-05-15 18:47:59 +00:00
|
|
|
$this->useTheme('baggy');
|
2015-08-20 15:59:58 +00:00
|
|
|
$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
|
|
|
|
2017-06-10 13:00:52 +00:00
|
|
|
public function testFilterOnIsPublic()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$this->useTheme('baggy');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/unread/list');
|
|
|
|
$form = $crawler->filter('button[id=submit-filter]')->form();
|
|
|
|
$form['entry_filter[isPublic]']->tick();
|
|
|
|
|
|
|
|
$crawler = $client->submit($form);
|
|
|
|
$this->assertCount(0, $crawler->filter('div[class=entry]'));
|
|
|
|
}
|
|
|
|
|
2015-09-13 07:57:35 +00:00
|
|
|
public function testPreviewPictureFilter()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
2017-05-15 18:47:59 +00:00
|
|
|
$this->useTheme('baggy');
|
2015-09-13 07:57:35 +00:00
|
|
|
$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);
|
2017-05-15 18:47:59 +00:00
|
|
|
$this->assertCount(1, $crawler->filter('div[class=entry]'));
|
2015-09-13 07:57:35 +00:00
|
|
|
}
|
2015-09-23 05:55:55 +00:00
|
|
|
|
|
|
|
public function testFilterOnLanguage()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
2017-05-15 18:47:59 +00:00
|
|
|
$this->useTheme('baggy');
|
2015-09-23 05:55:55 +00:00
|
|
|
$client = $this->getClient();
|
|
|
|
|
2017-05-15 18:47:59 +00:00
|
|
|
$entry = new Entry($this->getLoggedInUser());
|
|
|
|
$entry->setUrl($this->url);
|
|
|
|
$entry->setLanguage('fr');
|
|
|
|
$this->getEntityManager()->persist($entry);
|
|
|
|
$this->getEntityManager()->flush();
|
|
|
|
|
2015-09-23 05:55:55 +00:00
|
|
|
$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);
|
2017-04-10 15:58:27 +00:00
|
|
|
$this->assertCount(3, $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
|
|
|
|
2016-10-07 12:06:12 +00:00
|
|
|
public function testShareEntryPublicly()
|
2016-04-15 11:42:13 +00:00
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
2017-05-15 18:47:59 +00:00
|
|
|
// sharing is enabled
|
|
|
|
$client->getContainer()->get('craue_config')->set('share_public', 1);
|
|
|
|
|
|
|
|
$content = new Entry($this->getLoggedInUser());
|
|
|
|
$content->setUrl($this->url);
|
|
|
|
$this->getEntityManager()->persist($content);
|
|
|
|
$this->getEntityManager()->flush();
|
|
|
|
$this->getEntityManager()->clear();
|
2016-04-15 11:42:13 +00:00
|
|
|
|
2016-12-29 09:09:44 +00:00
|
|
|
// no uid
|
2017-07-01 07:52:38 +00:00
|
|
|
$client->request('GET', '/share/' . $content->getUid());
|
|
|
|
$this->assertSame(404, $client->getResponse()->getStatusCode());
|
2016-08-24 20:29:36 +00:00
|
|
|
|
2016-12-29 09:09:44 +00:00
|
|
|
// generating the uid
|
2017-07-01 07:52:38 +00:00
|
|
|
$client->request('GET', '/share/' . $content->getId());
|
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2016-08-24 20:29:36 +00:00
|
|
|
|
2018-10-04 12:07:20 +00:00
|
|
|
$shareUrl = $client->getResponse()->getTargetUrl();
|
|
|
|
|
|
|
|
// use a new client to have a fresh empty session (instead of a logged one from the previous client)
|
|
|
|
$client->restart();
|
|
|
|
|
|
|
|
$client->request('GET', $shareUrl);
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2016-08-24 20:29:36 +00:00
|
|
|
$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-10-07 12:06:12 +00:00
|
|
|
$this->assertContains('og:title', $client->getResponse()->getContent());
|
|
|
|
$this->assertContains('og:type', $client->getResponse()->getContent());
|
|
|
|
$this->assertContains('og:url', $client->getResponse()->getContent());
|
2016-10-07 13:21:31 +00:00
|
|
|
$this->assertContains('og:image', $client->getResponse()->getContent());
|
2016-04-15 11:42:13 +00:00
|
|
|
|
2016-08-24 20:29:36 +00:00
|
|
|
// sharing is now disabled
|
|
|
|
$client->getContainer()->get('craue_config')->set('share_public', 0);
|
2017-07-01 07:52:38 +00:00
|
|
|
$client->request('GET', '/share/' . $content->getUid());
|
|
|
|
$this->assertSame(404, $client->getResponse()->getStatusCode());
|
2016-08-24 20:29:36 +00:00
|
|
|
|
|
|
|
// removing the share
|
2017-07-01 07:52:38 +00:00
|
|
|
$client->request('GET', '/share/delete/' . $content->getId());
|
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2016-08-24 20:29:36 +00:00
|
|
|
|
|
|
|
// share is now disable
|
2017-07-01 07:52:38 +00:00
|
|
|
$client->request('GET', '/share/' . $content->getUid());
|
|
|
|
$this->assertSame(404, $client->getResponse()->getStatusCode());
|
2016-04-15 11:42:13 +00:00
|
|
|
}
|
2016-10-30 20:30:45 +00:00
|
|
|
|
|
|
|
public function testNewEntryWithDownloadImagesEnabled()
|
|
|
|
{
|
2017-05-19 10:41:31 +00:00
|
|
|
$this->downloadImagesEnabled = true;
|
2016-10-30 20:30:45 +00:00
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
2017-12-16 21:17:56 +00:00
|
|
|
$url = self::AN_URL_CONTAINING_AN_ARTICLE_WITH_IMAGE;
|
2016-10-30 20:30:45 +00:00
|
|
|
$client->getContainer()->get('craue_config')->set('download_images_enabled', 1);
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/new');
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2016-10-30 20:30:45 +00:00
|
|
|
|
|
|
|
$form = $crawler->filter('form[name=entry]')->form();
|
|
|
|
|
|
|
|
$data = [
|
|
|
|
'entry[url]' => $url,
|
|
|
|
];
|
|
|
|
|
|
|
|
$client->submit($form, $data);
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2016-10-30 20:30:45 +00:00
|
|
|
|
|
|
|
$em = $client->getContainer()
|
|
|
|
->get('doctrine.orm.entity_manager');
|
|
|
|
|
|
|
|
$entry = $em
|
|
|
|
->getRepository('WallabagCoreBundle:Entry')
|
|
|
|
->findByUrlAndUserId($url, $this->getLoggedInUserId());
|
|
|
|
|
|
|
|
$this->assertInstanceOf('Wallabag\CoreBundle\Entity\Entry', $entry);
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame($url, $entry->getUrl());
|
2017-11-11 22:20:46 +00:00
|
|
|
$this->assertContains('Judo', $entry->getTitle());
|
2017-05-19 10:41:31 +00:00
|
|
|
// instead of checking for the filename (which might change) check that the image is now local
|
2017-11-11 22:20:46 +00:00
|
|
|
$this->assertContains(rtrim($client->getContainer()->getParameter('domain_name'), '/') . '/assets/images/', $entry->getContent());
|
2016-10-30 20:30:45 +00:00
|
|
|
|
2016-11-01 13:49:02 +00:00
|
|
|
$client->getContainer()->get('craue_config')->set('download_images_enabled', 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @depends testNewEntryWithDownloadImagesEnabled
|
|
|
|
*/
|
|
|
|
public function testRemoveEntryWithDownloadImagesEnabled()
|
|
|
|
{
|
2017-05-19 10:41:31 +00:00
|
|
|
$this->downloadImagesEnabled = true;
|
2016-11-01 13:49:02 +00:00
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
2017-12-16 21:17:56 +00:00
|
|
|
$url = self::AN_URL_CONTAINING_AN_ARTICLE_WITH_IMAGE;
|
2016-11-01 13:49:02 +00:00
|
|
|
$client->getContainer()->get('craue_config')->set('download_images_enabled', 1);
|
|
|
|
|
2017-05-15 18:47:59 +00:00
|
|
|
$crawler = $client->request('GET', '/new');
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2017-05-15 18:47:59 +00:00
|
|
|
|
|
|
|
$form = $crawler->filter('form[name=entry]')->form();
|
|
|
|
|
|
|
|
$data = [
|
|
|
|
'entry[url]' => $url,
|
|
|
|
];
|
|
|
|
|
|
|
|
$client->submit($form, $data);
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2017-05-15 18:47:59 +00:00
|
|
|
|
2016-11-01 13:49:02 +00:00
|
|
|
$content = $client->getContainer()
|
|
|
|
->get('doctrine.orm.entity_manager')
|
|
|
|
->getRepository('WallabagCoreBundle:Entry')
|
|
|
|
->findByUrlAndUserId($url, $this->getLoggedInUserId());
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$client->request('GET', '/delete/' . $content->getId());
|
2016-11-01 13:49:02 +00:00
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2016-10-30 20:30:45 +00:00
|
|
|
|
|
|
|
$client->getContainer()->get('craue_config')->set('download_images_enabled', 0);
|
|
|
|
}
|
2016-11-07 09:26:05 +00:00
|
|
|
|
|
|
|
public function testRedirectToHomepage()
|
|
|
|
{
|
|
|
|
$this->logInAs('empty');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
// Redirect to homepage
|
2017-05-15 18:47:59 +00:00
|
|
|
$config = $this->getLoggedInUser()->getConfig();
|
2016-11-07 09:26:05 +00:00
|
|
|
$config->setActionMarkAsRead(Config::REDIRECT_TO_HOMEPAGE);
|
2017-05-15 18:47:59 +00:00
|
|
|
$this->getEntityManager()->persist($config);
|
2016-11-07 09:26:05 +00:00
|
|
|
|
2017-05-15 18:47:59 +00:00
|
|
|
$entry = new Entry($this->getLoggedInUser());
|
|
|
|
$entry->setUrl($this->url);
|
|
|
|
$this->getEntityManager()->persist($entry);
|
2016-11-07 09:26:05 +00:00
|
|
|
|
2017-05-15 18:47:59 +00:00
|
|
|
$this->getEntityManager()->flush();
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$client->request('GET', '/view/' . $entry->getId());
|
|
|
|
$client->request('GET', '/archive/' . $entry->getId());
|
2016-11-07 09:26:05 +00:00
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
|
|
|
$this->assertSame('/', $client->getResponse()->headers->get('location'));
|
2016-11-07 09:26:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testRedirectToCurrentPage()
|
|
|
|
{
|
|
|
|
$this->logInAs('empty');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
// Redirect to current page
|
2017-05-15 18:47:59 +00:00
|
|
|
$config = $this->getLoggedInUser()->getConfig();
|
2016-11-07 09:26:05 +00:00
|
|
|
$config->setActionMarkAsRead(Config::REDIRECT_TO_CURRENT_PAGE);
|
2017-05-15 18:47:59 +00:00
|
|
|
$this->getEntityManager()->persist($config);
|
2016-11-07 09:26:05 +00:00
|
|
|
|
2017-05-15 18:47:59 +00:00
|
|
|
$entry = new Entry($this->getLoggedInUser());
|
|
|
|
$entry->setUrl($this->url);
|
|
|
|
$this->getEntityManager()->persist($entry);
|
2016-11-07 09:26:05 +00:00
|
|
|
|
2017-05-15 18:47:59 +00:00
|
|
|
$this->getEntityManager()->flush();
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$client->request('GET', '/view/' . $entry->getId());
|
|
|
|
$client->request('GET', '/archive/' . $entry->getId());
|
2016-11-07 09:26:05 +00:00
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
|
|
|
$this->assertContains('/view/' . $entry->getId(), $client->getResponse()->headers->get('location'));
|
2016-11-07 09:26:05 +00:00
|
|
|
}
|
2016-11-18 14:09:21 +00:00
|
|
|
|
|
|
|
public function testFilterOnHttpStatus()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
2017-05-15 18:47:59 +00:00
|
|
|
$this->useTheme('baggy');
|
2016-11-18 14:09:21 +00:00
|
|
|
$client = $this->getClient();
|
|
|
|
|
2017-05-15 18:47:59 +00:00
|
|
|
$entry = new Entry($this->getLoggedInUser());
|
2018-06-06 15:34:20 +00:00
|
|
|
$entry->setUrl('https://www.lemonde.fr/incorrect-url/');
|
2017-05-15 18:47:59 +00:00
|
|
|
$entry->setHttpStatus(404);
|
|
|
|
$this->getEntityManager()->persist($entry);
|
2016-11-18 14:09:21 +00:00
|
|
|
|
2017-05-15 18:47:59 +00:00
|
|
|
$this->getEntityManager()->flush();
|
2016-11-18 14:09:21 +00:00
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/all/list');
|
|
|
|
$form = $crawler->filter('button[id=submit-filter]')->form();
|
|
|
|
|
|
|
|
$data = [
|
|
|
|
'entry_filter[httpStatus]' => 404,
|
|
|
|
];
|
|
|
|
|
|
|
|
$crawler = $client->submit($form, $data);
|
|
|
|
|
|
|
|
$this->assertCount(1, $crawler->filter('div[class=entry]'));
|
|
|
|
|
2017-05-15 18:47:59 +00:00
|
|
|
$entry = new Entry($this->getLoggedInUser());
|
|
|
|
$entry->setUrl($this->url);
|
|
|
|
$entry->setHttpStatus(200);
|
|
|
|
$this->getEntityManager()->persist($entry);
|
2016-11-18 14:09:21 +00:00
|
|
|
|
2017-05-15 18:47:59 +00:00
|
|
|
$entry = new Entry($this->getLoggedInUser());
|
|
|
|
$entry->setUrl('http://www.nextinpact.com/news/101235-wallabag-alternative-libre-a-pocket-creuse-petit-a-petit-son-nid.htm');
|
|
|
|
$entry->setHttpStatus(200);
|
|
|
|
$this->getEntityManager()->persist($entry);
|
2016-11-18 14:09:21 +00:00
|
|
|
|
2017-05-15 18:47:59 +00:00
|
|
|
$this->getEntityManager()->flush();
|
2016-11-18 14:09:21 +00:00
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/all/list');
|
|
|
|
$form = $crawler->filter('button[id=submit-filter]')->form();
|
|
|
|
|
|
|
|
$data = [
|
|
|
|
'entry_filter[httpStatus]' => 200,
|
|
|
|
];
|
|
|
|
|
|
|
|
$crawler = $client->submit($form, $data);
|
|
|
|
|
2017-04-10 15:58:27 +00:00
|
|
|
$this->assertCount(2, $crawler->filter('div[class=entry]'));
|
2016-11-18 22:05:02 +00:00
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/all/list');
|
|
|
|
$form = $crawler->filter('button[id=submit-filter]')->form();
|
|
|
|
|
|
|
|
$data = [
|
|
|
|
'entry_filter[httpStatus]' => 1024,
|
|
|
|
];
|
|
|
|
|
|
|
|
$crawler = $client->submit($form, $data);
|
|
|
|
|
2017-04-10 15:58:27 +00:00
|
|
|
$this->assertCount(8, $crawler->filter('div[class=entry]'));
|
2016-11-18 14:09:21 +00:00
|
|
|
}
|
2016-11-18 16:36:19 +00:00
|
|
|
|
|
|
|
public function testSearch()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
2017-05-15 18:47:59 +00:00
|
|
|
$this->useTheme('baggy');
|
2016-11-18 16:36:19 +00:00
|
|
|
$client = $this->getClient();
|
|
|
|
|
2017-05-15 18:47:59 +00:00
|
|
|
$entry = new Entry($this->getLoggedInUser());
|
|
|
|
$entry->setUrl($this->url);
|
|
|
|
$entry->setTitle('test');
|
|
|
|
$this->getEntityManager()->persist($entry);
|
|
|
|
$this->getEntityManager()->flush();
|
|
|
|
|
2016-11-18 16:36:19 +00:00
|
|
|
// Search on unread list
|
|
|
|
$crawler = $client->request('GET', '/unread/list');
|
|
|
|
|
|
|
|
$form = $crawler->filter('form[name=search]')->form();
|
|
|
|
$data = [
|
|
|
|
'search_entry[term]' => 'title',
|
|
|
|
];
|
|
|
|
|
|
|
|
$crawler = $client->submit($form, $data);
|
|
|
|
|
2017-05-15 18:47:59 +00:00
|
|
|
$this->assertCount(4, $crawler->filter('div[class=entry]'));
|
2016-11-18 16:36:19 +00:00
|
|
|
|
|
|
|
// Search on starred list
|
|
|
|
$crawler = $client->request('GET', '/starred/list');
|
|
|
|
|
2017-05-15 18:47:59 +00:00
|
|
|
$entry = new Entry($this->getLoggedInUser());
|
|
|
|
$entry->setUrl('http://localhost/foo/bar');
|
|
|
|
$entry->setTitle('testeur');
|
|
|
|
$entry->setStarred(true);
|
|
|
|
$this->getEntityManager()->persist($entry);
|
|
|
|
$this->getEntityManager()->flush();
|
|
|
|
|
2016-11-18 16:36:19 +00:00
|
|
|
$form = $crawler->filter('form[name=search]')->form();
|
|
|
|
$data = [
|
2017-05-15 18:47:59 +00:00
|
|
|
'search_entry[term]' => 'testeur',
|
2016-11-18 16:36:19 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
$crawler = $client->submit($form, $data);
|
|
|
|
|
|
|
|
$this->assertCount(1, $crawler->filter('div[class=entry]'));
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/archive/list');
|
|
|
|
|
2017-05-15 18:47:59 +00:00
|
|
|
// Added new article to test on archive list
|
|
|
|
$entry = new Entry($this->getLoggedInUser());
|
|
|
|
$entry->setUrl('http://0.0.0.0/foo/baz/qux');
|
|
|
|
$entry->setTitle('Le manège');
|
2018-04-11 09:42:52 +00:00
|
|
|
$entry->updateArchived(true);
|
2017-05-15 18:47:59 +00:00
|
|
|
$this->getEntityManager()->persist($entry);
|
|
|
|
$this->getEntityManager()->flush();
|
|
|
|
|
2016-11-18 16:36:19 +00:00
|
|
|
$form = $crawler->filter('form[name=search]')->form();
|
|
|
|
$data = [
|
|
|
|
'search_entry[term]' => 'manège',
|
|
|
|
];
|
|
|
|
|
|
|
|
$crawler = $client->submit($form, $data);
|
|
|
|
|
|
|
|
$this->assertCount(1, $crawler->filter('div[class=entry]'));
|
2017-07-01 07:52:38 +00:00
|
|
|
$client->request('GET', '/delete/' . $entry->getId());
|
2016-11-18 16:36:19 +00:00
|
|
|
|
|
|
|
// test on list of all articles
|
|
|
|
$crawler = $client->request('GET', '/all/list');
|
|
|
|
|
|
|
|
$form = $crawler->filter('form[name=search]')->form();
|
|
|
|
$data = [
|
2016-11-18 18:21:31 +00:00
|
|
|
'search_entry[term]' => 'wxcvbnqsdf', // a string not available in the database
|
2016-11-18 16:36:19 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
$crawler = $client->submit($form, $data);
|
|
|
|
|
|
|
|
$this->assertCount(0, $crawler->filter('div[class=entry]'));
|
2017-02-02 20:39:28 +00:00
|
|
|
|
|
|
|
// test url search on list of all articles
|
2017-05-15 18:47:59 +00:00
|
|
|
$entry = new Entry($this->getLoggedInUser());
|
|
|
|
$entry->setUrl('http://domain/qux');
|
|
|
|
$entry->setTitle('Le manège');
|
2018-04-11 09:42:52 +00:00
|
|
|
$entry->updateArchived(true);
|
2017-05-15 18:47:59 +00:00
|
|
|
$this->getEntityManager()->persist($entry);
|
|
|
|
$this->getEntityManager()->flush();
|
|
|
|
|
2017-02-02 20:39:28 +00:00
|
|
|
$crawler = $client->request('GET', '/all/list');
|
|
|
|
|
|
|
|
$form = $crawler->filter('form[name=search]')->form();
|
|
|
|
$data = [
|
|
|
|
'search_entry[term]' => 'domain', // the search will match an entry with 'domain' in its url
|
|
|
|
];
|
|
|
|
|
|
|
|
$crawler = $client->submit($form, $data);
|
|
|
|
|
|
|
|
$this->assertCount(1, $crawler->filter('div[class=entry]'));
|
|
|
|
|
|
|
|
// same as previous test but for case-sensitivity
|
|
|
|
$crawler = $client->request('GET', '/all/list');
|
|
|
|
|
|
|
|
$form = $crawler->filter('form[name=search]')->form();
|
|
|
|
$data = [
|
|
|
|
'search_entry[term]' => 'doMain', // the search will match an entry with 'domain' in its url
|
|
|
|
];
|
|
|
|
|
|
|
|
$crawler = $client->submit($form, $data);
|
|
|
|
|
|
|
|
$this->assertCount(1, $crawler->filter('div[class=entry]'));
|
2016-11-18 16:36:19 +00:00
|
|
|
}
|
2017-06-09 09:28:04 +00:00
|
|
|
|
|
|
|
public function dataForLanguage()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'ru' => [
|
|
|
|
'https://www.pravda.ru/world/09-06-2017/1337283-qatar-0/',
|
|
|
|
'ru',
|
|
|
|
],
|
2018-03-30 21:09:03 +00:00
|
|
|
'fr' => [
|
|
|
|
'https://fr.wikipedia.org/wiki/Wallabag',
|
|
|
|
'fr',
|
2017-06-09 09:28:04 +00:00
|
|
|
],
|
|
|
|
'de' => [
|
2018-03-29 20:58:40 +00:00
|
|
|
'https://www.bild.de/politik/ausland/theresa-may/wahlbeben-grossbritannien-analyse-52108924.bild.html',
|
2017-06-09 09:28:04 +00:00
|
|
|
'de',
|
|
|
|
],
|
|
|
|
'it' => [
|
|
|
|
'http://www.ansa.it/sito/notizie/mondo/europa/2017/06/08/voto-gb-seggi-aperti-misure-sicurezza-rafforzate_0cb71f7f-e23b-4d5f-95ca-bc12296419f0.html',
|
|
|
|
'it',
|
|
|
|
],
|
|
|
|
'zh_CN' => [
|
|
|
|
'http://www.hao123.com/shequ?__noscript__-=1',
|
|
|
|
'zh_CN',
|
|
|
|
],
|
|
|
|
'pt_BR' => [
|
2018-09-07 12:09:06 +00:00
|
|
|
'https://politica.estadao.com.br/noticias/eleicoes,campanha-catatonica,70002491983',
|
2017-06-09 09:28:04 +00:00
|
|
|
'pt_BR',
|
|
|
|
],
|
2017-06-09 09:42:04 +00:00
|
|
|
'fucked_list_of_languages' => [
|
2017-06-09 09:28:04 +00:00
|
|
|
'http://geocatalog.webservice-energy.org/geonetwork/srv/eng/main.home',
|
2017-07-03 05:30:54 +00:00
|
|
|
null,
|
2017-06-09 09:28:04 +00:00
|
|
|
],
|
2017-06-09 09:42:04 +00:00
|
|
|
'es-ES' => [
|
2018-06-06 15:34:20 +00:00
|
|
|
'https://www.20minutos.es/noticia/3360685/0/gobierno-sanchez-primero-historia-mas-mujeres-que-hombres/',
|
2019-10-22 14:56:33 +00:00
|
|
|
'es_ES',
|
2017-06-09 09:42:04 +00:00
|
|
|
],
|
2017-06-09 09:28:04 +00:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider dataForLanguage
|
|
|
|
*/
|
|
|
|
public function testLanguageValidation($url, $expectedLanguage)
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/new');
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2017-06-09 09:28:04 +00:00
|
|
|
|
|
|
|
$form = $crawler->filter('form[name=entry]')->form();
|
|
|
|
|
|
|
|
$data = [
|
|
|
|
'entry[url]' => $url,
|
|
|
|
];
|
|
|
|
|
|
|
|
$client->submit($form, $data);
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2017-06-09 09:28:04 +00:00
|
|
|
|
|
|
|
$content = $client->getContainer()
|
|
|
|
->get('doctrine.orm.entity_manager')
|
|
|
|
->getRepository('WallabagCoreBundle:Entry')
|
|
|
|
->findByUrlAndUserId($url, $this->getLoggedInUserId());
|
|
|
|
|
|
|
|
$this->assertInstanceOf('Wallabag\CoreBundle\Entity\Entry', $content);
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame($url, $content->getUrl());
|
|
|
|
$this->assertSame($expectedLanguage, $content->getLanguage());
|
2017-06-09 09:28:04 +00:00
|
|
|
}
|
2017-05-03 08:23:49 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This test will require an internet connection.
|
|
|
|
*/
|
|
|
|
public function testRestrictedArticle()
|
|
|
|
{
|
2017-10-10 08:20:57 +00:00
|
|
|
$url = 'https://www.monde-diplomatique.fr/2017/05/BONNET/57475';
|
2017-05-03 08:23:49 +00:00
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
$em = $client->getContainer()->get('doctrine.orm.entity_manager');
|
|
|
|
|
|
|
|
// enable restricted access
|
|
|
|
$client->getContainer()->get('craue_config')->set('restricted_access', 1);
|
|
|
|
|
|
|
|
// create a new site_credential
|
|
|
|
$user = $client->getContainer()->get('security.token_storage')->getToken()->getUser();
|
|
|
|
$credential = new SiteCredential($user);
|
|
|
|
$credential->setHost('monde-diplomatique.fr');
|
2017-06-14 13:02:34 +00:00
|
|
|
$credential->setUsername($client->getContainer()->get('wallabag_core.helper.crypto_proxy')->crypt('foo'));
|
2017-06-11 21:05:19 +00:00
|
|
|
$credential->setPassword($client->getContainer()->get('wallabag_core.helper.crypto_proxy')->crypt('bar'));
|
2017-05-03 08:23:49 +00:00
|
|
|
|
|
|
|
$em->persist($credential);
|
|
|
|
$em->flush();
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/new');
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2017-05-03 08:23:49 +00:00
|
|
|
|
|
|
|
$form = $crawler->filter('form[name=entry]')->form();
|
|
|
|
|
|
|
|
$data = [
|
|
|
|
'entry[url]' => $url,
|
|
|
|
];
|
|
|
|
|
|
|
|
$client->submit($form, $data);
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2017-05-03 08:23:49 +00:00
|
|
|
|
|
|
|
$crawler = $client->followRedirect();
|
|
|
|
|
2017-07-01 07:52:38 +00:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2017-05-03 08:23:49 +00:00
|
|
|
$this->assertContains('flashes.entry.notice.entry_saved', $crawler->filter('body')->extract(['_text'])[0]);
|
|
|
|
|
|
|
|
$content = $em
|
|
|
|
->getRepository('WallabagCoreBundle:Entry')
|
|
|
|
->findByUrlAndUserId($url, $this->getLoggedInUserId());
|
|
|
|
|
|
|
|
$this->assertInstanceOf('Wallabag\CoreBundle\Entity\Entry', $content);
|
|
|
|
$this->assertSame('Crimes et réformes aux Philippines', $content->getTitle());
|
|
|
|
|
|
|
|
$client->getContainer()->get('craue_config')->set('restricted_access', 0);
|
|
|
|
}
|
2017-11-27 21:56:46 +00:00
|
|
|
|
|
|
|
public function testPostEntryWhenFetchFails()
|
|
|
|
{
|
|
|
|
$url = 'http://example.com/papers/email_tracking.pdf';
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$container = $client->getContainer();
|
|
|
|
$contentProxy = $this->getMockBuilder(ContentProxy::class)
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->setMethods(['updateEntry'])
|
|
|
|
->getMock();
|
|
|
|
$contentProxy->expects($this->any())
|
|
|
|
->method('updateEntry')
|
|
|
|
->willThrowException(new \Exception('Test Fetch content fails'));
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/new');
|
|
|
|
|
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
|
|
|
|
|
|
|
$form = $crawler->filter('form[name=entry]')->form();
|
|
|
|
|
|
|
|
$data = [
|
|
|
|
'entry[url]' => $url,
|
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
|
|
* We generate a new client to be able to use Mock ContentProxy
|
|
|
|
* Also we reinject the cookie from the previous client to keep the
|
|
|
|
* session.
|
|
|
|
*/
|
|
|
|
$cookie = $client->getCookieJar()->all();
|
|
|
|
$client = $this->getNewClient();
|
|
|
|
$client->getCookieJar()->set($cookie[0]);
|
|
|
|
$client->getContainer()->set('wallabag_core.content_proxy', $contentProxy);
|
|
|
|
$client->submit($form, $data);
|
|
|
|
|
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
|
|
|
|
|
|
|
$content = $client->getContainer()
|
|
|
|
->get('doctrine.orm.entity_manager')
|
|
|
|
->getRepository('WallabagCoreBundle:Entry')
|
|
|
|
->findByUrlAndUserId($url, $this->getLoggedInUserId());
|
|
|
|
|
|
|
|
$authors = $content->getPublishedBy();
|
|
|
|
$this->assertSame('email_tracking.pdf', $content->getTitle());
|
|
|
|
$this->assertSame('example.com', $content->getDomainName());
|
|
|
|
}
|
2017-12-30 23:56:40 +00:00
|
|
|
|
|
|
|
public function testEntryDeleteTagLink()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$em = $client->getContainer()->get('doctrine.orm.entity_manager');
|
|
|
|
$entry = $em->getRepository('WallabagCoreBundle:Entry')->findByUrlAndUserId('http://0.0.0.0/entry1', $this->getLoggedInUserId());
|
|
|
|
$tag = $entry->getTags()[0];
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/view/' . $entry->getId());
|
|
|
|
|
|
|
|
// As long as the deletion link of a tag is following
|
|
|
|
// a link to the tag view, we take the second one to retrieve
|
|
|
|
// the deletion link of the first tag
|
|
|
|
$link = $crawler->filter('body div#article div.tools ul.tags li.chip a')->extract('href')[1];
|
|
|
|
|
|
|
|
$this->assertSame(sprintf('/remove-tag/%s/%s', $entry->getId(), $tag->getId()), $link);
|
|
|
|
}
|
2018-10-12 19:41:05 +00:00
|
|
|
|
|
|
|
public function testRandom()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$client->request('GET', '/unread/random');
|
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
|
|
|
$this->assertContains('/view/', $client->getResponse()->getTargetUrl(), 'Unread random');
|
|
|
|
|
|
|
|
$client->request('GET', '/starred/random');
|
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
|
|
|
$this->assertContains('/view/', $client->getResponse()->getTargetUrl(), 'Starred random');
|
|
|
|
|
|
|
|
$client->request('GET', '/archive/random');
|
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
|
|
|
$this->assertContains('/view/', $client->getResponse()->getTargetUrl(), 'Archive random');
|
|
|
|
|
|
|
|
$client->request('GET', '/untagged/random');
|
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
|
|
|
$this->assertContains('/view/', $client->getResponse()->getTargetUrl(), 'Untagged random');
|
|
|
|
|
|
|
|
$client->request('GET', '/all/random');
|
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
|
|
|
$this->assertContains('/view/', $client->getResponse()->getTargetUrl(), 'All random');
|
|
|
|
}
|
2015-01-22 07:30:07 +00:00
|
|
|
}
|