aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/PluginManagerTest.php
blob: 75b3ae0082138568d753b8b9ab5cfc75b2286be3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
<?php

namespace Shaarli\Plugin;

use Shaarli\Bookmark\Bookmark;
use Shaarli\Config\ConfigManager;

/**
 * Unit tests for Plugins
 */
class PluginManagerTest extends \Shaarli\TestCase
{
    /**
     * Path to tests plugin.
     * @var string $pluginPath
     */
    private static $pluginPath = 'tests/plugins';

    /**
     * Test plugin.
     * @var string $pluginName
     */
    private static $pluginName = 'test';

    /**
     * @var PluginManager $pluginManager Plugin Mananger instance.
     */
    protected $pluginManager;

    public function setUp(): void
    {
        $conf = new ConfigManager('');
        $this->pluginManager = new PluginManager($conf);
    }

    /**
     * Test plugin loading and hook execution.
     */
    public function testPlugin(): void
    {
        PluginManager::$PLUGINS_PATH = self::$pluginPath;
        $this->pluginManager->load(array(self::$pluginName));

        $this->assertTrue(function_exists('hook_test_random'));

        $data = [0 => 'woot'];
        $this->pluginManager->executeHooks('random', $data);

        static::assertCount(2, $data);
        static::assertSame('woot', $data[1]);

        $data = [0 => 'woot'];
        $this->pluginManager->executeHooks('random', $data, array('target' => 'test'));

        static::assertCount(2, $data);
        static::assertSame('page test', $data[1]);

        $data = [0 => 'woot'];
        $this->pluginManager->executeHooks('random', $data, array('loggedin' => true));

        static::assertCount(2, $data);
        static::assertEquals('loggedin', $data[1]);

        $data = [0 => 'woot'];
        $this->pluginManager->executeHooks('random', $data, array('loggedin' => null));

        static::assertCount(3, $data);
        static::assertEquals('loggedin', $data[1]);
        static::assertArrayHasKey(2, $data);
        static::assertNull($data[2]);
    }

    /**
     * Test plugin loading and hook execution with an error: raise an incompatibility error.
     */
    public function testPluginWithPhpError(): void
    {
        PluginManager::$PLUGINS_PATH = self::$pluginPath;
        $this->pluginManager->load(array(self::$pluginName));

        $this->assertTrue(function_exists('hook_test_error'));

        $data = [];
        $this->pluginManager->executeHooks('error', $data);

        $this->assertRegExp(
            '/test \[plugin incompatibility\]: Class [\'"]Unknown[\'"] not found/',
            $this->pluginManager->getErrors()[0]
        );
    }

    /**
     * Test missing plugin loading.
     */
    public function testPluginNotFound(): void
    {
        $this->pluginManager->load([]);
        $this->pluginManager->load(['nope', 'renope']);
        $this->addToAssertionCount(1);
    }

    /**
     * Test plugin metadata loading.
     */
    public function testGetPluginsMeta(): void
    {
        PluginManager::$PLUGINS_PATH = self::$pluginPath;
        $this->pluginManager->load([self::$pluginName]);

        $expectedParameters = [
            'pop' => [
                'value' => '',
                'desc'  => 'pop description',
            ],
            'hip' => [
                'value' => '',
                'desc' => '',
            ],
        ];
        $meta = $this->pluginManager->getPluginsMeta();
        $this->assertEquals('test plugin', $meta[self::$pluginName]['description']);
        $this->assertEquals($expectedParameters, $meta[self::$pluginName]['parameters']);
    }

    /**
     * Test plugin custom routes - note that there is no check on callable functions
     */
    public function testRegisteredRoutes(): void
    {
        PluginManager::$PLUGINS_PATH = self::$pluginPath;
        $this->pluginManager->load([self::$pluginName]);

        $expectedParameters = [
            [
                'method' => 'GET',
                'route' => '/test',
                'callable' => 'getFunction',
            ],
            [
                'method' => 'POST',
                'route' => '/custom',
                'callable' => 'postFunction',
            ],
        ];
        $meta = $this->pluginManager->getRegisteredRoutes();
        static::assertSame($expectedParameters, $meta[self::$pluginName]);
    }

    /**
     * Test plugin custom routes with invalid route
     */
    public function testRegisteredRoutesInvalid(): void
    {
        $plugin = 'test_route_invalid';
        $this->pluginManager->load([$plugin]);

        $meta = $this->pluginManager->getRegisteredRoutes();
        static::assertSame([], $meta);

        $errors = $this->pluginManager->getErrors();
        static::assertSame(['test_route_invalid [plugin incompatibility]: trying to register invalid route.'], $errors);
    }

    public function testSearchFilterPlugin(): void
    {
        PluginManager::$PLUGINS_PATH = self::$pluginPath;
        $this->pluginManager->load([self::$pluginName]);

        static::assertNull($this->pluginManager->getFilterSearchEntryHooks());

        static::assertTrue($this->pluginManager->filterSearchEntry(new Bookmark(), ['_result' => true]));

        static::assertCount(1, $this->pluginManager->getFilterSearchEntryHooks());
        static::assertSame('hook_test_filter_search_entry', $this->pluginManager->getFilterSearchEntryHooks()[0]);

        static::assertFalse($this->pluginManager->filterSearchEntry(new Bookmark(), ['_result' => false]));
    }
}