2016-03-12 17:54:56 +01:00
|
|
|
<?php
|
|
|
|
|
2018-12-03 00:08:04 +01:00
|
|
|
namespace Shaarli\Feed;
|
|
|
|
|
|
|
|
use DateTime;
|
|
|
|
use ReferenceLinkDB;
|
2019-01-12 23:55:38 +01:00
|
|
|
use Shaarli\Bookmark\LinkDB;
|
2018-12-03 00:08:04 +01:00
|
|
|
|
2016-03-12 17:54:56 +01:00
|
|
|
/**
|
|
|
|
* FeedBuilderTest class.
|
|
|
|
*
|
|
|
|
* Unit tests for FeedBuilder.
|
|
|
|
*/
|
2018-12-03 00:08:04 +01:00
|
|
|
class FeedBuilderTest extends \PHPUnit\Framework\TestCase
|
2016-03-12 17:54:56 +01:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var string locale Basque (Spain).
|
|
|
|
*/
|
|
|
|
public static $LOCALE = 'eu_ES';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var string language in RSS format.
|
|
|
|
*/
|
|
|
|
public static $RSS_LANGUAGE = 'eu-es';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var string language in ATOM format.
|
|
|
|
*/
|
|
|
|
public static $ATOM_LANGUAGUE = 'eu';
|
|
|
|
|
|
|
|
protected static $testDatastore = 'sandbox/datastore.php';
|
|
|
|
|
|
|
|
public static $linkDB;
|
|
|
|
|
|
|
|
public static $serverInfo;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Called before every test method.
|
|
|
|
*/
|
|
|
|
public static function setUpBeforeClass()
|
|
|
|
{
|
|
|
|
$refLinkDB = new ReferenceLinkDB();
|
|
|
|
$refLinkDB->write(self::$testDatastore);
|
|
|
|
self::$linkDB = new LinkDB(self::$testDatastore, true, false);
|
|
|
|
self::$serverInfo = array(
|
|
|
|
'HTTPS' => 'Off',
|
|
|
|
'SERVER_NAME' => 'host.tld',
|
|
|
|
'SERVER_PORT' => '80',
|
|
|
|
'SCRIPT_NAME' => '/index.php',
|
|
|
|
'REQUEST_URI' => '/index.php?do=feed',
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test GetTypeLanguage().
|
|
|
|
*/
|
|
|
|
public function testGetTypeLanguage()
|
|
|
|
{
|
|
|
|
$feedBuilder = new FeedBuilder(null, FeedBuilder::$FEED_ATOM, null, null, false);
|
|
|
|
$feedBuilder->setLocale(self::$LOCALE);
|
|
|
|
$this->assertEquals(self::$ATOM_LANGUAGUE, $feedBuilder->getTypeLanguage());
|
|
|
|
$feedBuilder = new FeedBuilder(null, FeedBuilder::$FEED_RSS, null, null, false);
|
|
|
|
$feedBuilder->setLocale(self::$LOCALE);
|
|
|
|
$this->assertEquals(self::$RSS_LANGUAGE, $feedBuilder->getTypeLanguage());
|
|
|
|
$feedBuilder = new FeedBuilder(null, FeedBuilder::$FEED_ATOM, null, null, false);
|
|
|
|
$this->assertEquals('en', $feedBuilder->getTypeLanguage());
|
|
|
|
$feedBuilder = new FeedBuilder(null, FeedBuilder::$FEED_RSS, null, null, false);
|
|
|
|
$this->assertEquals('en-en', $feedBuilder->getTypeLanguage());
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test buildData with RSS feed.
|
|
|
|
*/
|
|
|
|
public function testRSSBuildData()
|
|
|
|
{
|
|
|
|
$feedBuilder = new FeedBuilder(self::$linkDB, FeedBuilder::$FEED_RSS, self::$serverInfo, null, false);
|
|
|
|
$feedBuilder->setLocale(self::$LOCALE);
|
|
|
|
$data = $feedBuilder->buildData();
|
|
|
|
// Test headers (RSS)
|
|
|
|
$this->assertEquals(self::$RSS_LANGUAGE, $data['language']);
|
2016-08-03 09:45:28 +02:00
|
|
|
$this->assertRegExp('/Wed, 03 Aug 2016 09:30:33 \+\d{4}/', $data['last_update']);
|
2016-03-12 17:54:56 +01:00
|
|
|
$this->assertEquals(true, $data['show_dates']);
|
|
|
|
$this->assertEquals('http://host.tld/index.php?do=feed', $data['self_link']);
|
|
|
|
$this->assertEquals('http://host.tld/', $data['index_url']);
|
|
|
|
$this->assertFalse($data['usepermalinks']);
|
|
|
|
$this->assertEquals(ReferenceLinkDB::$NB_LINKS_TOTAL, count($data['links']));
|
|
|
|
|
2018-05-22 22:44:38 +02:00
|
|
|
// Test first not pinned link (note link)
|
|
|
|
$link = $data['links'][array_keys($data['links'])[2]];
|
2016-11-28 16:17:25 +01:00
|
|
|
$this->assertEquals(41, $link['id']);
|
2016-11-28 18:24:15 +01:00
|
|
|
$this->assertEquals(DateTime::createFromFormat(LinkDB::LINK_DATE_FORMAT, '20150310_114651'), $link['created']);
|
2016-03-12 17:54:56 +01:00
|
|
|
$this->assertEquals('http://host.tld/?WDWyig', $link['guid']);
|
|
|
|
$this->assertEquals('http://host.tld/?WDWyig', $link['url']);
|
2016-08-03 09:45:28 +02:00
|
|
|
$this->assertRegExp('/Tue, 10 Mar 2015 11:46:51 \+\d{4}/', $link['pub_iso_date']);
|
|
|
|
$pub = DateTime::createFromFormat(DateTime::RSS, $link['pub_iso_date']);
|
2018-12-03 00:08:04 +01:00
|
|
|
$up = DateTime::createFromFormat(DateTime::ATOM, $link['up_iso_date']);
|
2016-08-03 09:45:28 +02:00
|
|
|
$this->assertEquals($pub, $up);
|
2016-03-12 17:54:56 +01:00
|
|
|
$this->assertContains('Stallman has a beard', $link['description']);
|
|
|
|
$this->assertContains('Permalink', $link['description']);
|
|
|
|
$this->assertContains('http://host.tld/?WDWyig', $link['description']);
|
|
|
|
$this->assertEquals(1, count($link['taglist']));
|
2016-04-14 17:59:37 +02:00
|
|
|
$this->assertEquals('sTuff', $link['taglist'][0]);
|
2016-03-12 17:54:56 +01:00
|
|
|
|
|
|
|
// Test URL with external link.
|
2016-11-28 16:17:25 +01:00
|
|
|
$this->assertEquals('https://static.fsf.org/nosvn/faif-2.0.pdf', $data['links'][8]['url']);
|
2016-03-12 17:54:56 +01:00
|
|
|
|
|
|
|
// Test multitags.
|
2016-11-28 16:17:25 +01:00
|
|
|
$this->assertEquals(5, count($data['links'][6]['taglist']));
|
|
|
|
$this->assertEquals('css', $data['links'][6]['taglist'][0]);
|
2016-08-03 09:45:28 +02:00
|
|
|
|
|
|
|
// Test update date
|
2016-11-28 16:17:25 +01:00
|
|
|
$this->assertRegExp('/2016-08-03T09:30:33\+\d{2}:\d{2}/', $data['links'][8]['up_iso_date']);
|
2016-03-12 17:54:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test buildData with ATOM feed (test only specific to ATOM).
|
|
|
|
*/
|
|
|
|
public function testAtomBuildData()
|
|
|
|
{
|
|
|
|
$feedBuilder = new FeedBuilder(self::$linkDB, FeedBuilder::$FEED_ATOM, self::$serverInfo, null, false);
|
|
|
|
$feedBuilder->setLocale(self::$LOCALE);
|
|
|
|
$data = $feedBuilder->buildData();
|
|
|
|
$this->assertEquals(ReferenceLinkDB::$NB_LINKS_TOTAL, count($data['links']));
|
2016-08-03 09:45:28 +02:00
|
|
|
$this->assertRegExp('/2016-08-03T09:30:33\+\d{2}:\d{2}/', $data['last_update']);
|
2018-05-22 22:44:38 +02:00
|
|
|
$link = $data['links'][array_keys($data['links'])[2]];
|
2016-08-03 09:45:28 +02:00
|
|
|
$this->assertRegExp('/2015-03-10T11:46:51\+\d{2}:\d{2}/', $link['pub_iso_date']);
|
2016-11-28 16:17:25 +01:00
|
|
|
$this->assertRegExp('/2016-08-03T09:30:33\+\d{2}:\d{2}/', $data['links'][8]['up_iso_date']);
|
2016-03-12 17:54:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test buildData with search criteria.
|
|
|
|
*/
|
|
|
|
public function testBuildDataFiltered()
|
|
|
|
{
|
|
|
|
$criteria = array(
|
|
|
|
'searchtags' => 'stuff',
|
|
|
|
'searchterm' => 'beard',
|
|
|
|
);
|
|
|
|
$feedBuilder = new FeedBuilder(self::$linkDB, FeedBuilder::$FEED_ATOM, self::$serverInfo, $criteria, false);
|
|
|
|
$feedBuilder->setLocale(self::$LOCALE);
|
|
|
|
$data = $feedBuilder->buildData();
|
|
|
|
$this->assertEquals(1, count($data['links']));
|
|
|
|
$link = array_shift($data['links']);
|
2016-11-28 16:17:25 +01:00
|
|
|
$this->assertEquals(41, $link['id']);
|
2016-11-28 18:24:15 +01:00
|
|
|
$this->assertEquals(DateTime::createFromFormat(LinkDB::LINK_DATE_FORMAT, '20150310_114651'), $link['created']);
|
2016-03-12 17:54:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test buildData with nb limit.
|
|
|
|
*/
|
|
|
|
public function testBuildDataCount()
|
|
|
|
{
|
|
|
|
$criteria = array(
|
2018-05-22 22:44:38 +02:00
|
|
|
'nb' => '3',
|
2016-03-12 17:54:56 +01:00
|
|
|
);
|
|
|
|
$feedBuilder = new FeedBuilder(self::$linkDB, FeedBuilder::$FEED_ATOM, self::$serverInfo, $criteria, false);
|
|
|
|
$feedBuilder->setLocale(self::$LOCALE);
|
|
|
|
$data = $feedBuilder->buildData();
|
2018-05-22 22:44:38 +02:00
|
|
|
$this->assertEquals(3, count($data['links']));
|
|
|
|
$link = $data['links'][array_keys($data['links'])[2]];
|
2016-11-28 16:17:25 +01:00
|
|
|
$this->assertEquals(41, $link['id']);
|
2016-11-28 18:24:15 +01:00
|
|
|
$this->assertEquals(DateTime::createFromFormat(LinkDB::LINK_DATE_FORMAT, '20150310_114651'), $link['created']);
|
2016-03-12 17:54:56 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test buildData with permalinks on.
|
|
|
|
*/
|
|
|
|
public function testBuildDataPermalinks()
|
|
|
|
{
|
|
|
|
$feedBuilder = new FeedBuilder(self::$linkDB, FeedBuilder::$FEED_ATOM, self::$serverInfo, null, false);
|
|
|
|
$feedBuilder->setLocale(self::$LOCALE);
|
|
|
|
$feedBuilder->setUsePermalinks(true);
|
|
|
|
$data = $feedBuilder->buildData();
|
|
|
|
$this->assertEquals(ReferenceLinkDB::$NB_LINKS_TOTAL, count($data['links']));
|
|
|
|
$this->assertTrue($data['usepermalinks']);
|
|
|
|
// First link is a permalink
|
2018-05-22 22:44:38 +02:00
|
|
|
$link = $data['links'][array_keys($data['links'])[2]];
|
2016-11-28 16:17:25 +01:00
|
|
|
$this->assertEquals(41, $link['id']);
|
2016-11-28 18:24:15 +01:00
|
|
|
$this->assertEquals(DateTime::createFromFormat(LinkDB::LINK_DATE_FORMAT, '20150310_114651'), $link['created']);
|
2016-03-12 17:54:56 +01:00
|
|
|
$this->assertEquals('http://host.tld/?WDWyig', $link['guid']);
|
|
|
|
$this->assertEquals('http://host.tld/?WDWyig', $link['url']);
|
|
|
|
$this->assertContains('Direct link', $link['description']);
|
|
|
|
$this->assertContains('http://host.tld/?WDWyig', $link['description']);
|
|
|
|
// Second link is a direct link
|
2018-05-22 22:44:38 +02:00
|
|
|
$link = $data['links'][array_keys($data['links'])[3]];
|
2016-11-28 16:17:25 +01:00
|
|
|
$this->assertEquals(8, $link['id']);
|
2016-11-28 18:24:15 +01:00
|
|
|
$this->assertEquals(DateTime::createFromFormat(LinkDB::LINK_DATE_FORMAT, '20150310_114633'), $link['created']);
|
2016-11-28 16:17:25 +01:00
|
|
|
$this->assertEquals('http://host.tld/?RttfEw', $link['guid']);
|
2016-03-12 17:54:56 +01:00
|
|
|
$this->assertEquals('https://static.fsf.org/nosvn/faif-2.0.pdf', $link['url']);
|
|
|
|
$this->assertContains('Direct link', $link['description']);
|
|
|
|
$this->assertContains('https://static.fsf.org/nosvn/faif-2.0.pdf', $link['description']);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test buildData with hide dates settings.
|
|
|
|
*/
|
|
|
|
public function testBuildDataHideDates()
|
|
|
|
{
|
|
|
|
$feedBuilder = new FeedBuilder(self::$linkDB, FeedBuilder::$FEED_ATOM, self::$serverInfo, null, false);
|
|
|
|
$feedBuilder->setLocale(self::$LOCALE);
|
|
|
|
$feedBuilder->setHideDates(true);
|
|
|
|
$data = $feedBuilder->buildData();
|
|
|
|
$this->assertEquals(ReferenceLinkDB::$NB_LINKS_TOTAL, count($data['links']));
|
|
|
|
$this->assertFalse($data['show_dates']);
|
|
|
|
|
|
|
|
// Show dates while logged in
|
|
|
|
$feedBuilder = new FeedBuilder(self::$linkDB, FeedBuilder::$FEED_ATOM, self::$serverInfo, null, true);
|
|
|
|
$feedBuilder->setLocale(self::$LOCALE);
|
|
|
|
$feedBuilder->setHideDates(true);
|
|
|
|
$data = $feedBuilder->buildData();
|
|
|
|
$this->assertEquals(ReferenceLinkDB::$NB_LINKS_TOTAL, count($data['links']));
|
|
|
|
$this->assertTrue($data['show_dates']);
|
|
|
|
}
|
|
|
|
|
2016-10-16 20:52:35 +02:00
|
|
|
/**
|
|
|
|
* Test buildData when Shaarli is served from a subdirectory
|
|
|
|
*/
|
|
|
|
public function testBuildDataServerSubdir()
|
|
|
|
{
|
|
|
|
$serverInfo = array(
|
|
|
|
'HTTPS' => 'Off',
|
|
|
|
'SERVER_NAME' => 'host.tld',
|
|
|
|
'SERVER_PORT' => '8080',
|
|
|
|
'SCRIPT_NAME' => '/~user/shaarli/index.php',
|
|
|
|
'REQUEST_URI' => '/~user/shaarli/index.php?do=feed',
|
|
|
|
);
|
|
|
|
$feedBuilder = new FeedBuilder(
|
|
|
|
self::$linkDB,
|
|
|
|
FeedBuilder::$FEED_ATOM,
|
|
|
|
$serverInfo,
|
|
|
|
null,
|
|
|
|
false
|
|
|
|
);
|
|
|
|
$feedBuilder->setLocale(self::$LOCALE);
|
|
|
|
$data = $feedBuilder->buildData();
|
|
|
|
|
|
|
|
$this->assertEquals(
|
|
|
|
'http://host.tld:8080/~user/shaarli/index.php?do=feed',
|
|
|
|
$data['self_link']
|
|
|
|
);
|
|
|
|
|
|
|
|
// Test first link (note link)
|
2018-05-22 22:44:38 +02:00
|
|
|
$link = $data['links'][array_keys($data['links'])[2]];
|
2016-10-16 20:52:35 +02:00
|
|
|
$this->assertEquals('http://host.tld:8080/~user/shaarli/?WDWyig', $link['guid']);
|
|
|
|
$this->assertEquals('http://host.tld:8080/~user/shaarli/?WDWyig', $link['url']);
|
2016-10-19 11:05:20 +02:00
|
|
|
$this->assertContains('http://host.tld:8080/~user/shaarli/?addtag=hashtag', $link['description']);
|
2016-10-16 20:52:35 +02:00
|
|
|
}
|
2016-03-12 17:54:56 +01:00
|
|
|
}
|