Merge pull request #417 from ArthurHoaro/wallabag-improve
Wallabag plugin improvement
This commit is contained in:
commit
defc8a3f03
9 changed files with 194 additions and 11 deletions
tests/plugins
|
@ -44,6 +44,8 @@ class PluginWallabagTest extends PHPUnit_Framework_TestCase
|
|||
|
||||
// plugin data
|
||||
$this->assertEquals(1, count($link['link_plugin']));
|
||||
$this->assertNotFalse(strpos($link['link_plugin'][0], $str));
|
||||
$this->assertNotFalse(strpos($link['link_plugin'][0], urlencode($str)));
|
||||
$this->assertNotFalse(strpos($link['link_plugin'][0], $GLOBALS['plugins']['WALLABAG_URL']));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
60
tests/plugins/WallabagInstanceTest.php
Normal file
60
tests/plugins/WallabagInstanceTest.php
Normal file
|
@ -0,0 +1,60 @@
|
|||
<?php
|
||||
|
||||
require_once 'plugins/wallabag/WallabagInstance.php';
|
||||
|
||||
/**
|
||||
* Class WallabagInstanceTest
|
||||
*/
|
||||
class WallabagInstanceTest extends PHPUnit_Framework_TestCase
|
||||
{
|
||||
/**
|
||||
* @var string wallabag url.
|
||||
*/
|
||||
private $instance;
|
||||
|
||||
/**
|
||||
* Reset plugin path
|
||||
*/
|
||||
function setUp()
|
||||
{
|
||||
$this->instance = 'http://some.url';
|
||||
}
|
||||
|
||||
/**
|
||||
* Test WallabagInstance with API V1.
|
||||
*/
|
||||
function testWallabagInstanceV1()
|
||||
{
|
||||
$instance = new WallabagInstance($this->instance, 1);
|
||||
$expected = $this->instance . '/?plainurl=';
|
||||
$result = $instance->getWallabagUrl();
|
||||
$this->assertEquals($expected, $result);
|
||||
}
|
||||
|
||||
/**
|
||||
* Test WallabagInstance with API V2.
|
||||
*/
|
||||
function testWallabagInstanceV2()
|
||||
{
|
||||
$instance = new WallabagInstance($this->instance, 2);
|
||||
$expected = $this->instance . '/bookmarklet?url=';
|
||||
$result = $instance->getWallabagUrl();
|
||||
$this->assertEquals($expected, $result);
|
||||
}
|
||||
|
||||
/**
|
||||
* Test WallabagInstance with an invalid API version.
|
||||
*/
|
||||
function testWallabagInstanceInvalidVersion()
|
||||
{
|
||||
$instance = new WallabagInstance($this->instance, false);
|
||||
$expected = $this->instance . '/?plainurl=';
|
||||
$result = $instance->getWallabagUrl();
|
||||
$this->assertEquals($expected, $result);
|
||||
|
||||
$instance = new WallabagInstance($this->instance, 3);
|
||||
$expected = $this->instance . '/?plainurl=';
|
||||
$result = $instance->getWallabagUrl();
|
||||
$this->assertEquals($expected, $result);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue