diff options
author | ArthurHoaro <arthur@hoa.ro> | 2020-09-12 21:41:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-12 21:41:24 +0200 |
commit | 4af591ff3c5db4dea5b6c437527f6f9b12917570 (patch) | |
tree | 924ab153d4ae4609e0c073775874f9f11d84d0dc /tests | |
parent | e809908f9e593b2cec11f72849caa1dae6394451 (diff) | |
parent | 4ff703e3691e6cb398e8d208c1f54ed61315e0e8 (diff) | |
download | Shaarli-4af591ff3c5db4dea5b6c437527f6f9b12917570.tar.gz Shaarli-4af591ff3c5db4dea5b6c437527f6f9b12917570.tar.zst Shaarli-4af591ff3c5db4dea5b6c437527f6f9b12917570.zip |
Merge pull request #1551 from ArthurHoaro/fix/plugin-save-metadata
Plugins: do not save metadata along plugin parameters
Diffstat (limited to 'tests')
-rw-r--r-- | tests/PluginManagerTest.php | 44 | ||||
-rw-r--r-- | tests/front/controller/admin/PluginsControllerTest.php | 5 | ||||
-rw-r--r-- | tests/plugins/test/test.php | 3 |
3 files changed, 35 insertions, 17 deletions
diff --git a/tests/PluginManagerTest.php b/tests/PluginManagerTest.php index a5d5dbe9..3018999c 100644 --- a/tests/PluginManagerTest.php +++ b/tests/PluginManagerTest.php | |||
@@ -41,17 +41,31 @@ class PluginManagerTest extends \PHPUnit\Framework\TestCase | |||
41 | 41 | ||
42 | $this->assertTrue(function_exists('hook_test_random')); | 42 | $this->assertTrue(function_exists('hook_test_random')); |
43 | 43 | ||
44 | $data = array(0 => 'woot'); | 44 | $data = [0 => 'woot']; |
45 | $this->pluginManager->executeHooks('random', $data); | 45 | $this->pluginManager->executeHooks('random', $data); |
46 | $this->assertEquals('woot', $data[1]); | ||
47 | 46 | ||
48 | $data = array(0 => 'woot'); | 47 | static::assertCount(2, $data); |
48 | static::assertSame('woot', $data[1]); | ||
49 | |||
50 | $data = [0 => 'woot']; | ||
49 | $this->pluginManager->executeHooks('random', $data, array('target' => 'test')); | 51 | $this->pluginManager->executeHooks('random', $data, array('target' => 'test')); |
50 | $this->assertEquals('page test', $data[1]); | ||
51 | 52 | ||
52 | $data = array(0 => 'woot'); | 53 | static::assertCount(2, $data); |
54 | static::assertSame('page test', $data[1]); | ||
55 | |||
56 | $data = [0 => 'woot']; | ||
53 | $this->pluginManager->executeHooks('random', $data, array('loggedin' => true)); | 57 | $this->pluginManager->executeHooks('random', $data, array('loggedin' => true)); |
54 | $this->assertEquals('loggedin', $data[1]); | 58 | |
59 | static::assertCount(2, $data); | ||
60 | static::assertEquals('loggedin', $data[1]); | ||
61 | |||
62 | $data = [0 => 'woot']; | ||
63 | $this->pluginManager->executeHooks('random', $data, array('loggedin' => null)); | ||
64 | |||
65 | static::assertCount(3, $data); | ||
66 | static::assertEquals('loggedin', $data[1]); | ||
67 | static::assertArrayHasKey(2, $data); | ||
68 | static::assertNull($data[2]); | ||
55 | } | 69 | } |
56 | 70 | ||
57 | /** | 71 | /** |
@@ -78,8 +92,8 @@ class PluginManagerTest extends \PHPUnit\Framework\TestCase | |||
78 | */ | 92 | */ |
79 | public function testPluginNotFound(): void | 93 | public function testPluginNotFound(): void |
80 | { | 94 | { |
81 | $this->pluginManager->load(array()); | 95 | $this->pluginManager->load([]); |
82 | $this->pluginManager->load(array('nope', 'renope')); | 96 | $this->pluginManager->load(['nope', 'renope']); |
83 | $this->addToAssertionCount(1); | 97 | $this->addToAssertionCount(1); |
84 | } | 98 | } |
85 | 99 | ||
@@ -89,18 +103,18 @@ class PluginManagerTest extends \PHPUnit\Framework\TestCase | |||
89 | public function testGetPluginsMeta(): void | 103 | public function testGetPluginsMeta(): void |
90 | { | 104 | { |
91 | PluginManager::$PLUGINS_PATH = self::$pluginPath; | 105 | PluginManager::$PLUGINS_PATH = self::$pluginPath; |
92 | $this->pluginManager->load(array(self::$pluginName)); | 106 | $this->pluginManager->load([self::$pluginName]); |
93 | 107 | ||
94 | $expectedParameters = array( | 108 | $expectedParameters = [ |
95 | 'pop' => array( | 109 | 'pop' => [ |
96 | 'value' => '', | 110 | 'value' => '', |
97 | 'desc' => 'pop description', | 111 | 'desc' => 'pop description', |
98 | ), | 112 | ], |
99 | 'hip' => array( | 113 | 'hip' => [ |
100 | 'value' => '', | 114 | 'value' => '', |
101 | 'desc' => '', | 115 | 'desc' => '', |
102 | ), | 116 | ], |
103 | ); | 117 | ]; |
104 | $meta = $this->pluginManager->getPluginsMeta(); | 118 | $meta = $this->pluginManager->getPluginsMeta(); |
105 | $this->assertEquals('test plugin', $meta[self::$pluginName]['description']); | 119 | $this->assertEquals('test plugin', $meta[self::$pluginName]['description']); |
106 | $this->assertEquals($expectedParameters, $meta[self::$pluginName]['parameters']); | 120 | $this->assertEquals($expectedParameters, $meta[self::$pluginName]['parameters']); |
diff --git a/tests/front/controller/admin/PluginsControllerTest.php b/tests/front/controller/admin/PluginsControllerTest.php index 5b59285c..9526474c 100644 --- a/tests/front/controller/admin/PluginsControllerTest.php +++ b/tests/front/controller/admin/PluginsControllerTest.php | |||
@@ -32,7 +32,7 @@ class PluginsControllerTest extends TestCase | |||
32 | array_map(function (string $plugin) use ($path) { touch($path . '/' . $plugin); }, static::PLUGIN_NAMES); | 32 | array_map(function (string $plugin) use ($path) { touch($path . '/' . $plugin); }, static::PLUGIN_NAMES); |
33 | } | 33 | } |
34 | 34 | ||
35 | public function tearDown() | 35 | public function tearDown(): void |
36 | { | 36 | { |
37 | $path = __DIR__ . '/folder'; | 37 | $path = __DIR__ . '/folder'; |
38 | array_map(function (string $plugin) use ($path) { unlink($path . '/' . $plugin); }, static::PLUGIN_NAMES); | 38 | array_map(function (string $plugin) use ($path) { unlink($path . '/' . $plugin); }, static::PLUGIN_NAMES); |
@@ -125,6 +125,7 @@ class PluginsControllerTest extends TestCase | |||
125 | 'parameters_form' => true, | 125 | 'parameters_form' => true, |
126 | 'parameter1' => 'blip', | 126 | 'parameter1' => 'blip', |
127 | 'parameter2' => 'blop', | 127 | 'parameter2' => 'blop', |
128 | 'token' => 'this parameter should not be saved' | ||
128 | ]; | 129 | ]; |
129 | 130 | ||
130 | $request = $this->createMock(Request::class); | 131 | $request = $this->createMock(Request::class); |
@@ -143,7 +144,7 @@ class PluginsControllerTest extends TestCase | |||
143 | ->with('save_plugin_parameters', $parameters) | 144 | ->with('save_plugin_parameters', $parameters) |
144 | ; | 145 | ; |
145 | $this->container->conf | 146 | $this->container->conf |
146 | ->expects(static::atLeastOnce()) | 147 | ->expects(static::exactly(2)) |
147 | ->method('set') | 148 | ->method('set') |
148 | ->withConsecutive(['plugins.parameter1', 'blip'], ['plugins.parameter2', 'blop']) | 149 | ->withConsecutive(['plugins.parameter1', 'blip'], ['plugins.parameter2', 'blop']) |
149 | ; | 150 | ; |
diff --git a/tests/plugins/test/test.php b/tests/plugins/test/test.php index ae5032dd..03be4f4e 100644 --- a/tests/plugins/test/test.php +++ b/tests/plugins/test/test.php | |||
@@ -13,6 +13,9 @@ function hook_test_random($data) | |||
13 | $data[1] = 'page test'; | 13 | $data[1] = 'page test'; |
14 | } elseif (isset($data['_LOGGEDIN_']) && $data['_LOGGEDIN_'] === true) { | 14 | } elseif (isset($data['_LOGGEDIN_']) && $data['_LOGGEDIN_'] === true) { |
15 | $data[1] = 'loggedin'; | 15 | $data[1] = 'loggedin'; |
16 | } elseif (array_key_exists('_LOGGEDIN_', $data)) { | ||
17 | $data[1] = 'loggedin'; | ||
18 | $data[2] = $data['_LOGGEDIN_']; | ||
16 | } else { | 19 | } else { |
17 | $data[1] = $data[0]; | 20 | $data[1] = $data[0]; |
18 | } | 21 | } |