From 76fe68d924d424283d0a1784c5f5e7582dda3a00 Mon Sep 17 00:00:00 2001 From: ArthurHoaro Date: Tue, 22 Sep 2020 12:44:08 +0200 Subject: Fix plugin base path in core plugins Also fix note check in archiveorg plugin, and regression on vintage template. Documentation regarding relative path has been added. Fixes #1548 --- tests/plugins/PluginArchiveorgTest.php | 37 +++++++++++++++++++++++++--------- tests/plugins/PluginIssoTest.php | 23 +++++++++++---------- 2 files changed, 39 insertions(+), 21 deletions(-) (limited to 'tests/plugins') diff --git a/tests/plugins/PluginArchiveorgTest.php b/tests/plugins/PluginArchiveorgTest.php index b9a67adb..9c19752c 100644 --- a/tests/plugins/PluginArchiveorgTest.php +++ b/tests/plugins/PluginArchiveorgTest.php @@ -1,10 +1,12 @@ savedScriptName = $_SERVER['SCRIPT_NAME'] ?? null; + $_SERVER['SCRIPT_NAME'] = '/index.php'; + } + + public function tearDown(): void + { + unset($_SERVER['SERVER_PORT']); + unset($_SERVER['SERVER_NAME']); + $_SERVER['SCRIPT_NAME'] = $this->savedScriptName; } /** * Test render_linklist hook on external bookmarks. */ - public function testArchiveorgLinklistOnExternalLinks() + public function testArchiveorgLinklistOnExternalLinks(): void { $str = 'http://randomstr.com/test'; @@ -56,16 +73,16 @@ class PluginArchiveorgTest extends \PHPUnit\Framework\TestCase /** * Test render_linklist hook on internal bookmarks. */ - public function testArchiveorgLinklistOnInternalLinks() + public function testArchiveorgLinklistOnInternalLinks(): void { - $internalLink1 = 'http://shaarli.shaarli/?qvMAqg'; - $internalLinkRealURL1 = '?qvMAqg'; + $internalLink1 = 'http://shaarli.shaarli/shaare/qvMAqg'; + $internalLinkRealURL1 = '/shaare/qvMAqg'; - $internalLink2 = 'http://shaarli.shaarli/?2_7zww'; - $internalLinkRealURL2 = '?2_7zww'; + $internalLink2 = 'http://shaarli.shaarli/shaare/2_7zww'; + $internalLinkRealURL2 = '/shaare/2_7zww'; - $internalLink3 = 'http://shaarli.shaarli/?z7u-_Q'; - $internalLinkRealURL3 = '?z7u-_Q'; + $internalLink3 = 'http://shaarli.shaarli/shaare/z7u-_Q'; + $internalLinkRealURL3 = '/shaare/z7u-_Q'; $data = array( 'title' => $internalLink1, diff --git a/tests/plugins/PluginIssoTest.php b/tests/plugins/PluginIssoTest.php index 99477205..2bbb93d2 100644 --- a/tests/plugins/PluginIssoTest.php +++ b/tests/plugins/PluginIssoTest.php @@ -2,6 +2,7 @@ namespace Shaarli\Plugin\Isso; use DateTime; +use PHPUnit\Framework\TestCase; use Shaarli\Bookmark\Bookmark; use Shaarli\Config\ConfigManager; use Shaarli\Plugin\PluginManager; @@ -13,12 +14,12 @@ require_once 'plugins/isso/isso.php'; * * Test the Isso plugin (comment system). */ -class PluginIssoTest extends \PHPUnit\Framework\TestCase +class PluginIssoTest extends TestCase { /** * Reset plugin path */ - public function setUp() + public function setUp(): void { PluginManager::$PLUGINS_PATH = 'plugins'; } @@ -26,7 +27,7 @@ class PluginIssoTest extends \PHPUnit\Framework\TestCase /** * Test Isso init without errors. */ - public function testIssoInitNoError() + public function testIssoInitNoError(): void { $conf = new ConfigManager(''); $conf->set('plugins.ISSO_SERVER', 'value'); @@ -37,7 +38,7 @@ class PluginIssoTest extends \PHPUnit\Framework\TestCase /** * Test Isso init with errors. */ - public function testIssoInitError() + public function testIssoInitError(): void { $conf = new ConfigManager(''); $errors = isso_init($conf); @@ -47,7 +48,7 @@ class PluginIssoTest extends \PHPUnit\Framework\TestCase /** * Test render_linklist hook with valid settings to display the comment form. */ - public function testIssoDisplayed() + public function testIssoDisplayed(): void { $conf = new ConfigManager(''); $conf->set('plugins.ISSO_SERVER', 'value'); @@ -87,7 +88,7 @@ class PluginIssoTest extends \PHPUnit\Framework\TestCase /** * Test isso plugin when multiple bookmarks are displayed (shouldn't be displayed). */ - public function testIssoMultipleLinks() + public function testIssoMultipleLinks(): void { $conf = new ConfigManager(''); $conf->set('plugins.ISSO_SERVER', 'value'); @@ -115,14 +116,14 @@ class PluginIssoTest extends \PHPUnit\Framework\TestCase $processed = hook_isso_render_linklist($data, $conf); // link_plugin should be added for the icon - $this->assertContains('', $processed['links'][0]['link_plugin'][0]); - $this->assertContains('', $processed['links'][1]['link_plugin'][0]); + $this->assertContains('', $processed['links'][0]['link_plugin'][0]); + $this->assertContains('', $processed['links'][1]['link_plugin'][0]); } /** * Test isso plugin when using search (shouldn't be displayed). */ - public function testIssoNotDisplayedWhenSearch() + public function testIssoNotDisplayedWhenSearch(): void { $conf = new ConfigManager(''); $conf->set('plugins.ISSO_SERVER', 'value'); @@ -145,13 +146,13 @@ class PluginIssoTest extends \PHPUnit\Framework\TestCase $processed = hook_isso_render_linklist($data, $conf); // link_plugin should be added for the icon - $this->assertContains('', $processed['links'][0]['link_plugin'][0]); + $this->assertContains('', $processed['links'][0]['link_plugin'][0]); } /** * Test isso plugin without server configuration (shouldn't be displayed). */ - public function testIssoWithoutConf() + public function testIssoWithoutConf(): void { $data = 'abc'; $conf = new ConfigManager(''); -- cgit v1.2.3