2015-11-07 16:13:08 +01:00
|
|
|
<?php
|
2018-12-04 23:17:23 +01:00
|
|
|
namespace Shaarli\Plugin\Qrcode;
|
|
|
|
|
2015-11-07 16:13:08 +01:00
|
|
|
/**
|
2017-01-05 19:33:06 +01:00
|
|
|
* PluginQrcodeTest.php
|
2015-11-07 16:13:08 +01:00
|
|
|
*/
|
|
|
|
|
2018-12-04 00:26:50 +01:00
|
|
|
use Shaarli\Plugin\PluginManager;
|
2018-12-04 00:02:17 +01:00
|
|
|
use Shaarli\Router;
|
|
|
|
|
2015-11-07 16:13:08 +01:00
|
|
|
require_once 'plugins/qrcode/qrcode.php';
|
|
|
|
|
|
|
|
/**
|
2017-01-05 19:33:06 +01:00
|
|
|
* Class PluginQrcodeTest
|
2015-11-07 16:13:08 +01:00
|
|
|
* Unit test for the QR-Code plugin
|
|
|
|
*/
|
2018-12-04 23:17:23 +01:00
|
|
|
class PluginQrcodeTest extends \PHPUnit\Framework\TestCase
|
2015-11-07 16:13:08 +01:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Reset plugin path
|
|
|
|
*/
|
2018-10-13 00:35:47 +02:00
|
|
|
public function setUp()
|
|
|
|
{
|
2015-11-07 16:13:08 +01:00
|
|
|
PluginManager::$PLUGINS_PATH = 'plugins';
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test render_linklist hook.
|
|
|
|
*/
|
2017-01-05 19:33:06 +01:00
|
|
|
public function testQrcodeLinklist()
|
2015-11-07 16:13:08 +01:00
|
|
|
{
|
|
|
|
$str = 'http://randomstr.com/test';
|
|
|
|
$data = array(
|
|
|
|
'title' => $str,
|
|
|
|
'links' => array(
|
|
|
|
array(
|
2015-12-22 10:24:31 +01:00
|
|
|
'url' => $str,
|
2015-11-07 16:13:08 +01:00
|
|
|
)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
$data = hook_qrcode_render_linklist($data);
|
|
|
|
$link = $data['links'][0];
|
|
|
|
// data shouldn't be altered
|
|
|
|
$this->assertEquals($str, $data['title']);
|
2015-12-22 10:24:31 +01:00
|
|
|
$this->assertEquals($str, $link['url']);
|
2015-11-07 16:13:08 +01:00
|
|
|
|
|
|
|
// plugin data
|
|
|
|
$this->assertEquals(1, count($link['link_plugin']));
|
|
|
|
$this->assertNotFalse(strpos($link['link_plugin'][0], $str));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test render_footer hook.
|
|
|
|
*/
|
2017-01-05 19:33:06 +01:00
|
|
|
public function testQrcodeFooter()
|
2015-11-07 16:13:08 +01:00
|
|
|
{
|
|
|
|
$str = 'stuff';
|
|
|
|
$data = array($str => $str);
|
|
|
|
$data['_PAGE_'] = Router::$PAGE_LINKLIST;
|
|
|
|
|
|
|
|
$data = hook_qrcode_render_footer($data);
|
|
|
|
$this->assertEquals($str, $data[$str]);
|
|
|
|
$this->assertEquals(1, count($data['js_files']));
|
|
|
|
|
|
|
|
$data = array($str => $str);
|
|
|
|
$data['_PAGE_'] = $str;
|
|
|
|
$this->assertEquals($str, $data[$str]);
|
|
|
|
$this->assertArrayNotHasKey('js_files', $data);
|
|
|
|
}
|
|
|
|
}
|