]> git.immae.eu Git - github/shaarli/Shaarli.git/blob - tests/plugins/PluginWallabagTest.php
Merge pull request #1020 from ArthurHoaro/feature/curl-chunk
[github/shaarli/Shaarli.git] / tests / plugins / PluginWallabagTest.php
1 <?php
2 use Shaarli\Config\ConfigManager;
3
4 /**
5 * PluginWallabagTest.php.php
6 */
7
8 require_once 'plugins/wallabag/wallabag.php';
9
10 /**
11 * Class PluginWallabagTest
12 * Unit test for the Wallabag plugin
13 */
14 class PluginWallabagTest extends PHPUnit_Framework_TestCase
15 {
16 /**
17 * Reset plugin path
18 */
19 public function setUp()
20 {
21 PluginManager::$PLUGINS_PATH = 'plugins';
22 }
23
24 /**
25 * Test wallabag init without errors.
26 */
27 public function testWallabagInitNoError()
28 {
29 $conf = new ConfigManager('');
30 $conf->set('plugins.WALLABAG_URL', 'value');
31 $errors = wallabag_init($conf);
32 $this->assertEmpty($errors);
33 }
34
35 /**
36 * Test wallabag init with errors.
37 */
38 public function testWallabagInitError()
39 {
40 $conf = new ConfigManager('');
41 $errors = wallabag_init($conf);
42 $this->assertNotEmpty($errors);
43 }
44
45 /**
46 * Test render_linklist hook.
47 */
48 public function testWallabagLinklist()
49 {
50 $conf = new ConfigManager('');
51 $conf->set('plugins.WALLABAG_URL', 'value');
52 $str = 'http://randomstr.com/test';
53 $data = array(
54 'title' => $str,
55 'links' => array(
56 array(
57 'url' => $str,
58 )
59 )
60 );
61
62 $data = hook_wallabag_render_linklist($data, $conf);
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], urlencode($str)));
71 $this->assertNotFalse(strpos($link['link_plugin'][0], $conf->get('plugins.WALLABAG_URL')));
72 }
73 }