backend url

This commit is contained in:
John Bintz 2009-11-26 00:19:19 -05:00
parent fbfb1aeb7f
commit 502ecd9696
2 changed files with 108 additions and 0 deletions

View File

@ -0,0 +1,37 @@
<?php
class ComicPressBackendURL extends ComicPressBackend {
function update_post_urls($post, $url_group) {
if (is_numeric($post)) {
$post = get_post($post);
}
if (is_object($post)) {
if (isset($post->ID)) {
$valid_url_groups = array();
if (is_array($url_group)) {
$comicpress = ComicPress::get_instance();
if (($default_type = $comicpress->get_default_image_type()) !== false) {
foreach ($url_group as $key => $urls) {
$key = null;
$valid_urls = array();
if (is_array($urls)) {
foreach ($urls as $type => $url) {
if (isset($comicpress->comicpress_options['image_types'][$type])) {
if (@parse_url($url) !== false) {
$valid_urls[$type] = $url;
if ($type == $default_type) { $key = substr(md5($url), 0, 10); }
}
}
}
}
if (!is_null($key) && !empty($valid_urls)) {
$valid_url_groups[$key] = $valid_urls;
}
}
}
}
update_post_meta($post->ID, 'backend_url_image_urls', $valid_url_groups);
}
}
}
}

View File

@ -0,0 +1,71 @@
<?php
require_once('PHPUnit/Framework.php');
require_once('MockPress/mockpress.php');
require_once('backends/ComicPressBackendURL.inc');
class ComicPressBackendUrlTest extends PHPUnit_Framework_TestCase {
function setUp() {
_reset_wp();
}
function providerTestUpdatePostUrls() {
$key = substr(md5('http://test/test'), 0, 10);
return array(
array(false, array()),
array(array(), array()),
array(array('test' => 'test'), array()),
array(
array(
'test' => array(
'comic' => 'http://test/test',
'rss' => 'http://test/test2',
)
),
array(
$key => array(
'comic' => 'http://test/test',
'rss' => 'http://test/test2'
)
),
)
);
}
/**
* @dataProvider providerTestUpdatePostUrls
*/
function testUpdatePostUrls($urls, $expected_urls) {
$comicpress = ComicPress::get_instance(true);
$comicpress->comicpress_options['image_types'] = array(
'comic' => array('default' => true),
'rss' => array('default' => false),
);
wp_insert_post((object)array('ID' => 1));
ComicPressBackendURL::update_post_urls(1, $urls);
$this->assertEquals($expected_urls, get_post_meta(1, 'backend_url_image_urls', true));
}
function providerTestGenerateFromPost() {
$valid_backend = new ComicPressBackendURL();
$valid_backend->id = 'url-1-12345';
$valid_backend->urls_by_type = array('comic' => 'test');
return array(
array(false, array()),
array(array(), array()),
array(array('12345' => array('comic' => 'test')), array()),
);
}
/**
* @dataProvider providerTestGenerateFromPost
*/
function testGenerateFromPost($metadata, $expected_backends) {
update_post_meta(1, 'backend_url_images', $metadata);
}
}