summaryrefslogtreecommitdiff
path: root/platform/www/lib/plugins/include/_test/pagemove_support.test.php
blob: 58c9425a232df3d35aafda252b96a919fdf147d6 (plain)
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
<?php

/**
 * Tests the move support for adapting the syntax of the include plugin
 *
 * @group plugin_include
 * @group plugins
 */
class plugin_include_pagemove_support_test extends DokuWikiTest {
    public function setUp() : void
    {
        $this->pluginsEnabled[] = 'move';
        $this->pluginsEnabled[] = 'include';
        parent::setUp();
    }

    public function test_relative_include() {
        /** @var $move helper_plugin_move_op */
        $move = plugin_load('helper', 'move_op');
        if (!$move) {
            $this->markTestSkipped('the move plugin is not installed');
            return;
        }
        saveWikiText('editx', '{{page>start#start}} %%{{page>start}}%% {{section>wiki:syntax#tables&nofooter}} {{page>:}} {{section>test:start#test}}', 'Testcase created');
        idx_addPage('editx');
        $this->assertTrue($move->movePage('editx', 'test:editx'));
        $this->assertEquals('{{page>:start#start}} %%{{page>start}}%% {{section>wiki:syntax#tables&nofooter}} {{page>:}} {{section>test:start#test}}',rawWiki('test:editx'));
    }

    public function test_rename() {
        /** @var $move helper_plugin_move_op */
        $move = plugin_load('helper', 'move_op');
        if (!$move) {
            $this->markTestSkipped('the move plugin is not installed');
            return;
        }
        saveWikiText('editx', 'Page to rename', 'Testcase create');
        saveWikiText('links', '{{section>links#foo}} {{page>editx}} {{page>:eDitX&nofooter}} {{section>editx#test}} {{page>editx&nofooter}}', 'Testcase created');
        idx_addPage('editx');
        idx_addPage('links');

        $this->assertTrue($move->movePage('editx', 'test:edit'));
        $this->assertEquals('{{section>links#foo}} {{page>test:edit}} {{page>test:edit&nofooter}} {{section>test:edit#test}} {{page>test:edit&nofooter}}', rawWiki('links'));
    }

    public function test_relative_include_adaption() {
        /** @var $move helper_plugin_move_op */
        $move = plugin_load('helper', 'move_op');
        if (!$move) {
            $this->markTestSkipped('the move plugin is not installed');
            return;
        }

        $text = '====== Main ======

This is a test page

[[.1:page_1|link]]

{{page>.1:page_1&nofooter&noeditbutton}}

{{page>.1:page_2&nofooter&noeditbutton}}';

        saveWikiText('old:namespace:main', $text, 'Created');
        saveWikiText('old:namespace:1:page_1', 'Page 1', 'Created');
        saveWikiText('old:namespace:1:page_2', 'Page 2', 'Created');
        idx_addPage('old:namespace:main');
        idx_addPage('old:namespace:1:page_1');
        idx_addPage('old:namespace:1:page_2');

        $this->assertTrue($move->movePage('old:namespace:main', 'new:namespace:main'));
        $this->assertTrue($move->movePage('old:namespace:1:page_1', 'new:namespace:1:page_1'));
        $this->assertTrue($move->movePage('old:namespace:1:page_2', 'new:namespace:1:page_2'));
        $this->assertEquals($text, rawWiki('new:namespace:main'));
    }
}