]> git.immae.eu Git - github/shaarli/Shaarli.git/blame - tests/plugins/PluginReadityourselfTest.php
application: introduce the Shaarli\Config namespace
[github/shaarli/Shaarli.git] / tests / plugins / PluginReadityourselfTest.php
CommitLineData
b11c8f25 1<?php
3c66e564 2use Shaarli\Config\ConfigManager;
b11c8f25
A
3
4/**
5 * PluginReadityourselfTest.php.php
6 */
7
8require_once 'plugins/readityourself/readityourself.php';
9
10/**
11 * Class PluginWallabagTest
12 * Unit test for the Wallabag plugin
13 */
14class PluginReadityourselfTest extends PHPUnit_Framework_TestCase
15{
16 /**
17 * Reset plugin path
18 */
93b1fe54 19 public function setUp()
b11c8f25
A
20 {
21 PluginManager::$PLUGINS_PATH = 'plugins';
22 }
23
7fde6de1
A
24 /**
25 * Test Readityourself init without errors.
26 */
93b1fe54 27 public function testReadityourselfInitNoError()
7fde6de1
A
28 {
29 $conf = new ConfigManager('');
30 $conf->set('plugins.READITYOUSELF_URL', 'value');
31 $errors = readityourself_init($conf);
32 $this->assertEmpty($errors);
33 }
34
35 /**
36 * Test Readityourself init with errors.
37 */
93b1fe54 38 public function testReadityourselfInitError()
7fde6de1
A
39 {
40 $conf = new ConfigManager('');
41 $errors = readityourself_init($conf);
42 $this->assertNotEmpty($errors);
43 }
44
b11c8f25
A
45 /**
46 * Test render_linklist hook.
47 */
93b1fe54 48 public function testReadityourselfLinklist()
b11c8f25 49 {
51def0d8 50 $conf = new ConfigManager('');
eeea1c3d 51 $conf->set('plugins.READITYOUSELF_URL', 'value');
b11c8f25
A
52 $str = 'http://randomstr.com/test';
53 $data = array(
54 'title' => $str,
55 'links' => array(
56 array(
57 'url' => $str,
58 )
59 )
60 );
61
51def0d8 62 $data = hook_readityourself_render_linklist($data, $conf);
b11c8f25
A
63 $link = $data['links'][0];
64 // data shouldn't be altered
65 $this->assertEquals($str, $data['title']);
66 $this->assertEquals($str, $link['url']);
67
68 // plugin data
69 $this->assertEquals(1, count($link['link_plugin']));
70 $this->assertNotFalse(strpos($link['link_plugin'][0], $str));
71 }
72
73 /**
74 * Test without config: nothing should happened.
75 */
93b1fe54 76 public function testReadityourselfLinklistWithoutConfig()
b11c8f25 77 {
51def0d8 78 $conf = new ConfigManager('');
eeea1c3d 79 $conf->set('plugins.READITYOUSELF_URL', null);
b11c8f25
A
80 $str = 'http://randomstr.com/test';
81 $data = array(
82 'title' => $str,
83 'links' => array(
84 array(
85 'url' => $str,
86 )
87 )
88 );
89
51def0d8 90 $data = hook_readityourself_render_linklist($data, $conf);
b11c8f25
A
91 $link = $data['links'][0];
92 // data shouldn't be altered
93 $this->assertEquals($str, $data['title']);
94 $this->assertEquals($str, $link['url']);
95
96 // plugin data
97 $this->assertArrayNotHasKey('link_plugin', $link);
98 }
99}