comicpress-core/test/ComicPressTagBuilderTest.php

176 lines
4.7 KiB
PHP
Raw Normal View History

2010-01-28 01:21:53 +00:00
<?php
require_once('PHPUnit/Framework.php');
require_once('MockPress/mockpress.php');
require_once(dirname(__FILE__) . '/../classes/ComicPressTagBuilder.inc');
require_once(dirname(__FILE__) . '/../classes/ComicPressStoryline.inc');
class ComicPressTagBuilderTest extends PHPUnit_Framework_TestCase {
function setUp() {
_reset_wp();
}
2010-01-28 03:05:29 +00:00
function testNewFactory() {
$core = new ComicPressTagBuilderFactory();
}
2010-01-28 01:21:53 +00:00
function providerTestBuilder() {
return array(
array(
2010-01-28 03:05:29 +00:00
array(
array('next')
),
2010-01-28 01:21:53 +00:00
array('get_next_post', array(1,2,3,4,5), 'current-post')
2010-01-28 03:05:29 +00:00
),
array(
array(
array('previous'),
),
array('get_previous_post', array(1,2,3,4,5), 'current-post')
),
array(
array(
array('first'),
),
array('get_first_post', array(1,2,3,4,5), 'current-post')
),
array(
array(
array('last'),
),
array('get_last_post', array(1,2,3,4,5), 'current-post')
),
array(
array(
array('in', 'category-1'),
array('last')
),
array('get_last_post', array(1), 'current-post')
),
array(
array(
array('in', 2),
array('first')
),
array('get_first_post', array(2,3,4), 'current-post')
),
2010-01-28 01:21:53 +00:00
);
}
/**
* @dataProvider providerTestBuilder
*/
function testStorylineBuilder($instructions, $expected_dbi_call) {
2010-01-28 03:05:29 +00:00
global $post, $wp_test_expectations;
2010-01-28 01:21:53 +00:00
$post = 'current-post';
$method = array_shift($expected_dbi_call);
$dbi = $this->getMock('ComicPressDBInterface', array($method));
$expectation = $dbi->expects($this->once())->method($method);
call_user_func_array(array($expectation, 'with'), $expected_dbi_call);
$core = new ComicPressTagBuilderFactory($dbi);
$storyline = new ComicPressStoryline();
$storyline->set_flattened_storyline('0/1,0/2,0/2/3,0/2/4,0/5');
foreach (array(
2010-01-28 03:05:29 +00:00
1 => array('cat_name' => 'Test 1', 'category_nicename' => 'category-1', 'category_parent' => 0),
2 => array('cat_name' => 'Test 2', 'category_nicename' => 'category-2', 'category_parent' => 0),
3 => array('cat_name' => 'Test 3', 'category_nicename' => 'category-3', 'category_parent' => 2),
4 => array('cat_name' => 'Test 4', 'category_nicename' => 'category-4', 'category_parent' => 2),
5 => array('cat_name' => 'Test 5', 'category_nicename' => 'category-5', 'category_parent' => 0),
) as $id => $category) {
add_category($id, (object)$category);
2010-01-28 01:21:53 +00:00
}
foreach ($instructions as $instruction) {
2010-01-28 03:05:29 +00:00
$method = array_shift($instruction);
$core = call_user_func_array(array($core, $method), $instruction);
2010-01-28 01:21:53 +00:00
}
}
2010-01-30 15:54:23 +00:00
function providerTestStorylineBuilderHandlePost() {
return array(
array('id', 1),
array('title', 'Post title'),
array('timestamp', strtotime('2010-01-01')),
2010-01-30 15:55:39 +00:00
array('permalink', 'the-slug'),
array('post', (object)array(
'ID' => 1,
'post_title' => 'Post title',
'post_date' => '2010-01-01',
'guid' => 'the-slug',
))
2010-01-30 15:54:23 +00:00
);
}
/**
* @dataProvider providerTestStorylineBuilderHandlePost
*/
function testStorylineBuilderHandlePost($info_method, $expected_result) {
$target_post = (object)array(
'ID' => 1,
'post_title' => 'Post title',
'post_date' => '2010-01-01',
'guid' => 'the-slug',
);
wp_insert_post($target_post);
$dbi = $this->getMock('ComicPressDBInterface', array('get_first_post'));
$dbi->expects($this->once())->method('get_first_post')->with(array('1'))->will($this->returnValue($target_post));
$storyline = new ComicPressStoryline();
$storyline->set_flattened_storyline('0/1');
$core = new ComicPressTagBuilderFactory($dbi);
$core = $core->first_in_1();
$this->assertEquals($expected_result, $core->{$info_method}());
}
function providerTestMethodParser() {
return array(
array(
'last',
array(
array('last')
)
),
array(
'first_in_3',
array(
array('in', 3),
array('first')
)
),
array(
'first_in_category_1',
array(
array('in', 'category-1'),
array('first')
)
)
);
}
/**
* @dataProvider providerTestMethodParser
*/
function testMethodParser($method_name, $expected_pieces) {
foreach (array(
1 => array('cat_name' => 'Test 1', 'category_nicename' => 'category-1', 'category_parent' => 0),
2 => array('cat_name' => 'Test 2', 'category_nicename' => 'category-2', 'category_parent' => 0),
3 => array('cat_name' => 'Test 3', 'category_nicename' => 'category-3', 'category_parent' => 2),
4 => array('cat_name' => 'Test 4', 'category_nicename' => 'category-4', 'category_parent' => 2),
5 => array('cat_name' => 'Test 5', 'category_nicename' => 'category-5', 'category_parent' => 0),
) as $id => $category) {
add_category($id, (object)$category);
}
$this->assertEquals($expected_pieces, ComicPressTagBuilder::parse_method($method_name));
}
2010-01-28 01:21:53 +00:00
}