2015-01-22 08:30:07 +01:00
|
|
|
<?php
|
|
|
|
|
2016-06-01 21:27:35 +02:00
|
|
|
namespace Tests\Wallabag\CoreBundle\Controller;
|
2015-01-22 08:30:07 +01:00
|
|
|
|
2016-06-01 21:27:35 +02:00
|
|
|
use Tests\Wallabag\CoreBundle\WallabagCoreTestCase;
|
2016-11-07 10:26:05 +01:00
|
|
|
use Wallabag\CoreBundle\Entity\Config;
|
2015-12-27 21:28:48 +01:00
|
|
|
use Wallabag\CoreBundle\Entity\Entry;
|
2017-05-03 10:23:49 +02:00
|
|
|
use Wallabag\CoreBundle\Entity\SiteCredential;
|
2017-12-31 13:19:26 +01:00
|
|
|
use Wallabag\CoreBundle\Entity\Tag;
|
2017-11-27 22:56:46 +01:00
|
|
|
use Wallabag\CoreBundle\Helper\ContentProxy;
|
2015-01-22 08:30:07 +01:00
|
|
|
|
2015-03-29 10:53:10 +02:00
|
|
|
class EntryControllerTest extends WallabagCoreTestCase
|
2015-01-22 08:30:07 +01:00
|
|
|
{
|
2018-06-06 17:34:20 +02: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 12:41:31 +02:00
|
|
|
public $downloadImagesEnabled = false;
|
2019-06-18 22:40:05 +02: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 20:26:37 +02:00
|
|
|
|
2017-05-19 12:41:31 +02: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 23:05:51 +01:00
|
|
|
public function testLogin()
|
|
|
|
{
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
2015-02-10 22:32:42 +01:00
|
|
|
$client->request('GET', '/new');
|
2015-02-08 23:05:51 +01:00
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2020-06-15 13:37:50 +02:00
|
|
|
$this->assertStringContainsString('login', $client->getResponse()->headers->get('location'));
|
2015-02-08 23:05:51 +01:00
|
|
|
}
|
|
|
|
|
2020-03-10 22:22:51 +01:00
|
|
|
/**
|
|
|
|
* @group NetworkCalls
|
|
|
|
*/
|
2016-01-09 14:34:49 +01:00
|
|
|
public function testQuickstart()
|
|
|
|
{
|
|
|
|
$this->logInAs('empty');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$client->request('GET', '/unread/list');
|
2017-07-03 07:30:54 +02:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2016-03-11 09:42:08 +01:00
|
|
|
$crawler = $client->followRedirect();
|
2016-01-09 14:34:49 +01:00
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2016-04-12 11:36:01 +02:00
|
|
|
$this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
|
2020-06-15 13:37:50 +02:00
|
|
|
$this->assertStringContainsString('quickstart.intro.title', $body[0]);
|
2016-01-09 14:34:49 +01:00
|
|
|
|
|
|
|
// Test if quickstart is disabled when user has 1 entry
|
|
|
|
$crawler = $client->request('GET', '/new');
|
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2016-01-09 14:34:49 +01:00
|
|
|
|
2016-03-09 08:59:08 +01:00
|
|
|
$form = $crawler->filter('form[name=entry]')->form();
|
2016-01-09 14:34:49 +01:00
|
|
|
|
2016-04-12 11:36:01 +02:00
|
|
|
$data = [
|
2016-01-15 15:28:22 +01:00
|
|
|
'entry[url]' => $this->url,
|
2016-04-12 11:36:01 +02:00
|
|
|
];
|
2016-01-09 14:34:49 +01:00
|
|
|
|
|
|
|
$client->submit($form, $data);
|
2017-07-01 09:52:38 +02:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2016-01-09 14:34:49 +01:00
|
|
|
$client->followRedirect();
|
|
|
|
|
2016-03-11 09:42:08 +01:00
|
|
|
$crawler = $client->request('GET', '/unread/list');
|
2016-04-12 11:36:01 +02:00
|
|
|
$this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
|
2020-06-15 13:37:50 +02:00
|
|
|
$this->assertStringContainsString('entry.list.number_on_the_page', $body[0]);
|
2016-01-09 14:34:49 +01:00
|
|
|
}
|
|
|
|
|
2015-02-07 18:30:46 +01:00
|
|
|
public function testGetNew()
|
2015-01-22 08:30:07 +01:00
|
|
|
{
|
2015-02-10 22:32:42 +01:00
|
|
|
$this->logInAs('admin');
|
2017-05-15 20:47:59 +02:00
|
|
|
$this->useTheme('baggy');
|
2015-02-08 23:05:51 +01:00
|
|
|
$client = $this->getClient();
|
2015-01-22 08:30:07 +01:00
|
|
|
|
2015-01-31 09:15:51 +01:00
|
|
|
$crawler = $client->request('GET', '/new');
|
2015-01-22 08:30:07 +01:00
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2015-02-07 18:30:46 +01:00
|
|
|
|
|
|
|
$this->assertCount(1, $crawler->filter('input[type=url]'));
|
2016-03-09 08:59:08 +01:00
|
|
|
$this->assertCount(1, $crawler->filter('form[name=entry]'));
|
2015-02-07 18:30:46 +01:00
|
|
|
}
|
|
|
|
|
2020-03-10 22:22:51 +01:00
|
|
|
/**
|
|
|
|
* @group NetworkCalls
|
|
|
|
*/
|
2015-10-07 18:08:51 +02:00
|
|
|
public function testPostNewViaBookmarklet()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/');
|
|
|
|
|
2020-03-21 21:09:57 +01:00
|
|
|
$this->assertCount(4, $crawler->filter('li.entry'));
|
2015-10-07 18:08:51 +02:00
|
|
|
|
|
|
|
// Good URL
|
2016-04-12 11:36:01 +02:00
|
|
|
$client->request('GET', '/bookmarklet', ['url' => $this->url]);
|
2017-07-01 09:52:38 +02:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2016-01-09 14:34:49 +01:00
|
|
|
$client->followRedirect();
|
2015-10-07 18:08:51 +02:00
|
|
|
$crawler = $client->request('GET', '/');
|
2020-03-21 21:09:57 +01:00
|
|
|
$this->assertCount(5, $crawler->filter('li.entry'));
|
2015-10-07 18:08:51 +02:00
|
|
|
|
|
|
|
$em = $client->getContainer()
|
|
|
|
->get('doctrine.orm.entity_manager');
|
|
|
|
$entry = $em
|
|
|
|
->getRepository('WallabagCoreBundle:Entry')
|
2016-01-15 15:28:22 +01:00
|
|
|
->findByUrlAndUserId($this->url, $this->getLoggedInUserId());
|
2015-10-07 18:08:51 +02:00
|
|
|
$em->remove($entry);
|
|
|
|
$em->flush();
|
|
|
|
}
|
|
|
|
|
2015-02-07 18:30:46 +01:00
|
|
|
public function testPostNewEmpty()
|
|
|
|
{
|
2015-02-10 22:32:42 +01:00
|
|
|
$this->logInAs('admin');
|
2015-02-08 23:05:51 +01:00
|
|
|
$client = $this->getClient();
|
2015-02-07 18:30:46 +01:00
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/new');
|
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2015-02-07 18:30:46 +01:00
|
|
|
|
2016-03-09 08:59:08 +01:00
|
|
|
$form = $crawler->filter('form[name=entry]')->form();
|
2015-02-07 18:30:46 +01:00
|
|
|
|
|
|
|
$crawler = $client->submit($form);
|
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2016-04-12 11:36:01 +02:00
|
|
|
$this->assertCount(1, $alert = $crawler->filter('form ul li')->extract(['_text']));
|
2017-07-01 09:52:38 +02:00
|
|
|
$this->assertSame('This value should not be blank.', $alert[0]);
|
2015-02-07 18:30:46 +01:00
|
|
|
}
|
|
|
|
|
2015-11-01 23:42:52 +01:00
|
|
|
/**
|
2020-03-10 22:22:51 +01:00
|
|
|
* @group NetworkCalls
|
2015-11-01 23:42:52 +01:00
|
|
|
*/
|
2015-02-07 18:30:46 +01:00
|
|
|
public function testPostNewOk()
|
|
|
|
{
|
2015-02-10 22:32:42 +01:00
|
|
|
$this->logInAs('admin');
|
2015-02-08 23:05:51 +01:00
|
|
|
$client = $this->getClient();
|
2015-02-07 18:30:46 +01:00
|
|
|
|
2017-11-20 17:39:14 +01:00
|
|
|
$client->getContainer()->get('craue_config')->set('store_article_headers', 1);
|
|
|
|
|
2015-02-07 18:30:46 +01:00
|
|
|
$crawler = $client->request('GET', '/new');
|
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2015-02-07 18:30:46 +01:00
|
|
|
|
2016-03-09 08:59:08 +01:00
|
|
|
$form = $crawler->filter('form[name=entry]')->form();
|
2015-02-07 18:30:46 +01:00
|
|
|
|
2016-04-12 11:36:01 +02:00
|
|
|
$data = [
|
2015-09-28 20:26:37 +02:00
|
|
|
'entry[url]' => $this->url,
|
2016-04-12 11:36:01 +02:00
|
|
|
];
|
2015-02-07 18:30:46 +01:00
|
|
|
|
|
|
|
$client->submit($form, $data);
|
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2015-02-07 18:30:46 +01:00
|
|
|
|
2016-01-21 16:37:25 +01:00
|
|
|
$content = $client->getContainer()
|
|
|
|
->get('doctrine.orm.entity_manager')
|
|
|
|
->getRepository('WallabagCoreBundle:Entry')
|
|
|
|
->findByUrlAndUserId($this->url, $this->getLoggedInUserId());
|
|
|
|
|
2017-04-06 09:36:20 +02:00
|
|
|
$author = $content->getPublishedBy();
|
|
|
|
|
2016-01-21 16:37:25 +01:00
|
|
|
$this->assertInstanceOf('Wallabag\CoreBundle\Entity\Entry', $content);
|
2017-07-01 09:52:38 +02:00
|
|
|
$this->assertSame($this->url, $content->getUrl());
|
2020-06-15 13:37:50 +02:00
|
|
|
$this->assertStringContainsString('la cryptomonnaie de Facebook', $content->getTitle());
|
2017-07-01 09:52:38 +02:00
|
|
|
$this->assertSame('fr', $content->getLanguage());
|
2018-11-21 21:11:55 +01:00
|
|
|
$this->assertArrayHasKey('x-frame-options', $content->getHeaders());
|
2017-11-20 17:39:14 +01:00
|
|
|
$client->getContainer()->get('craue_config')->set('store_article_headers', 0);
|
2016-01-21 16:37:25 +01:00
|
|
|
}
|
2015-02-07 18:30:46 +01:00
|
|
|
|
2020-03-10 22:22:51 +01:00
|
|
|
/**
|
|
|
|
* @group NetworkCalls
|
|
|
|
*/
|
2017-04-10 17:58:27 +02:00
|
|
|
public function testPostWithMultipleAuthors()
|
|
|
|
{
|
2018-09-21 08:56:20 +02:00
|
|
|
$url = 'https://www.liberation.fr/planete/2017/04/05/donald-trump-et-xi-jinping-tentative-de-flirt-en-floride_1560768';
|
2017-04-10 17:58:27 +02:00
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/new');
|
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2017-04-10 17:58:27 +02:00
|
|
|
|
|
|
|
$form = $crawler->filter('form[name=entry]')->form();
|
|
|
|
|
|
|
|
$data = [
|
|
|
|
'entry[url]' => $url,
|
|
|
|
];
|
|
|
|
|
|
|
|
$client->submit($form, $data);
|
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2017-04-10 17:58:27 +02:00
|
|
|
|
|
|
|
$content = $client->getContainer()
|
|
|
|
->get('doctrine.orm.entity_manager')
|
|
|
|
->getRepository('WallabagCoreBundle:Entry')
|
|
|
|
->findByUrlAndUserId($url, $this->getLoggedInUserId());
|
|
|
|
|
2018-09-21 08:56:20 +02:00
|
|
|
$this->assertInstanceOf('Wallabag\CoreBundle\Entity\Entry', $content);
|
2017-04-10 17:58:27 +02:00
|
|
|
$authors = $content->getPublishedBy();
|
2017-07-01 09:52:38 +02:00
|
|
|
$this->assertSame('2017-04-05 19:26:13', $content->getPublishedAt()->format('Y-m-d H:i:s'));
|
|
|
|
$this->assertSame('fr', $content->getLanguage());
|
2019-11-13 13:05:58 +01:00
|
|
|
$this->assertSame('Raphaël Balenieri', $authors[0]);
|
|
|
|
$this->assertSame('Frédéric Autran', $authors[1]);
|
2017-04-10 17:58:27 +02:00
|
|
|
}
|
|
|
|
|
2016-01-21 16:37:25 +01:00
|
|
|
public function testPostNewOkUrlExist()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
2017-05-15 20:47:59 +02:00
|
|
|
|
|
|
|
$entry = new Entry($this->getLoggedInUser());
|
|
|
|
$entry->setUrl($this->url);
|
|
|
|
$this->getEntityManager()->persist($entry);
|
|
|
|
$this->getEntityManager()->flush();
|
|
|
|
|
2016-01-21 16:37:25 +01:00
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/new');
|
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2016-01-21 16:37:25 +01:00
|
|
|
|
2016-03-09 08:59:08 +01:00
|
|
|
$form = $crawler->filter('form[name=entry]')->form();
|
2016-01-21 16:37:25 +01:00
|
|
|
|
2016-04-12 11:36:01 +02:00
|
|
|
$data = [
|
2016-01-21 16:37:25 +01:00
|
|
|
'entry[url]' => $this->url,
|
2016-04-12 11:36:01 +02:00
|
|
|
];
|
2016-01-21 16:37:25 +01:00
|
|
|
|
|
|
|
$client->submit($form, $data);
|
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2020-06-15 13:37:50 +02:00
|
|
|
$this->assertStringContainsString('/view/', $client->getResponse()->getTargetUrl());
|
2015-02-07 18:30:46 +01:00
|
|
|
}
|
|
|
|
|
2020-03-10 22:22:51 +01:00
|
|
|
/**
|
|
|
|
* @group NetworkCalls
|
|
|
|
*/
|
2016-10-01 17:57:38 +02:00
|
|
|
public function testPostNewOkUrlExistWithAccent()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
2019-05-27 09:38:07 +02:00
|
|
|
$url = 'https://www.aritylabs.com/post/106091708292/des-contr%C3%B4leurs-optionnels-gr%C3%A2ce-%C3%A0-constmissing';
|
2016-10-01 17:57:38 +02:00
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/new');
|
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2016-10-01 17:57:38 +02:00
|
|
|
|
|
|
|
$form = $crawler->filter('form[name=entry]')->form();
|
|
|
|
|
|
|
|
$data = [
|
|
|
|
'entry[url]' => $url,
|
|
|
|
];
|
|
|
|
|
|
|
|
$client->submit($form, $data);
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/new');
|
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2016-10-01 17:57:38 +02:00
|
|
|
|
|
|
|
$form = $crawler->filter('form[name=entry]')->form();
|
|
|
|
|
|
|
|
$data = [
|
|
|
|
'entry[url]' => $url,
|
|
|
|
];
|
2016-01-21 16:37:25 +01:00
|
|
|
|
|
|
|
$client->submit($form, $data);
|
|
|
|
|
2017-07-10 21:32:25 +02:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2020-06-15 13:37:50 +02:00
|
|
|
$this->assertStringContainsString('/view/', $client->getResponse()->getTargetUrl());
|
2017-07-10 21:32:25 +02:00
|
|
|
}
|
|
|
|
|
2019-06-05 10:51:06 +02:00
|
|
|
/**
|
2020-03-10 22:22:51 +01:00
|
|
|
* @group NetworkCalls
|
2019-06-05 10:51:06 +02:00
|
|
|
*/
|
2017-07-10 21:32:25 +02: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 09:52:38 +02:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2020-06-15 13:37:50 +02:00
|
|
|
$this->assertStringContainsString('/view/', $client->getResponse()->getTargetUrl());
|
2015-02-07 18:30:46 +01:00
|
|
|
}
|
|
|
|
|
2015-11-13 21:23:39 +01:00
|
|
|
/**
|
2020-03-10 22:22:51 +01:00
|
|
|
* @group NetworkCalls
|
2015-11-13 21:23:39 +01:00
|
|
|
*/
|
2016-05-30 14:34:11 +02:00
|
|
|
public function testPostNewThatWillBeTagged()
|
2015-11-13 21:23:39 +01:00
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/new');
|
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2015-11-13 21:23:39 +01:00
|
|
|
|
2016-03-09 08:59:08 +01:00
|
|
|
$form = $crawler->filter('form[name=entry]')->form();
|
2015-11-13 21:23:39 +01:00
|
|
|
|
2016-04-12 11:36:01 +02:00
|
|
|
$data = [
|
2015-11-13 21:23:39 +01:00
|
|
|
'entry[url]' => $url = 'https://github.com/wallabag/wallabag',
|
2016-04-12 11:36:01 +02:00
|
|
|
];
|
2015-11-13 21:23:39 +01:00
|
|
|
|
|
|
|
$client->submit($form, $data);
|
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2020-06-15 13:37:50 +02:00
|
|
|
$this->assertStringContainsString('/', $client->getResponse()->getTargetUrl());
|
2015-11-13 21:23:39 +01:00
|
|
|
|
|
|
|
$em = $client->getContainer()
|
|
|
|
->get('doctrine.orm.entity_manager');
|
|
|
|
$entry = $em
|
|
|
|
->getRepository('WallabagCoreBundle:Entry')
|
|
|
|
->findOneByUrl($url);
|
2015-11-16 13:34:00 +01:00
|
|
|
$tags = $entry->getTags();
|
|
|
|
|
2017-04-20 14:58:20 +02:00
|
|
|
$this->assertCount(2, $tags);
|
2017-05-15 20:47:59 +02:00
|
|
|
$this->assertContains('wallabag', $tags);
|
2017-07-01 09:52:38 +02:00
|
|
|
$this->assertSame('en', $entry->getLanguage());
|
2015-11-13 21:23:39 +01:00
|
|
|
|
|
|
|
$em->remove($entry);
|
|
|
|
$em->flush();
|
2016-05-30 14:34:11 +02: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 09:52:38 +02:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2016-05-30 14:34:11 +02: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 09:52:38 +02:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2020-06-15 13:37:50 +02:00
|
|
|
$this->assertStringContainsString('/', $client->getResponse()->getTargetUrl());
|
2016-05-30 14:34:11 +02:00
|
|
|
|
|
|
|
$entry = $em
|
|
|
|
->getRepository('WallabagCoreBundle:Entry')
|
|
|
|
->findOneByUrl($url);
|
|
|
|
|
|
|
|
$tags = $entry->getTags();
|
|
|
|
|
2017-04-20 14:58:20 +02:00
|
|
|
$this->assertCount(2, $tags);
|
2017-05-15 20:47:59 +02:00
|
|
|
$this->assertContains('wallabag', $tags);
|
2016-05-30 14:34:11 +02:00
|
|
|
|
|
|
|
$em->remove($entry);
|
|
|
|
$em->flush();
|
2015-11-13 21:23:39 +01:00
|
|
|
}
|
|
|
|
|
2015-02-07 18:30:46 +01:00
|
|
|
public function testArchive()
|
|
|
|
{
|
2015-02-10 22:32:42 +01:00
|
|
|
$this->logInAs('admin');
|
2015-02-08 23:05:51 +01:00
|
|
|
$client = $this->getClient();
|
2015-02-07 18:30:46 +01:00
|
|
|
|
2015-07-27 23:20:32 +02:00
|
|
|
$client->request('GET', '/archive/list');
|
2015-02-07 18:30:46 +01:00
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2015-02-07 18:30:46 +01:00
|
|
|
}
|
|
|
|
|
2016-08-26 21:01:56 +02:00
|
|
|
public function testUntagged()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$client->request('GET', '/untagged/list');
|
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2016-08-26 21:01:56 +02:00
|
|
|
}
|
|
|
|
|
2015-02-07 18:30:46 +01:00
|
|
|
public function testStarred()
|
|
|
|
{
|
2015-02-10 22:32:42 +01:00
|
|
|
$this->logInAs('admin');
|
2015-02-08 23:05:51 +01:00
|
|
|
$client = $this->getClient();
|
2015-02-07 18:30:46 +01:00
|
|
|
|
2015-07-27 23:20:32 +02:00
|
|
|
$client->request('GET', '/starred/list');
|
2015-02-07 18:30:46 +01:00
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2015-02-07 18:30:46 +01:00
|
|
|
}
|
|
|
|
|
2016-02-19 14:22:27 +01:00
|
|
|
public function testRangeException()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$client->request('GET', '/all/list/900');
|
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
|
|
|
$this->assertSame('/all/list', $client->getResponse()->getTargetUrl());
|
2016-02-19 14:22:27 +01:00
|
|
|
}
|
|
|
|
|
2015-02-07 18:30:46 +01:00
|
|
|
public function testView()
|
|
|
|
{
|
2015-02-10 22:32:42 +01:00
|
|
|
$this->logInAs('admin');
|
2015-02-08 23:05:51 +01:00
|
|
|
$client = $this->getClient();
|
2015-02-07 18:30:46 +01:00
|
|
|
|
2017-05-15 20:47:59 +02: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 18:30:46 +01:00
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$crawler = $client->request('GET', '/view/' . $entry->getId());
|
2015-02-07 18:30:46 +01:00
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2016-04-12 11:36:01 +02:00
|
|
|
$this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
|
2020-06-15 13:37:50 +02:00
|
|
|
$this->assertStringContainsString($entry->getTitle(), $body[0]);
|
2015-01-22 08:30:07 +01:00
|
|
|
}
|
2015-02-10 22:32:42 +01:00
|
|
|
|
2015-12-30 09:41:17 +01:00
|
|
|
/**
|
2020-03-10 22:22:51 +01:00
|
|
|
* @group NetworkCalls
|
2015-12-30 09:41:17 +01:00
|
|
|
*/
|
|
|
|
public function testReload()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
2017-05-15 20:47:59 +02: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 23:31:53 +02:00
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$client->request('GET', '/reload/' . $entry->getId());
|
2015-12-30 09:41:17 +01:00
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2015-12-30 09:41:17 +01:00
|
|
|
|
2017-05-15 20:47:59 +02:00
|
|
|
$entry = $this->getEntityManager()
|
2015-12-30 09:41:17 +01:00
|
|
|
->getRepository('WallabagCoreBundle:Entry')
|
2017-05-15 20:47:59 +02:00
|
|
|
->find($entry->getId());
|
2015-12-30 09:41:17 +01:00
|
|
|
|
2017-05-15 20:47:59 +02:00
|
|
|
$this->assertNotEmpty($entry->getContent());
|
2015-12-30 09:41:17 +01:00
|
|
|
}
|
|
|
|
|
2016-10-20 22:49:46 +02:00
|
|
|
public function testReloadWithFetchingFailed()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
2017-05-15 20:47:59 +02: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 22:49:46 +02:00
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$client->request('GET', '/reload/' . $entry->getId());
|
2016-10-20 22:49:46 +02:00
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2016-10-20 22:49:46 +02:00
|
|
|
|
|
|
|
// force EntityManager to clear previous entity
|
|
|
|
// otherwise, retrieve the same entity will retrieve change from the previous request :0
|
2017-05-15 20:47:59 +02:00
|
|
|
$this->getEntityManager()->clear();
|
|
|
|
$newContent = $this->getEntityManager()
|
2016-10-20 22:49:46 +02:00
|
|
|
->getRepository('WallabagCoreBundle:Entry')
|
2017-05-15 20:47:59 +02:00
|
|
|
->find($entry->getId());
|
2016-10-20 22:49:46 +02:00
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$this->assertNotSame($client->getContainer()->getParameter('wallabag_core.fetching_error_message'), $newContent->getContent());
|
2016-10-20 22:49:46 +02:00
|
|
|
}
|
|
|
|
|
2015-06-02 18:54:34 +02:00
|
|
|
public function testEdit()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
2017-05-15 20:47:59 +02:00
|
|
|
$entry = new Entry($this->getLoggedInUser());
|
|
|
|
$entry->setUrl($this->url);
|
|
|
|
$this->getEntityManager()->persist($entry);
|
|
|
|
$this->getEntityManager()->flush();
|
2015-06-02 18:54:34 +02:00
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$crawler = $client->request('GET', '/edit/' . $entry->getId());
|
2015-06-02 18:54:34 +02:00
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2015-06-02 18:54:34 +02: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 20:47:59 +02:00
|
|
|
$entry = new Entry($this->getLoggedInUser());
|
|
|
|
$entry->setUrl($this->url);
|
|
|
|
$this->getEntityManager()->persist($entry);
|
|
|
|
$this->getEntityManager()->flush();
|
2015-06-02 18:54:34 +02:00
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$crawler = $client->request('GET', '/edit/' . $entry->getId());
|
2015-06-02 18:54:34 +02:00
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2015-06-02 18:54:34 +02:00
|
|
|
|
2018-01-12 10:37:13 +01:00
|
|
|
$form = $crawler->filter('button[id=entry_save]')->form();
|
2015-06-02 18:54:34 +02:00
|
|
|
|
2016-04-12 11:36:01 +02:00
|
|
|
$data = [
|
2015-06-02 18:54:34 +02:00
|
|
|
'entry[title]' => 'My updated title hehe :)',
|
2017-11-19 14:50:21 +01:00
|
|
|
'entry[origin_url]' => 'https://example.io',
|
2016-04-12 11:36:01 +02:00
|
|
|
];
|
2015-06-02 18:54:34 +02:00
|
|
|
|
|
|
|
$client->submit($form, $data);
|
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2015-06-02 18:54:34 +02:00
|
|
|
|
|
|
|
$crawler = $client->followRedirect();
|
|
|
|
|
2017-11-19 14:50:21 +01:00
|
|
|
$this->assertGreaterThan(1, $title = $crawler->filter('div[id=article] h1')->extract(['_text']));
|
2020-06-15 13:37:50 +02:00
|
|
|
$this->assertStringContainsString('My updated title hehe :)', $title[0]);
|
2020-04-22 14:58:37 +02:00
|
|
|
$this->assertGreaterThan(1, $stats = $crawler->filter('div[class="tools grey-text"] ul[class=stats] li a[class="tool grey-text"]')->extract(['_text']));
|
2020-06-15 13:37:50 +02:00
|
|
|
$this->assertStringContainsString('example.io', trim($stats[1]));
|
2017-11-19 14:50:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
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 10:37:13 +01:00
|
|
|
$form = $crawler->filter('button[id=entry_save]')->form();
|
2017-11-19 14:50:21 +01: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 14:28:05 +01:00
|
|
|
$title = $crawler->filter('div[id=article] h1')->extract(['_text']);
|
|
|
|
$this->assertGreaterThan(1, $title);
|
2020-06-15 13:37:50 +02:00
|
|
|
$this->assertStringContainsString('My updated title hehe :)', $title[0]);
|
2019-01-17 14:28:05 +01:00
|
|
|
|
2020-04-22 14:58:37 +02:00
|
|
|
$stats = $crawler->filter('div[class="tools grey-text"] ul[class=stats] li a[class="tool grey-text"]')->extract(['_text']);
|
2019-01-17 14:28:05 +01:00
|
|
|
$this->assertCount(1, $stats);
|
2020-06-15 13:37:50 +02:00
|
|
|
$this->assertStringNotContainsString('example.io', trim($stats[0]));
|
2015-06-02 18:54:34 +02:00
|
|
|
}
|
|
|
|
|
2015-02-10 22:32:42 +01:00
|
|
|
public function testToggleArchive()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
2017-05-15 20:47:59 +02:00
|
|
|
$entry = new Entry($this->getLoggedInUser());
|
|
|
|
$entry->setUrl($this->url);
|
|
|
|
$this->getEntityManager()->persist($entry);
|
|
|
|
$this->getEntityManager()->flush();
|
|
|
|
$this->getEntityManager()->clear();
|
2015-02-10 22:32:42 +01:00
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$client->request('GET', '/archive/' . $entry->getId());
|
2015-02-10 22:32:42 +01:00
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2015-02-10 22:32:42 +01:00
|
|
|
|
|
|
|
$res = $client->getContainer()
|
|
|
|
->get('doctrine.orm.entity_manager')
|
|
|
|
->getRepository('WallabagCoreBundle:Entry')
|
2017-05-15 20:47:59 +02:00
|
|
|
->find($entry->getId());
|
2015-02-10 22:32:42 +01:00
|
|
|
|
2017-07-03 07:30:54 +02:00
|
|
|
$this->assertSame(1, $res->isArchived());
|
2015-02-10 22:32:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testToggleStar()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
2017-05-15 20:47:59 +02:00
|
|
|
$entry = new Entry($this->getLoggedInUser());
|
|
|
|
$entry->setUrl($this->url);
|
|
|
|
$this->getEntityManager()->persist($entry);
|
|
|
|
$this->getEntityManager()->flush();
|
|
|
|
$this->getEntityManager()->clear();
|
2015-02-10 22:32:42 +01:00
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$client->request('GET', '/star/' . $entry->getId());
|
2015-02-10 22:32:42 +01:00
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2015-02-10 22:32:42 +01:00
|
|
|
|
|
|
|
$res = $client->getContainer()
|
|
|
|
->get('doctrine.orm.entity_manager')
|
|
|
|
->getRepository('WallabagCoreBundle:Entry')
|
2017-05-15 20:47:59 +02:00
|
|
|
->findOneById($entry->getId());
|
2015-02-10 22:32:42 +01:00
|
|
|
|
2017-07-03 07:30:54 +02:00
|
|
|
$this->assertSame(1, $res->isStarred());
|
2015-02-10 22:32:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testDelete()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
2017-05-15 20:47:59 +02:00
|
|
|
$entry = new Entry($this->getLoggedInUser());
|
|
|
|
$entry->setUrl($this->url);
|
|
|
|
$this->getEntityManager()->persist($entry);
|
|
|
|
$this->getEntityManager()->flush();
|
2015-02-10 22:32:42 +01:00
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$client->request('GET', '/delete/' . $entry->getId());
|
2015-02-10 22:32:42 +01:00
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2015-02-10 22:32:42 +01:00
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$client->request('GET', '/delete/' . $entry->getId());
|
2015-02-10 22:32:42 +01:00
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$this->assertSame(404, $client->getResponse()->getStatusCode());
|
2015-02-10 22:32:42 +01:00
|
|
|
}
|
2015-02-10 22:33:18 +01:00
|
|
|
|
2015-12-27 21:28:48 +01:00
|
|
|
/**
|
|
|
|
* It will create a new entry.
|
|
|
|
* Browse to it.
|
|
|
|
* Then remove it.
|
|
|
|
*
|
|
|
|
* And it'll check that user won't be redirected to the view page of the content when it had been removed
|
|
|
|
*/
|
|
|
|
public function testViewAndDelete()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
2016-10-07 23:31:53 +02:00
|
|
|
$em = $client->getContainer()
|
|
|
|
->get('doctrine.orm.entity_manager');
|
|
|
|
|
2015-12-27 21:28:48 +01:00
|
|
|
// add a new content to be removed later
|
2016-10-07 23:31:53 +02:00
|
|
|
$user = $em
|
2015-12-27 21:28:48 +01: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 11:42:52 +02:00
|
|
|
$content->updateArchived(true);
|
2015-12-27 21:28:48 +01:00
|
|
|
$content->setLanguage('fr');
|
|
|
|
|
2016-10-07 23:31:53 +02:00
|
|
|
$em->persist($content);
|
|
|
|
$em->flush();
|
2015-12-27 21:28:48 +01:00
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$client->request('GET', '/view/' . $content->getId());
|
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2015-12-27 21:28:48 +01:00
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$client->request('GET', '/delete/' . $content->getId());
|
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2015-12-27 21:28:48 +01:00
|
|
|
|
|
|
|
$client->followRedirect();
|
2017-07-01 09:52:38 +02:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2015-12-27 21:28:48 +01:00
|
|
|
}
|
|
|
|
|
2015-02-10 22:33:18 +01:00
|
|
|
public function testViewOtherUserEntry()
|
|
|
|
{
|
2015-09-28 19:35:55 +02:00
|
|
|
$this->logInAs('admin');
|
2015-02-10 22:33:18 +01:00
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$content = $client->getContainer()
|
|
|
|
->get('doctrine.orm.entity_manager')
|
|
|
|
->getRepository('WallabagCoreBundle:Entry')
|
2015-09-28 19:35:55 +02:00
|
|
|
->findOneByUsernameAndNotArchived('bob');
|
2015-02-10 22:33:18 +01:00
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$client->request('GET', '/view/' . $content->getId());
|
2015-02-10 22:33:18 +01:00
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$this->assertSame(403, $client->getResponse()->getStatusCode());
|
2015-02-10 22:33:18 +01:00
|
|
|
}
|
2015-08-07 22:20:30 +02:00
|
|
|
|
2015-08-18 16:33:32 +02:00
|
|
|
public function testFilterOnReadingTime()
|
2015-08-07 22:20:30 +02:00
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
2017-05-15 20:47:59 +02:00
|
|
|
$entry = new Entry($this->getLoggedInUser());
|
|
|
|
$entry->setUrl($this->url);
|
|
|
|
$entry->setReadingTime(22);
|
|
|
|
$this->getEntityManager()->persist($entry);
|
|
|
|
$this->getEntityManager()->flush();
|
2015-08-07 22:20:30 +02:00
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/unread/list');
|
|
|
|
|
|
|
|
$form = $crawler->filter('button[id=submit-filter]')->form();
|
|
|
|
|
2016-04-12 11:36:01 +02:00
|
|
|
$data = [
|
2016-04-24 20:46:25 +02:00
|
|
|
'entry_filter[readingTime][right_number]' => 22,
|
|
|
|
'entry_filter[readingTime][left_number]' => 22,
|
2016-04-12 11:36:01 +02:00
|
|
|
];
|
2015-08-07 22:20:30 +02:00
|
|
|
|
|
|
|
$crawler = $client->submit($form, $data);
|
|
|
|
|
2020-03-21 21:09:57 +01:00
|
|
|
$this->assertCount(1, $crawler->filter('li.entry'));
|
2015-08-07 22:20:30 +02:00
|
|
|
}
|
2015-08-17 15:15:51 +02:00
|
|
|
|
2017-05-09 12:12:23 +02: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
|
2020-03-21 21:09:57 +01:00
|
|
|
$this->assertCount(0, $crawler->filter('li.entry'));
|
2017-05-09 12:12:23 +02:00
|
|
|
}
|
|
|
|
|
2016-06-23 10:46:47 +02:00
|
|
|
public function testFilterOnReadingTimeOnlyUpper()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
2017-05-15 20:47:59 +02:00
|
|
|
$crawler = $client->request('GET', '/all/list');
|
2020-03-21 21:09:57 +01:00
|
|
|
$this->assertCount(5, $crawler->filter('li.entry'));
|
2017-05-15 20:47:59 +02:00
|
|
|
|
|
|
|
$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');
|
2020-03-21 21:09:57 +01:00
|
|
|
$this->assertCount(6, $crawler->filter('li.entry'));
|
2016-06-23 10:46:47 +02:00
|
|
|
|
|
|
|
$form = $crawler->filter('button[id=submit-filter]')->form();
|
|
|
|
|
|
|
|
$data = [
|
|
|
|
'entry_filter[readingTime][right_number]' => 22,
|
|
|
|
];
|
|
|
|
|
|
|
|
$crawler = $client->submit($form, $data);
|
|
|
|
|
2020-03-21 21:09:57 +01:00
|
|
|
$this->assertCount(5, $crawler->filter('li.entry'));
|
2016-06-23 10:46:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
2020-03-21 21:09:57 +01:00
|
|
|
$this->assertCount(0, $crawler->filter('li.entry'));
|
2017-05-15 20:47:59 +02:00
|
|
|
|
|
|
|
$entry = new Entry($this->getLoggedInUser());
|
|
|
|
$entry->setUrl($this->url);
|
|
|
|
$entry->setReadingTime(23);
|
|
|
|
$this->getEntityManager()->persist($entry);
|
|
|
|
$this->getEntityManager()->flush();
|
|
|
|
|
|
|
|
$crawler = $client->submit($form, $data);
|
2020-03-21 21:09:57 +01:00
|
|
|
$this->assertCount(1, $crawler->filter('li.entry'));
|
2016-06-23 10:46:47 +02:00
|
|
|
}
|
|
|
|
|
2016-05-09 20:48:28 +02: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);
|
|
|
|
|
2020-03-21 21:09:57 +01:00
|
|
|
$this->assertCount(4, $crawler->filter('li.entry'));
|
2017-05-15 20:47:59 +02:00
|
|
|
|
|
|
|
$entry = new Entry($this->getLoggedInUser());
|
|
|
|
$entry->setUrl($this->url);
|
2018-04-11 11:42:52 +02:00
|
|
|
$entry->updateArchived(false);
|
2017-05-15 20:47:59 +02:00
|
|
|
$this->getEntityManager()->persist($entry);
|
|
|
|
$this->getEntityManager()->flush();
|
|
|
|
|
|
|
|
$crawler = $client->submit($form, $data);
|
|
|
|
|
2020-03-21 21:09:57 +01:00
|
|
|
$this->assertCount(5, $crawler->filter('li.entry'));
|
2016-05-09 20:48:28 +02:00
|
|
|
}
|
|
|
|
|
2015-08-18 16:33:32 +02:00
|
|
|
public function testFilterOnCreationDate()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
2020-03-21 21:11:01 +01:00
|
|
|
$em = $this->getEntityManager();
|
|
|
|
|
|
|
|
$today = new \DateTimeImmutable();
|
|
|
|
$tomorrow = $today->add(new \DateInterval('P1D'));
|
|
|
|
$yesterday = $today->sub(new \DateInterval('P1D'));
|
|
|
|
|
|
|
|
$entry = new Entry($this->getLoggedInUser());
|
|
|
|
$entry->setUrl('http://0.0.0.0/testFilterOnCreationDate');
|
|
|
|
$entry->setCreatedAt($yesterday);
|
|
|
|
$em->persist($entry);
|
|
|
|
$em->flush();
|
|
|
|
|
2015-08-18 16:33:32 +02:00
|
|
|
$crawler = $client->request('GET', '/unread/list');
|
|
|
|
|
|
|
|
$form = $crawler->filter('button[id=submit-filter]')->form();
|
|
|
|
|
2016-04-12 11:36:01 +02:00
|
|
|
$data = [
|
2020-03-21 21:11:01 +01:00
|
|
|
'entry_filter[createdAt][left_date]' => $today->format('Y-m-d'),
|
|
|
|
'entry_filter[createdAt][right_date]' => $tomorrow->format('Y-m-d'),
|
2016-04-12 11:36:01 +02:00
|
|
|
];
|
2015-08-18 16:33:32 +02:00
|
|
|
|
|
|
|
$crawler = $client->submit($form, $data);
|
|
|
|
|
2020-03-21 21:09:57 +01:00
|
|
|
$this->assertCount(5, $crawler->filter('li.entry'));
|
2015-08-18 16:33:32 +02:00
|
|
|
|
2016-04-12 11:36:01 +02:00
|
|
|
$data = [
|
2020-03-21 21:11:01 +01:00
|
|
|
'entry_filter[createdAt][left_date]' => $today->format('Y-m-d'),
|
|
|
|
'entry_filter[createdAt][right_date]' => $today->format('Y-m-d'),
|
2016-04-12 11:36:01 +02:00
|
|
|
];
|
2015-08-23 22:06:27 +02:00
|
|
|
|
|
|
|
$crawler = $client->submit($form, $data);
|
|
|
|
|
2020-03-21 21:09:57 +01:00
|
|
|
$this->assertCount(5, $crawler->filter('li.entry'));
|
2015-08-23 22:06:27 +02:00
|
|
|
|
2016-04-12 11:36:01 +02:00
|
|
|
$data = [
|
2020-03-21 21:11:01 +01:00
|
|
|
'entry_filter[createdAt][left_date]' => '1970-01-01',
|
|
|
|
'entry_filter[createdAt][right_date]' => '1970-01-01',
|
2016-04-12 11:36:01 +02:00
|
|
|
];
|
2015-08-18 16:33:32 +02:00
|
|
|
|
|
|
|
$crawler = $client->submit($form, $data);
|
|
|
|
|
2020-03-21 21:09:57 +01:00
|
|
|
$this->assertCount(0, $crawler->filter('li.entry'));
|
2015-08-18 16:33:32 +02:00
|
|
|
}
|
|
|
|
|
2015-08-17 15:15:51 +02:00
|
|
|
public function testPaginationWithFilter()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
$crawler = $client->request('GET', '/config');
|
|
|
|
|
|
|
|
$form = $crawler->filter('button[id=config_save]')->form();
|
|
|
|
|
2016-04-12 11:36:01 +02:00
|
|
|
$data = [
|
2015-08-17 15:15:51 +02:00
|
|
|
'config[items_per_page]' => '1',
|
2016-04-12 11:36:01 +02:00
|
|
|
];
|
2015-08-17 15:15:51 +02:00
|
|
|
|
|
|
|
$client->submit($form, $data);
|
|
|
|
|
2016-04-12 16:32:01 +02:00
|
|
|
$parameters = '?entry_filter%5BreadingTime%5D%5Bleft_number%5D=&entry_filter%5BreadingTime%5D%5Bright_number%5D=';
|
2015-08-17 15:15:51 +02:00
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$client->request('GET', 'unread/list' . $parameters);
|
2015-08-17 15:15:51 +02:00
|
|
|
|
2020-06-15 13:37:50 +02:00
|
|
|
$this->assertStringContainsString($parameters, $client->getResponse()->getContent());
|
2015-08-20 17:59:58 +02:00
|
|
|
|
|
|
|
// reset pagination
|
|
|
|
$crawler = $client->request('GET', '/config');
|
|
|
|
$form = $crawler->filter('button[id=config_save]')->form();
|
2016-04-12 11:36:01 +02:00
|
|
|
$data = [
|
2015-08-20 17:59:58 +02:00
|
|
|
'config[items_per_page]' => '12',
|
2016-04-12 11:36:01 +02:00
|
|
|
];
|
2015-08-20 17:59:58 +02:00
|
|
|
$client->submit($form, $data);
|
2015-08-17 15:15:51 +02:00
|
|
|
}
|
2015-08-18 17:28:12 +02:00
|
|
|
|
|
|
|
public function testFilterOnDomainName()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/unread/list');
|
|
|
|
$form = $crawler->filter('button[id=submit-filter]')->form();
|
2016-04-12 11:36:01 +02:00
|
|
|
$data = [
|
2015-09-28 20:26:37 +02:00
|
|
|
'entry_filter[domainName]' => 'domain',
|
2016-04-12 11:36:01 +02:00
|
|
|
];
|
2015-08-18 17:28:12 +02:00
|
|
|
|
|
|
|
$crawler = $client->submit($form, $data);
|
2020-03-21 21:09:57 +01:00
|
|
|
$this->assertCount(5, $crawler->filter('li.entry'));
|
2015-08-18 17:28:12 +02:00
|
|
|
|
2016-11-26 19:52:50 +01: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);
|
2020-03-21 21:09:57 +01:00
|
|
|
$this->assertCount(5, $crawler->filter('li.entry'));
|
2016-11-26 19:52:50 +01:00
|
|
|
|
2015-08-18 17:28:12 +02:00
|
|
|
$form = $crawler->filter('button[id=submit-filter]')->form();
|
2016-04-12 11:36:01 +02:00
|
|
|
$data = [
|
2015-08-20 07:53:55 +02:00
|
|
|
'entry_filter[domainName]' => 'wallabag',
|
2016-04-12 11:36:01 +02:00
|
|
|
];
|
2015-08-18 17:28:12 +02:00
|
|
|
|
|
|
|
$crawler = $client->submit($form, $data);
|
2020-03-21 21:09:57 +01:00
|
|
|
$this->assertCount(0, $crawler->filter('li.entry'));
|
2015-08-18 17:28:12 +02:00
|
|
|
}
|
2015-08-20 17:59:58 +02:00
|
|
|
|
|
|
|
public function testFilterOnStatus()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/unread/list');
|
|
|
|
$form = $crawler->filter('button[id=submit-filter]')->form();
|
|
|
|
$form['entry_filter[isArchived]']->tick();
|
|
|
|
$form['entry_filter[isStarred]']->untick();
|
|
|
|
|
|
|
|
$crawler = $client->submit($form);
|
2020-03-21 21:09:57 +01:00
|
|
|
$this->assertCount(1, $crawler->filter('li.entry'));
|
2015-08-20 17:59:58 +02:00
|
|
|
|
|
|
|
$form = $crawler->filter('button[id=submit-filter]')->form();
|
|
|
|
$form['entry_filter[isArchived]']->untick();
|
|
|
|
$form['entry_filter[isStarred]']->tick();
|
|
|
|
|
|
|
|
$crawler = $client->submit($form);
|
2020-03-21 21:09:57 +01:00
|
|
|
$this->assertCount(1, $crawler->filter('li.entry'));
|
2015-08-20 17:59:58 +02:00
|
|
|
}
|
2015-09-13 09:57:35 +02:00
|
|
|
|
2017-06-10 15:00:52 +02:00
|
|
|
public function testFilterOnIsPublic()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$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);
|
2020-03-21 21:09:57 +01:00
|
|
|
$this->assertCount(0, $crawler->filter('li.entry'));
|
2017-06-10 15:00:52 +02:00
|
|
|
}
|
|
|
|
|
2015-09-13 09:57:35 +02:00
|
|
|
public function testPreviewPictureFilter()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/unread/list');
|
|
|
|
$form = $crawler->filter('button[id=submit-filter]')->form();
|
|
|
|
$form['entry_filter[previewPicture]']->tick();
|
|
|
|
|
|
|
|
$crawler = $client->submit($form);
|
2020-03-21 21:09:57 +01:00
|
|
|
$this->assertCount(1, $crawler->filter('li.entry'));
|
2015-09-13 09:57:35 +02:00
|
|
|
}
|
2015-09-23 07:55:55 +02:00
|
|
|
|
|
|
|
public function testFilterOnLanguage()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
2017-05-15 20:47:59 +02:00
|
|
|
$entry = new Entry($this->getLoggedInUser());
|
|
|
|
$entry->setUrl($this->url);
|
|
|
|
$entry->setLanguage('fr');
|
|
|
|
$this->getEntityManager()->persist($entry);
|
|
|
|
$this->getEntityManager()->flush();
|
|
|
|
|
2015-09-23 07:55:55 +02:00
|
|
|
$crawler = $client->request('GET', '/unread/list');
|
|
|
|
$form = $crawler->filter('button[id=submit-filter]')->form();
|
2016-04-12 11:36:01 +02:00
|
|
|
$data = [
|
2015-09-28 19:35:55 +02:00
|
|
|
'entry_filter[language]' => 'fr',
|
2016-04-12 11:36:01 +02:00
|
|
|
];
|
2015-09-23 07:55:55 +02:00
|
|
|
|
|
|
|
$crawler = $client->submit($form, $data);
|
2020-03-21 21:09:57 +01:00
|
|
|
$this->assertCount(3, $crawler->filter('li.entry'));
|
2015-09-23 07:55:55 +02:00
|
|
|
|
|
|
|
$form = $crawler->filter('button[id=submit-filter]')->form();
|
2016-04-12 11:36:01 +02:00
|
|
|
$data = [
|
2015-09-23 07:55:55 +02:00
|
|
|
'entry_filter[language]' => 'en',
|
2016-04-12 11:36:01 +02:00
|
|
|
];
|
2015-09-23 07:55:55 +02:00
|
|
|
|
|
|
|
$crawler = $client->submit($form, $data);
|
2020-03-21 21:09:57 +01:00
|
|
|
$this->assertCount(2, $crawler->filter('li.entry'));
|
2015-09-23 07:55:55 +02:00
|
|
|
}
|
2016-04-15 13:42:13 +02:00
|
|
|
|
2016-10-07 14:06:12 +02:00
|
|
|
public function testShareEntryPublicly()
|
2016-04-15 13:42:13 +02:00
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
2017-05-15 20:47:59 +02: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 13:42:13 +02:00
|
|
|
|
2016-12-29 10:09:44 +01:00
|
|
|
// no uid
|
2017-07-01 09:52:38 +02:00
|
|
|
$client->request('GET', '/share/' . $content->getUid());
|
|
|
|
$this->assertSame(404, $client->getResponse()->getStatusCode());
|
2016-08-24 22:29:36 +02:00
|
|
|
|
2016-12-29 10:09:44 +01:00
|
|
|
// generating the uid
|
2017-07-01 09:52:38 +02:00
|
|
|
$client->request('GET', '/share/' . $content->getId());
|
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2016-08-24 22:29:36 +02:00
|
|
|
|
2018-10-04 14:07:20 +02: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 09:52:38 +02:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2020-06-15 13:37:50 +02:00
|
|
|
$this->assertStringContainsString('max-age=25200', $client->getResponse()->headers->get('cache-control'));
|
|
|
|
$this->assertStringContainsString('public', $client->getResponse()->headers->get('cache-control'));
|
|
|
|
$this->assertStringContainsString('s-maxage=25200', $client->getResponse()->headers->get('cache-control'));
|
|
|
|
$this->assertStringNotContainsString('no-cache', $client->getResponse()->headers->get('cache-control'));
|
|
|
|
$this->assertStringContainsString('og:title', $client->getResponse()->getContent());
|
|
|
|
$this->assertStringContainsString('og:type', $client->getResponse()->getContent());
|
|
|
|
$this->assertStringContainsString('og:url', $client->getResponse()->getContent());
|
|
|
|
$this->assertStringContainsString('og:image', $client->getResponse()->getContent());
|
2016-04-15 13:42:13 +02:00
|
|
|
|
2016-08-24 22:29:36 +02:00
|
|
|
// sharing is now disabled
|
|
|
|
$client->getContainer()->get('craue_config')->set('share_public', 0);
|
2017-07-01 09:52:38 +02:00
|
|
|
$client->request('GET', '/share/' . $content->getUid());
|
|
|
|
$this->assertSame(404, $client->getResponse()->getStatusCode());
|
2016-08-24 22:29:36 +02:00
|
|
|
|
|
|
|
// removing the share
|
2017-07-01 09:52:38 +02:00
|
|
|
$client->request('GET', '/share/delete/' . $content->getId());
|
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2016-08-24 22:29:36 +02:00
|
|
|
|
|
|
|
// share is now disable
|
2017-07-01 09:52:38 +02:00
|
|
|
$client->request('GET', '/share/' . $content->getUid());
|
|
|
|
$this->assertSame(404, $client->getResponse()->getStatusCode());
|
2016-04-15 13:42:13 +02:00
|
|
|
}
|
2016-10-30 21:30:45 +01:00
|
|
|
|
2020-03-10 22:22:51 +01:00
|
|
|
/**
|
|
|
|
* @group NetworkCalls
|
|
|
|
*/
|
2016-10-30 21:30:45 +01:00
|
|
|
public function testNewEntryWithDownloadImagesEnabled()
|
|
|
|
{
|
2017-05-19 12:41:31 +02:00
|
|
|
$this->downloadImagesEnabled = true;
|
2016-10-30 21:30:45 +01:00
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
2017-12-16 22:17:56 +01:00
|
|
|
$url = self::AN_URL_CONTAINING_AN_ARTICLE_WITH_IMAGE;
|
2016-10-30 21:30:45 +01:00
|
|
|
$client->getContainer()->get('craue_config')->set('download_images_enabled', 1);
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/new');
|
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2016-10-30 21:30:45 +01:00
|
|
|
|
|
|
|
$form = $crawler->filter('form[name=entry]')->form();
|
|
|
|
|
|
|
|
$data = [
|
|
|
|
'entry[url]' => $url,
|
|
|
|
];
|
|
|
|
|
|
|
|
$client->submit($form, $data);
|
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2016-10-30 21:30:45 +01: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 09:52:38 +02:00
|
|
|
$this->assertSame($url, $entry->getUrl());
|
2020-06-15 13:37:50 +02:00
|
|
|
$this->assertStringContainsString('Judo', $entry->getTitle());
|
2017-05-19 12:41:31 +02:00
|
|
|
// instead of checking for the filename (which might change) check that the image is now local
|
2020-06-15 13:37:50 +02:00
|
|
|
$this->assertStringContainsString(rtrim($client->getContainer()->getParameter('domain_name'), '/') . '/assets/images/', $entry->getContent());
|
2016-10-30 21:30:45 +01:00
|
|
|
|
2016-11-01 14:49:02 +01:00
|
|
|
$client->getContainer()->get('craue_config')->set('download_images_enabled', 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @depends testNewEntryWithDownloadImagesEnabled
|
|
|
|
*/
|
|
|
|
public function testRemoveEntryWithDownloadImagesEnabled()
|
|
|
|
{
|
2017-05-19 12:41:31 +02:00
|
|
|
$this->downloadImagesEnabled = true;
|
2016-11-01 14:49:02 +01:00
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
2017-12-16 22:17:56 +01:00
|
|
|
$url = self::AN_URL_CONTAINING_AN_ARTICLE_WITH_IMAGE;
|
2016-11-01 14:49:02 +01:00
|
|
|
$client->getContainer()->get('craue_config')->set('download_images_enabled', 1);
|
|
|
|
|
2017-05-15 20:47:59 +02:00
|
|
|
$crawler = $client->request('GET', '/new');
|
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2017-05-15 20:47:59 +02:00
|
|
|
|
|
|
|
$form = $crawler->filter('form[name=entry]')->form();
|
|
|
|
|
|
|
|
$data = [
|
|
|
|
'entry[url]' => $url,
|
|
|
|
];
|
|
|
|
|
|
|
|
$client->submit($form, $data);
|
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2017-05-15 20:47:59 +02:00
|
|
|
|
2016-11-01 14:49:02 +01:00
|
|
|
$content = $client->getContainer()
|
|
|
|
->get('doctrine.orm.entity_manager')
|
|
|
|
->getRepository('WallabagCoreBundle:Entry')
|
|
|
|
->findByUrlAndUserId($url, $this->getLoggedInUserId());
|
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$client->request('GET', '/delete/' . $content->getId());
|
2016-11-01 14:49:02 +01:00
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2016-10-30 21:30:45 +01:00
|
|
|
|
|
|
|
$client->getContainer()->get('craue_config')->set('download_images_enabled', 0);
|
|
|
|
}
|
2016-11-07 10:26:05 +01:00
|
|
|
|
|
|
|
public function testRedirectToHomepage()
|
|
|
|
{
|
|
|
|
$this->logInAs('empty');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
// Redirect to homepage
|
2017-05-15 20:47:59 +02:00
|
|
|
$config = $this->getLoggedInUser()->getConfig();
|
2016-11-07 10:26:05 +01:00
|
|
|
$config->setActionMarkAsRead(Config::REDIRECT_TO_HOMEPAGE);
|
2017-05-15 20:47:59 +02:00
|
|
|
$this->getEntityManager()->persist($config);
|
2016-11-07 10:26:05 +01:00
|
|
|
|
2017-05-15 20:47:59 +02:00
|
|
|
$entry = new Entry($this->getLoggedInUser());
|
|
|
|
$entry->setUrl($this->url);
|
|
|
|
$this->getEntityManager()->persist($entry);
|
2016-11-07 10:26:05 +01:00
|
|
|
|
2017-05-15 20:47:59 +02:00
|
|
|
$this->getEntityManager()->flush();
|
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$client->request('GET', '/view/' . $entry->getId());
|
|
|
|
$client->request('GET', '/archive/' . $entry->getId());
|
2016-11-07 10:26:05 +01:00
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
|
|
|
$this->assertSame('/', $client->getResponse()->headers->get('location'));
|
2016-11-07 10:26:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testRedirectToCurrentPage()
|
|
|
|
{
|
|
|
|
$this->logInAs('empty');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
// Redirect to current page
|
2017-05-15 20:47:59 +02:00
|
|
|
$config = $this->getLoggedInUser()->getConfig();
|
2016-11-07 10:26:05 +01:00
|
|
|
$config->setActionMarkAsRead(Config::REDIRECT_TO_CURRENT_PAGE);
|
2017-05-15 20:47:59 +02:00
|
|
|
$this->getEntityManager()->persist($config);
|
2016-11-07 10:26:05 +01:00
|
|
|
|
2017-05-15 20:47:59 +02:00
|
|
|
$entry = new Entry($this->getLoggedInUser());
|
|
|
|
$entry->setUrl($this->url);
|
|
|
|
$this->getEntityManager()->persist($entry);
|
2016-11-07 10:26:05 +01:00
|
|
|
|
2017-05-15 20:47:59 +02:00
|
|
|
$this->getEntityManager()->flush();
|
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$client->request('GET', '/view/' . $entry->getId());
|
|
|
|
$client->request('GET', '/archive/' . $entry->getId());
|
2016-11-07 10:26:05 +01:00
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2020-06-15 13:37:50 +02:00
|
|
|
$this->assertStringContainsString('/view/' . $entry->getId(), $client->getResponse()->headers->get('location'));
|
2016-11-07 10:26:05 +01:00
|
|
|
}
|
2016-11-18 15:09:21 +01:00
|
|
|
|
|
|
|
public function testFilterOnHttpStatus()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
2017-05-15 20:47:59 +02:00
|
|
|
$entry = new Entry($this->getLoggedInUser());
|
2018-06-06 17:34:20 +02:00
|
|
|
$entry->setUrl('https://www.lemonde.fr/incorrect-url/');
|
2017-05-15 20:47:59 +02:00
|
|
|
$entry->setHttpStatus(404);
|
|
|
|
$this->getEntityManager()->persist($entry);
|
2016-11-18 15:09:21 +01:00
|
|
|
|
2017-05-15 20:47:59 +02:00
|
|
|
$this->getEntityManager()->flush();
|
2016-11-18 15:09:21 +01: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);
|
|
|
|
|
2020-03-21 21:09:57 +01:00
|
|
|
$this->assertCount(1, $crawler->filter('li.entry'));
|
2016-11-18 15:09:21 +01:00
|
|
|
|
2017-05-15 20:47:59 +02:00
|
|
|
$entry = new Entry($this->getLoggedInUser());
|
|
|
|
$entry->setUrl($this->url);
|
|
|
|
$entry->setHttpStatus(200);
|
|
|
|
$this->getEntityManager()->persist($entry);
|
2016-11-18 15:09:21 +01:00
|
|
|
|
2017-05-15 20:47:59 +02: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 15:09:21 +01:00
|
|
|
|
2017-05-15 20:47:59 +02:00
|
|
|
$this->getEntityManager()->flush();
|
2016-11-18 15:09:21 +01: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);
|
|
|
|
|
2020-03-21 21:09:57 +01:00
|
|
|
$this->assertCount(2, $crawler->filter('li.entry'));
|
2016-11-18 23:05:02 +01: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);
|
|
|
|
|
2020-03-21 21:09:57 +01:00
|
|
|
$this->assertCount(8, $crawler->filter('li.entry'));
|
2016-11-18 15:09:21 +01:00
|
|
|
}
|
2016-11-18 17:36:19 +01:00
|
|
|
|
|
|
|
public function testSearch()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
2017-05-15 20:47:59 +02:00
|
|
|
$entry = new Entry($this->getLoggedInUser());
|
|
|
|
$entry->setUrl($this->url);
|
|
|
|
$entry->setTitle('test');
|
|
|
|
$this->getEntityManager()->persist($entry);
|
|
|
|
$this->getEntityManager()->flush();
|
|
|
|
|
2016-11-18 17:36:19 +01: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);
|
|
|
|
|
2020-03-21 21:09:57 +01:00
|
|
|
$this->assertCount(4, $crawler->filter('li.entry'));
|
2016-11-18 17:36:19 +01:00
|
|
|
|
|
|
|
// Search on starred list
|
|
|
|
$crawler = $client->request('GET', '/starred/list');
|
|
|
|
|
2017-05-15 20:47:59 +02: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 17:36:19 +01:00
|
|
|
$form = $crawler->filter('form[name=search]')->form();
|
|
|
|
$data = [
|
2017-05-15 20:47:59 +02:00
|
|
|
'search_entry[term]' => 'testeur',
|
2016-11-18 17:36:19 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
$crawler = $client->submit($form, $data);
|
|
|
|
|
2020-03-21 21:09:57 +01:00
|
|
|
$this->assertCount(1, $crawler->filter('li.entry'));
|
2016-11-18 17:36:19 +01:00
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/archive/list');
|
|
|
|
|
2017-05-15 20:47:59 +02: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 11:42:52 +02:00
|
|
|
$entry->updateArchived(true);
|
2017-05-15 20:47:59 +02:00
|
|
|
$this->getEntityManager()->persist($entry);
|
|
|
|
$this->getEntityManager()->flush();
|
|
|
|
|
2016-11-18 17:36:19 +01:00
|
|
|
$form = $crawler->filter('form[name=search]')->form();
|
|
|
|
$data = [
|
|
|
|
'search_entry[term]' => 'manège',
|
|
|
|
];
|
|
|
|
|
|
|
|
$crawler = $client->submit($form, $data);
|
|
|
|
|
2020-03-21 21:09:57 +01:00
|
|
|
$this->assertCount(1, $crawler->filter('li.entry'));
|
2017-07-01 09:52:38 +02:00
|
|
|
$client->request('GET', '/delete/' . $entry->getId());
|
2016-11-18 17:36:19 +01:00
|
|
|
|
|
|
|
// test on list of all articles
|
|
|
|
$crawler = $client->request('GET', '/all/list');
|
|
|
|
|
|
|
|
$form = $crawler->filter('form[name=search]')->form();
|
|
|
|
$data = [
|
2016-11-18 19:21:31 +01:00
|
|
|
'search_entry[term]' => 'wxcvbnqsdf', // a string not available in the database
|
2016-11-18 17:36:19 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
$crawler = $client->submit($form, $data);
|
|
|
|
|
2020-03-21 21:09:57 +01:00
|
|
|
$this->assertCount(0, $crawler->filter('li.entry'));
|
2017-02-02 21:39:28 +01:00
|
|
|
|
|
|
|
// test url search on list of all articles
|
2017-05-15 20:47:59 +02:00
|
|
|
$entry = new Entry($this->getLoggedInUser());
|
|
|
|
$entry->setUrl('http://domain/qux');
|
|
|
|
$entry->setTitle('Le manège');
|
2018-04-11 11:42:52 +02:00
|
|
|
$entry->updateArchived(true);
|
2017-05-15 20:47:59 +02:00
|
|
|
$this->getEntityManager()->persist($entry);
|
|
|
|
$this->getEntityManager()->flush();
|
|
|
|
|
2017-02-02 21:39:28 +01: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);
|
|
|
|
|
2020-03-21 21:09:57 +01:00
|
|
|
$this->assertCount(1, $crawler->filter('li.entry'));
|
2017-02-02 21:39:28 +01:00
|
|
|
|
|
|
|
// 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);
|
|
|
|
|
2020-03-21 21:09:57 +01:00
|
|
|
$this->assertCount(1, $crawler->filter('li.entry'));
|
2016-11-18 17:36:19 +01:00
|
|
|
}
|
2017-06-09 11:28:04 +02:00
|
|
|
|
|
|
|
public function dataForLanguage()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'ru' => [
|
|
|
|
'https://www.pravda.ru/world/09-06-2017/1337283-qatar-0/',
|
|
|
|
'ru',
|
|
|
|
],
|
2018-03-30 23:09:03 +02:00
|
|
|
'fr' => [
|
|
|
|
'https://fr.wikipedia.org/wiki/Wallabag',
|
|
|
|
'fr',
|
2017-06-09 11:28:04 +02:00
|
|
|
],
|
|
|
|
'de' => [
|
2018-03-29 22:58:40 +02:00
|
|
|
'https://www.bild.de/politik/ausland/theresa-may/wahlbeben-grossbritannien-analyse-52108924.bild.html',
|
2017-06-09 11:28:04 +02:00
|
|
|
'de',
|
|
|
|
],
|
|
|
|
'it' => [
|
2020-03-31 15:56:48 +02:00
|
|
|
'https://www.ansa.it/sito/notizie/mondo/europa/2017/06/08/voto-gb-seggi-aperti-misure-sicurezza-rafforzate_0cb71f7f-e23b-4d5f-95ca-bc12296419f0.html',
|
2017-06-09 11:28:04 +02:00
|
|
|
'it',
|
|
|
|
],
|
|
|
|
'zh_CN' => [
|
|
|
|
'http://www.hao123.com/shequ?__noscript__-=1',
|
|
|
|
'zh_CN',
|
|
|
|
],
|
|
|
|
'pt_BR' => [
|
2018-09-07 14:09:06 +02:00
|
|
|
'https://politica.estadao.com.br/noticias/eleicoes,campanha-catatonica,70002491983',
|
2017-06-09 11:28:04 +02:00
|
|
|
'pt_BR',
|
|
|
|
],
|
2017-06-09 11:42:04 +02:00
|
|
|
'fucked_list_of_languages' => [
|
2017-06-09 11:28:04 +02:00
|
|
|
'http://geocatalog.webservice-energy.org/geonetwork/srv/eng/main.home',
|
2017-07-03 07:30:54 +02:00
|
|
|
null,
|
2017-06-09 11:28:04 +02:00
|
|
|
],
|
2017-06-09 11:42:04 +02:00
|
|
|
'es-ES' => [
|
2018-06-06 17:34:20 +02:00
|
|
|
'https://www.20minutos.es/noticia/3360685/0/gobierno-sanchez-primero-historia-mas-mujeres-que-hombres/',
|
2019-10-22 16:56:33 +02:00
|
|
|
'es_ES',
|
2017-06-09 11:42:04 +02:00
|
|
|
],
|
2017-06-09 11:28:04 +02:00
|
|
|
];
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider dataForLanguage
|
2020-03-10 22:22:51 +01:00
|
|
|
* @group NetworkCalls
|
2017-06-09 11:28:04 +02:00
|
|
|
*/
|
|
|
|
public function testLanguageValidation($url, $expectedLanguage)
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/new');
|
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2017-06-09 11:28:04 +02:00
|
|
|
|
|
|
|
$form = $crawler->filter('form[name=entry]')->form();
|
|
|
|
|
|
|
|
$data = [
|
|
|
|
'entry[url]' => $url,
|
|
|
|
];
|
|
|
|
|
|
|
|
$client->submit($form, $data);
|
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2017-06-09 11:28:04 +02: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 09:52:38 +02:00
|
|
|
$this->assertSame($url, $content->getUrl());
|
|
|
|
$this->assertSame($expectedLanguage, $content->getLanguage());
|
2017-06-09 11:28:04 +02:00
|
|
|
}
|
2017-05-03 10:23:49 +02:00
|
|
|
|
|
|
|
/**
|
2020-03-10 22:22:51 +01:00
|
|
|
* @group NetworkCalls
|
2017-05-03 10:23:49 +02:00
|
|
|
*/
|
|
|
|
public function testRestrictedArticle()
|
|
|
|
{
|
2017-10-10 10:20:57 +02:00
|
|
|
$url = 'https://www.monde-diplomatique.fr/2017/05/BONNET/57475';
|
2017-05-03 10:23:49 +02: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 15:02:34 +02:00
|
|
|
$credential->setUsername($client->getContainer()->get('wallabag_core.helper.crypto_proxy')->crypt('foo'));
|
2017-06-11 23:05:19 +02:00
|
|
|
$credential->setPassword($client->getContainer()->get('wallabag_core.helper.crypto_proxy')->crypt('bar'));
|
2017-05-03 10:23:49 +02:00
|
|
|
|
|
|
|
$em->persist($credential);
|
|
|
|
$em->flush();
|
|
|
|
|
|
|
|
$crawler = $client->request('GET', '/new');
|
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2017-05-03 10:23:49 +02:00
|
|
|
|
|
|
|
$form = $crawler->filter('form[name=entry]')->form();
|
|
|
|
|
|
|
|
$data = [
|
|
|
|
'entry[url]' => $url,
|
|
|
|
];
|
|
|
|
|
|
|
|
$client->submit($form, $data);
|
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2017-05-03 10:23:49 +02:00
|
|
|
|
|
|
|
$crawler = $client->followRedirect();
|
|
|
|
|
2017-07-01 09:52:38 +02:00
|
|
|
$this->assertSame(200, $client->getResponse()->getStatusCode());
|
2020-06-15 13:37:50 +02:00
|
|
|
$this->assertStringContainsString('flashes.entry.notice.entry_saved', $crawler->filter('body')->extract(['_text'])[0]);
|
2017-05-03 10:23:49 +02:00
|
|
|
|
|
|
|
$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 22:56:46 +01: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-31 00:56:40 +01: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 21:41:05 +02:00
|
|
|
|
|
|
|
public function testRandom()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$client->request('GET', '/unread/random');
|
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2020-06-15 13:37:50 +02:00
|
|
|
$this->assertStringContainsString('/view/', $client->getResponse()->getTargetUrl(), 'Unread random');
|
2018-10-12 21:41:05 +02:00
|
|
|
|
|
|
|
$client->request('GET', '/starred/random');
|
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2020-06-15 13:37:50 +02:00
|
|
|
$this->assertStringContainsString('/view/', $client->getResponse()->getTargetUrl(), 'Starred random');
|
2018-10-12 21:41:05 +02:00
|
|
|
|
|
|
|
$client->request('GET', '/archive/random');
|
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2020-06-15 13:37:50 +02:00
|
|
|
$this->assertStringContainsString('/view/', $client->getResponse()->getTargetUrl(), 'Archive random');
|
2018-10-12 21:41:05 +02:00
|
|
|
|
|
|
|
$client->request('GET', '/untagged/random');
|
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2020-06-15 13:37:50 +02:00
|
|
|
$this->assertStringContainsString('/view/', $client->getResponse()->getTargetUrl(), 'Untagged random');
|
2018-10-12 21:41:05 +02:00
|
|
|
|
|
|
|
$client->request('GET', '/all/random');
|
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
2020-06-15 13:37:50 +02:00
|
|
|
$this->assertStringContainsString('/view/', $client->getResponse()->getTargetUrl(), 'All random');
|
2018-10-12 21:41:05 +02:00
|
|
|
}
|
2020-04-12 16:31:12 +02:00
|
|
|
|
|
|
|
public function testMass()
|
|
|
|
{
|
|
|
|
$this->logInAs('admin');
|
|
|
|
$client = $this->getClient();
|
|
|
|
|
|
|
|
$entry1 = new Entry($this->getLoggedInUser());
|
|
|
|
$entry1->setUrl($this->url);
|
|
|
|
$this->getEntityManager()->persist($entry1);
|
|
|
|
|
|
|
|
$entry2 = new Entry($this->getLoggedInUser());
|
|
|
|
$entry2->setUrl($this->url);
|
|
|
|
$this->getEntityManager()->persist($entry2);
|
|
|
|
|
|
|
|
$this->getEntityManager()->flush();
|
|
|
|
$this->getEntityManager()->clear();
|
|
|
|
|
|
|
|
$entries = [];
|
|
|
|
$entries[] = $entry1->getId();
|
|
|
|
$entries[] = $entry2->getId();
|
|
|
|
|
|
|
|
// Mass actions : archive
|
|
|
|
$client->request('POST', '/mass', [
|
|
|
|
'toggle-archive' => '',
|
|
|
|
'entry-checkbox' => $entries,
|
|
|
|
]);
|
|
|
|
|
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
|
|
|
|
|
|
|
$res = $client->getContainer()
|
|
|
|
->get('doctrine.orm.entity_manager')
|
|
|
|
->getRepository('WallabagCoreBundle:Entry')
|
|
|
|
->find($entry1->getId());
|
|
|
|
|
|
|
|
$this->assertSame(1, $res->isArchived());
|
|
|
|
|
|
|
|
$res = $client->getContainer()
|
|
|
|
->get('doctrine.orm.entity_manager')
|
|
|
|
->getRepository('WallabagCoreBundle:Entry')
|
|
|
|
->find($entry2->getId());
|
|
|
|
|
|
|
|
$this->assertSame(1, $res->isArchived());
|
|
|
|
|
|
|
|
// Mass actions : star
|
|
|
|
$client->request('POST', '/mass', [
|
|
|
|
'toggle-star' => '',
|
|
|
|
'entry-checkbox' => $entries,
|
|
|
|
]);
|
|
|
|
|
|
|
|
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
|
|
|
|
|
|
|
$res = $client->getContainer()
|
|
|
|
->get('doctrine.orm.entity_manager')
|
|
|
|
->getRepository('WallabagCoreBundle:Entry')
|
|
|
|
->find($entry1->getId());
|
|
|
|
|
|
|
|
$this->assertSame(1, $res->isStarred());
|
|
|
|
|
|
|
|
$res = $client->getContainer()
|
|
|
|
->get('doctrine.orm.entity_manager')
|
|
|
|
->getRepository('WallabagCoreBundle:Entry')
|
|
|
|
->find($entry2->getId());
|
|
|
|
|
|
|
|
$this->assertSame(1, $res->isStarred());
|
|
|
|
|
|
|
|
// Mass actions : delete
|
|
|
|
$client->request('POST', '/mass', [
|
|
|
|
'delete' => '',
|
|
|
|
'entry-checkbox' => $entries,
|
|
|
|
]);
|
|
|
|
|
|
|
|
$client->request('GET', '/delete/' . $entry1->getId());
|
|
|
|
$this->assertSame(404, $client->getResponse()->getStatusCode());
|
|
|
|
|
|
|
|
$client->request('GET', '/delete/' . $entry2->getId());
|
|
|
|
$this->assertSame(404, $client->getResponse()->getStatusCode());
|
|
|
|
}
|
2015-01-22 08:30:07 +01:00
|
|
|
}
|