comicpress-core/test/ComicPressTest.php

99 lines
2.8 KiB
PHP
Raw Normal View History

<?php
require_once('PHPUnit/Framework.php');
require_once('MockPress/mockpress.php');
2009-11-07 17:18:53 +00:00
require_once('ComicPress.inc');
2009-11-07 18:14:33 +00:00
require_once('vfsStream/vfsStream.php');
class ComicPressTest extends PHPUnit_Framework_TestCase {
function setUp() {
_reset_wp();
$this->cp = new ComicPress();
2009-07-29 02:38:20 +00:00
2009-11-07 18:14:33 +00:00
vfsStreamWrapper::register();
vfsStreamWrapper::setRoot(new vfsStreamDirectory('root'));
2009-07-29 02:38:20 +00:00
}
2009-11-07 18:14:33 +00:00
2009-11-07 18:47:08 +00:00
function providerTestCategorySearch() {
return array(
array(
2009-11-07 21:36:57 +00:00
array('comic'), array(vfsStream::url('root/style/comic'))
),
array(
array('chapter-1', 'comic'), array(vfsStream::url('root/style/comic'), vfsStream::url('root/style/comic/chapter-1'))
),
array(
array('part-1', 'chapter-1', 'comic'), array(vfsStream::url('root/style/comic'), vfsStream::url('root/style/comic/chapter-1'), vfsStream::url('root/style/comic/chapter-1/part-1'))
),
array(
array('comic', 'chapter-1'), array()
),
array(
array(), array()
2009-11-07 18:47:08 +00:00
)
);
}
/**
* @dataProvider providerTestCategorySearch
*/
2009-11-07 21:36:57 +00:00
function testCategorySearch($categories, $found_path) {
mkdir(vfsStream::url('root/style/comic/chapter-1/part-1'), 0777, true);
2009-11-07 18:47:08 +00:00
2009-11-07 21:36:57 +00:00
$this->assertEquals($found_path, $this->cp->category_search($categories, vfsStream::url('root/style')));
2009-11-07 18:47:08 +00:00
}
2009-11-07 22:00:14 +00:00
function providerTestFindFile() {
return array(
array(
array(), array(), false,
),
array(
array('root/parent/partials/index.inc'), array(), vfsStream::url('root/parent/partials/index.inc')
),
array(
array(
'root/parent/partials/index.inc',
'root/child/partials/index.inc'
),
array(),
vfsStream::url('root/child/partials/index.inc')
),
array(
array(
'root/child/partials/index.inc',
'root/child/partials/comic/index.inc'
),
array('comic'),
vfsStream::url('root/child/partials/comic/index.inc')
),
array(
array(
'root/child/partials/index.inc',
'root/child/partials/comic/index.inc'
),
array('chapter-1', 'comic'),
vfsStream::url('root/child/partials/comic/index.inc')
)
);
}
/**
* @dataProvider providerTestFindFile
*/
function testFindFile($files_to_setup, $post_categories, $expected_path_result) {
mkdir(vfsStream::url('root/parent/partials/comic/chapter-1'), 0777, true);
mkdir(vfsStream::url('root/child/partials/comic/chapter-1'), 0777, true);
foreach ($files_to_setup as $path) {
file_put_contents(vfsStream::url($path), "test");
}
_set_template_directory(vfsStream::url('root/parent'));
_set_stylesheet_directory(vfsStream::url('root/child'));
$this->assertEquals($expected_path_result, $this->cp->find_file('index.inc', 'partials', $post_categories));
}
}
?>