3c66e56435
Namespaces have been introduced with the REST API, and should be generalized to the whole codebase to manage object scope and benefit from autoloading. See: - https://secure.php.net/manual/en/language.namespaces.php - http://www.php-fig.org/psr/psr-4/ Signed-off-by: VirtualTam <virtualtam@flibidi.net>
55 lines
1.5 KiB
PHP
55 lines
1.5 KiB
PHP
<?php
|
|
use Shaarli\Config\ConfigManager;
|
|
|
|
require_once 'plugins/pubsubhubbub/pubsubhubbub.php';
|
|
require_once 'application/Router.php';
|
|
|
|
/**
|
|
* Class PluginPubsubhubbubTest
|
|
* Unit test for the pubsubhubbub plugin
|
|
*/
|
|
class PluginPubsubhubbubTest extends PHPUnit_Framework_TestCase
|
|
{
|
|
/**
|
|
* @var string Config file path (without extension).
|
|
*/
|
|
protected static $configFile = 'tests/utils/config/configJson';
|
|
|
|
/**
|
|
* Reset plugin path
|
|
*/
|
|
public function setUp()
|
|
{
|
|
PluginManager::$PLUGINS_PATH = 'plugins';
|
|
}
|
|
|
|
/**
|
|
* Test render_feed hook with an RSS feed.
|
|
*/
|
|
public function testPubSubRssRenderFeed()
|
|
{
|
|
$hub = 'http://domain.hub';
|
|
$conf = new ConfigManager(self::$configFile);
|
|
$conf->set('plugins.PUBSUBHUB_URL', $hub);
|
|
$data['_PAGE_'] = Router::$PAGE_FEED_RSS;
|
|
|
|
$data = hook_pubsubhubbub_render_feed($data, $conf);
|
|
$expected = '<atom:link rel="hub" href="'. $hub .'" />';
|
|
$this->assertEquals($expected, $data['feed_plugins_header'][0]);
|
|
}
|
|
|
|
/**
|
|
* Test render_feed hook with an ATOM feed.
|
|
*/
|
|
public function testPubSubAtomRenderFeed()
|
|
{
|
|
$hub = 'http://domain.hub';
|
|
$conf = new ConfigManager(self::$configFile);
|
|
$conf->set('plugins.PUBSUBHUB_URL', $hub);
|
|
$data['_PAGE_'] = Router::$PAGE_FEED_ATOM;
|
|
|
|
$data = hook_pubsubhubbub_render_feed($data, $conf);
|
|
$expected = '<link rel="hub" href="'. $hub .'" />';
|
|
$this->assertEquals($expected, $data['feed_plugins_header'][0]);
|
|
}
|
|
}
|