2009-10-21 00:48:01 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
require_once('MockPress/mockpress.php');
|
|
|
|
require_once('PHPUnit/Framework.php');
|
|
|
|
require_once(dirname(__FILE__) . '/../../widgets/graphical-navigation.php');
|
|
|
|
|
2009-10-21 01:08:17 +00:00
|
|
|
class GraphicalNavigationTest extends PHPUnit_Framework_TestCase {
|
2009-10-22 00:11:22 +00:00
|
|
|
function setUp() {
|
|
|
|
_reset_wp();
|
2009-10-23 01:53:57 +00:00
|
|
|
$this->w = new WidgetComicPressGraphicalStorylineNavigation();
|
2009-10-22 00:11:22 +00:00
|
|
|
}
|
2009-10-21 00:48:01 +00:00
|
|
|
|
2009-10-22 00:11:22 +00:00
|
|
|
function testUpdateWidget() {
|
|
|
|
$result = $this->w->update(array(
|
2009-10-21 01:08:17 +00:00
|
|
|
"next" => "<b>test</b>",
|
|
|
|
"next_title" => "<b>test</b>",
|
|
|
|
"archive_path" => "<b>test</b>",
|
2009-10-22 00:11:22 +00:00
|
|
|
), array());
|
|
|
|
|
|
|
|
foreach (array(
|
|
|
|
"next" => "on",
|
|
|
|
"next_title" => "test",
|
|
|
|
"archive_path" => "test",
|
|
|
|
) as $field => $expected_value) {
|
|
|
|
$this->assertEquals($expected_value, $result[$field]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function providerTestIsNavLinkVisible() {
|
|
|
|
return array(
|
|
|
|
array('first', 1, 2, true),
|
|
|
|
array('first', 1, 1, false),
|
|
|
|
array('last', 1, 2, true),
|
|
|
|
array('last', 1, 1, false),
|
|
|
|
array('prev', 1, 2, true),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider providerTestIsNavLinkVisible
|
|
|
|
*/
|
|
|
|
function testIsNavLinkVIsible($which, $current_id, $target_id, $expected_result) {
|
|
|
|
$current = (object)array('ID' => $current_id);
|
|
|
|
$target = (object)array('ID' => $target_id);
|
|
|
|
|
|
|
|
$this->assertEquals($expected_result, $this->w->_will_display_nav_link($which, $current, $target));
|
2009-10-21 01:08:17 +00:00
|
|
|
}
|
2009-10-21 00:48:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
?>
|