wallabag/tests/Wallabag/CoreBundle/Controller/RssControllerTest.php

222 lines
7.5 KiB
PHP
Raw Normal View History

2015-03-28 20:43:49 +00:00
<?php
2016-06-01 19:27:35 +00:00
namespace Tests\Wallabag\CoreBundle\Controller;
2015-03-28 20:43:49 +00:00
2016-06-01 19:27:35 +00:00
use Tests\Wallabag\CoreBundle\WallabagCoreTestCase;
2015-03-28 20:43:49 +00:00
2015-04-01 19:53:57 +00:00
class RssControllerTest extends WallabagCoreTestCase
2015-03-28 20:43:49 +00:00
{
2017-06-10 11:11:08 +00:00
public function validateDom($xml, $type, $urlPagination, $nb = null)
2015-03-28 20:43:49 +00:00
{
$doc = new \DOMDocument();
$doc->loadXML($xml);
$xpath = new \DOMXpath($doc);
if (null === $nb) {
$this->assertGreaterThan(0, $xpath->query('//item')->length);
} else {
2017-07-01 07:52:38 +00:00
$this->assertSame($nb, $xpath->query('//item')->length);
2015-03-28 20:43:49 +00:00
}
2017-07-01 07:52:38 +00:00
$this->assertSame(1, $xpath->query('/rss')->length);
$this->assertSame(1, $xpath->query('/rss/channel')->length);
2015-03-28 20:43:49 +00:00
2017-07-01 07:52:38 +00:00
$this->assertSame(1, $xpath->query('/rss/channel/title')->length);
$this->assertSame('wallabag - ' . $type . ' feed', $xpath->query('/rss/channel/title')->item(0)->nodeValue);
2017-07-01 07:52:38 +00:00
$this->assertSame(1, $xpath->query('/rss/channel/pubDate')->length);
2017-07-01 07:52:38 +00:00
$this->assertSame(1, $xpath->query('/rss/channel/generator')->length);
$this->assertSame('wallabag', $xpath->query('/rss/channel/generator')->item(0)->nodeValue);
2017-07-01 07:52:38 +00:00
$this->assertSame(1, $xpath->query('/rss/channel/description')->length);
$this->assertSame('wallabag ' . $type . ' elements', $xpath->query('/rss/channel/description')->item(0)->nodeValue);
2017-07-01 07:52:38 +00:00
$this->assertSame(1, $xpath->query('/rss/channel/link[@rel="self"]')->length);
$this->assertContains($urlPagination . '.xml', $xpath->query('/rss/channel/link[@rel="self"]')->item(0)->getAttribute('href'));
2017-07-01 07:52:38 +00:00
$this->assertSame(1, $xpath->query('/rss/channel/link[@rel="last"]')->length);
$this->assertContains($urlPagination . '.xml?page=', $xpath->query('/rss/channel/link[@rel="last"]')->item(0)->getAttribute('href'));
2015-03-28 20:43:49 +00:00
foreach ($xpath->query('//item') as $item) {
2017-07-01 07:52:38 +00:00
$this->assertSame(1, $xpath->query('title', $item)->length);
$this->assertSame(1, $xpath->query('source', $item)->length);
$this->assertSame(1, $xpath->query('link', $item)->length);
$this->assertSame(1, $xpath->query('guid', $item)->length);
$this->assertSame(1, $xpath->query('pubDate', $item)->length);
$this->assertSame(1, $xpath->query('description', $item)->length);
2015-03-28 20:43:49 +00:00
}
}
public function dataForBadUrl()
{
return [
[
2015-04-01 19:53:57 +00:00
'/admin/YZIOAUZIAO/unread.xml',
],
[
2015-04-01 19:53:57 +00:00
'/wallace/YZIOAUZIAO/starred.xml',
],
[
2015-04-01 19:53:57 +00:00
'/wallace/YZIOAUZIAO/archives.xml',
],
[
'/wallace/YZIOAUZIAO/all.xml',
],
];
2015-03-28 20:43:49 +00:00
}
/**
* @dataProvider dataForBadUrl
*/
public function testBadUrl($url)
{
$client = $this->getClient();
$client->request('GET', $url);
2017-07-01 07:52:38 +00:00
$this->assertSame(404, $client->getResponse()->getStatusCode());
2015-03-28 20:43:49 +00:00
}
public function testUnread()
{
$client = $this->getClient();
$em = $client->getContainer()->get('doctrine.orm.entity_manager');
$user = $em
->getRepository('WallabagUserBundle:User')
2015-03-28 20:43:49 +00:00
->findOneByUsername('admin');
$config = $user->getConfig();
$config->setRssToken('SUPERTOKEN');
$config->setRssLimit(2);
$em->persist($config);
$em->flush();
$client->request('GET', '/admin/SUPERTOKEN/unread.xml');
2017-07-01 07:52:38 +00:00
$this->assertSame(200, $client->getResponse()->getStatusCode());
2015-03-28 20:43:49 +00:00
2017-06-10 11:11:08 +00:00
$this->validateDom($client->getResponse()->getContent(), 'unread', 'unread', 2);
2015-03-28 20:43:49 +00:00
}
public function testStarred()
{
$client = $this->getClient();
$em = $client->getContainer()->get('doctrine.orm.entity_manager');
$user = $em
->getRepository('WallabagUserBundle:User')
2015-03-28 20:43:49 +00:00
->findOneByUsername('admin');
$config = $user->getConfig();
$config->setRssToken('SUPERTOKEN');
$config->setRssLimit(1);
$em->persist($config);
$em->flush();
$client = $this->getClient();
$client->request('GET', '/admin/SUPERTOKEN/starred.xml');
2017-07-01 07:52:38 +00:00
$this->assertSame(200, $client->getResponse()->getStatusCode(), 1);
2015-03-28 20:43:49 +00:00
2017-06-10 11:11:08 +00:00
$this->validateDom($client->getResponse()->getContent(), 'starred', 'starred');
2015-03-28 20:43:49 +00:00
}
public function testArchives()
{
$client = $this->getClient();
$em = $client->getContainer()->get('doctrine.orm.entity_manager');
$user = $em
->getRepository('WallabagUserBundle:User')
2015-03-28 20:43:49 +00:00
->findOneByUsername('admin');
$config = $user->getConfig();
$config->setRssToken('SUPERTOKEN');
$config->setRssLimit(null);
$em->persist($config);
$em->flush();
$client = $this->getClient();
$client->request('GET', '/admin/SUPERTOKEN/archive.xml');
2017-07-01 07:52:38 +00:00
$this->assertSame(200, $client->getResponse()->getStatusCode());
2015-03-28 20:43:49 +00:00
2017-06-10 11:11:08 +00:00
$this->validateDom($client->getResponse()->getContent(), 'archive', 'archive');
}
public function testAll()
{
$client = $this->getClient();
$em = $client->getContainer()->get('doctrine.orm.entity_manager');
$user = $em
->getRepository('WallabagUserBundle:User')
->findOneByUsername('admin');
$config = $user->getConfig();
$config->setRssToken('SUPERTOKEN');
$config->setRssLimit(null);
$em->persist($config);
$em->flush();
$client = $this->getClient();
$client->request('GET', '/admin/SUPERTOKEN/all.xml');
$this->assertSame(200, $client->getResponse()->getStatusCode());
$this->validateDom($client->getResponse()->getContent(), 'all', 'all');
}
public function testPagination()
{
$client = $this->getClient();
$em = $client->getContainer()->get('doctrine.orm.entity_manager');
$user = $em
->getRepository('WallabagUserBundle:User')
->findOneByUsername('admin');
$config = $user->getConfig();
$config->setRssToken('SUPERTOKEN');
$config->setRssLimit(1);
$em->persist($config);
$em->flush();
$client = $this->getClient();
2016-11-19 14:58:10 +00:00
$client->request('GET', '/admin/SUPERTOKEN/unread.xml');
2017-07-01 07:52:38 +00:00
$this->assertSame(200, $client->getResponse()->getStatusCode());
2017-06-10 11:11:08 +00:00
$this->validateDom($client->getResponse()->getContent(), 'unread', 'unread');
2016-11-19 14:58:10 +00:00
$client->request('GET', '/admin/SUPERTOKEN/unread.xml?page=2');
2017-07-01 07:52:38 +00:00
$this->assertSame(200, $client->getResponse()->getStatusCode());
2017-06-10 11:11:08 +00:00
$this->validateDom($client->getResponse()->getContent(), 'unread', 'unread');
2016-11-19 14:58:10 +00:00
$client->request('GET', '/admin/SUPERTOKEN/unread.xml?page=3000');
2017-07-01 07:52:38 +00:00
$this->assertSame(302, $client->getResponse()->getStatusCode());
2015-03-28 20:43:49 +00:00
}
2017-06-10 11:11:08 +00:00
public function testTags()
{
$client = $this->getClient();
$em = $client->getContainer()->get('doctrine.orm.entity_manager');
$user = $em
->getRepository('WallabagUserBundle:User')
->findOneByUsername('admin');
$config = $user->getConfig();
$config->setRssToken('SUPERTOKEN');
$config->setRssLimit(null);
$em->persist($config);
$em->flush();
$client = $this->getClient();
$client->request('GET', '/admin/SUPERTOKEN/tags/foo.xml');
2017-06-10 11:11:08 +00:00
2017-07-01 07:52:38 +00:00
$this->assertSame(200, $client->getResponse()->getStatusCode());
2017-06-10 11:11:08 +00:00
$this->validateDom($client->getResponse()->getContent(), 'tag (foo)', 'tags/foo');
2017-06-10 11:11:08 +00:00
$client->request('GET', '/admin/SUPERTOKEN/tags/foo.xml?page=3000');
2017-07-01 07:52:38 +00:00
$this->assertSame(302, $client->getResponse()->getStatusCode());
2017-06-10 11:11:08 +00:00
}
2015-03-28 20:43:49 +00:00
}