This commit is contained in:
John Bintz 2010-01-24 21:57:29 -05:00
parent e7bb9f0766
commit 2fda32acab
2 changed files with 75 additions and 2 deletions

View File

@ -1,7 +1,7 @@
<?php
class ComicPressBookmarkWidget extends WP_Widget {
var $text_fields;
var $text_fields, $default_instance;
// @codeCoverageIgnoreStart
function ComicPressBookmarkWidget($skip_widget_init = false) {
@ -164,12 +164,15 @@ class ComicPressBookmarkWidget extends WP_Widget {
global $post;
extract($args, EXTR_SKIP);
$instance = (array)$instance;
$instance = array_merge($this->default_instance, $instance);
echo $before_widget;
$title = empty($instance['title']) ? '' : apply_filters('widget_title', $instance['title']);
if (!empty($title)) { echo $before_title . $title . $after_title; };
$mode = !isset($this->text_fields[$instance['mode']]) ? array_shift(array_keys($this->text_fields)) : $instance['mode'];
$mode = $instance['mode'];
$link = is_home() ? get_bloginfo('url') : get_permalink($post);

View File

@ -79,4 +79,74 @@ class BookmarkWidgetTest extends PHPUnit_Framework_TestCase {
$this->assertEquals(array_merge($w->default_instance, $expected_instance_merge), $w->update($update_array, array()));
}
function providerTestWidget() {
return array(
array(
array(
'title' => 'Title',
'mode' => 'one-button',
'tag-page' => 'Tag page',
'bookmark-clicker-off' => 'Clicker off'
),
array(
'//p[text()="Title"]' => true,
'//div[@class="bookmark-widget"]/a[@class="bookmark-clicker"]' => true,
'//script[contains(text(), "tag-page")]' => false,
'//script[contains(text(), "bookmark-clicker-off")]' => true,
'//script[contains(text(), "Post url")]' => true,
)
),
array(
array(
'title' => 'Other Title',
'mode' => 'three-button',
'tag-page' => 'Tag page',
'bookmark-clicker-off' => 'Clicker off'
),
array(
'//p[text()="Other Title"]' => true,
'//div[@class="bookmark-widget"]/a[@class="tag-page"]' => true,
'//script[contains(text(), "tag-page")]' => true,
'//script[contains(text(), "bookmark-clicker-off")]' => false,
'//script[contains(text(), "Blog url")]' => true,
),
true
),
);
}
/**
* @dataProvider providerTestWidget
*/
function testWidget($instance, $expected_xpath, $is_home = false) {
global $post;
$post = (object)array(
'ID' => 1,
'guid' => 'Post url'
);
wp_insert_post($post);
$w = new ComicPressBookmarkWidget();
_set_bloginfo('url', 'Blog url');
_set_current_option('is_home', $is_home);
ob_start();
$w->widget(array(
'before_widget' => '',
'after_widget' => '',
'before_title' => '<p>',
'after_title' => '</p>'
), $instance);
$content = ob_get_clean();
$this->assertTrue(($xml = _to_xml($content, true)) !== false);
foreach ($expected_xpath as $xpath => $value) {
$this->assertTrue(_xpath_test($xml, $xpath, $value), $xpath);
}
}
}