aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/plugins/PluginReadityourselfTest.php
blob: 30470ab72fba4ee9dd6b48089a21fc642398ff3a (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
<?php

/**
 * PluginReadityourselfTest.php.php
 */

require_once 'plugins/readityourself/readityourself.php';

/**
 * Class PluginWallabagTest
 * Unit test for the Wallabag plugin
 */
class PluginReadityourselfTest extends PHPUnit_Framework_TestCase
{
    /**
     * Reset plugin path
     */
    public function setUp()
    {
        PluginManager::$PLUGINS_PATH = 'plugins';
    }

    /**
     * Test Readityourself init without errors.
     */
    public function testReadityourselfInitNoError()
    {
        $conf = new ConfigManager('');
        $conf->set('plugins.READITYOUSELF_URL', 'value');
        $errors = readityourself_init($conf);
        $this->assertEmpty($errors);
    }

    /**
     * Test Readityourself init with errors.
     */
    public function testReadityourselfInitError()
    {
        $conf = new ConfigManager('');
        $errors = readityourself_init($conf);
        $this->assertNotEmpty($errors);
    }

    /**
     * Test render_linklist hook.
     */
    public function testReadityourselfLinklist()
    {
        $conf = new ConfigManager('');
        $conf->set('plugins.READITYOUSELF_URL', 'value');
        $str = 'http://randomstr.com/test';
        $data = array(
            'title' => $str,
            'links' => array(
                array(
                    'url' => $str,
                )
            )
        );

        $data = hook_readityourself_render_linklist($data, $conf);
        $link = $data['links'][0];
        // data shouldn't be altered
        $this->assertEquals($str, $data['title']);
        $this->assertEquals($str, $link['url']);

        // plugin data
        $this->assertEquals(1, count($link['link_plugin']));
        $this->assertNotFalse(strpos($link['link_plugin'][0], $str));
    }

    /**
     * Test without config: nothing should happened.
     */
    public function testReadityourselfLinklistWithoutConfig()
    {
        $conf = new ConfigManager('');
        $conf->set('plugins.READITYOUSELF_URL', null);
        $str = 'http://randomstr.com/test';
        $data = array(
            'title' => $str,
            'links' => array(
                array(
                    'url' => $str,
                )
            )
        );

        $data = hook_readityourself_render_linklist($data, $conf);
        $link = $data['links'][0];
        // data shouldn't be altered
        $this->assertEquals($str, $data['title']);
        $this->assertEquals($str, $link['url']);

        // plugin data
        $this->assertArrayNotHasKey('link_plugin', $link);
    }
}