comicpress-core/test/backends/ComicPressBackendFilesystem...

124 lines
4.4 KiB
PHP
Raw Normal View History

2009-11-24 12:52:53 +00:00
<?php
require_once('PHPUnit/Framework.php');
require_once('MockPress/mockpress.php');
require_once('backends/ComicPressBackendFilesystem.inc');
2009-11-25 00:33:16 +00:00
require_once('ComicPress.inc');
2009-11-24 12:52:53 +00:00
require_once('vfsStream/vfsStream.php');
class ComicPressBackendFilesystemTest extends PHPUnit_Framework_TestCase {
function setUp() {
_reset_wp();
$this->fs = new ComicPressBackendFilesystem();
2009-11-25 00:19:53 +00:00
vfsStreamWrapper::register();
vfsStreamWrapper::setRoot(new vfsStreamDirectory('root'));
2009-11-24 12:52:53 +00:00
}
function providerTestProcessSearchString() {
return array(
array('/comic/*.jpg', array('/comic/*.jpg')),
array('%wordpress%/comic/*.jpg', array('/wordpress/comic/*.jpg')),
2009-11-24 23:49:32 +00:00
array('%test%/comic/*.jpg', array('/comic/*.jpg')),
2009-11-24 12:52:53 +00:00
array('%wordpress%/%type%/*.jpg', array('/wordpress/comic/*.jpg')),
array('%wordpress%/comic/%y-m-d%*.jpg', array('/wordpress/comic/2009-01-01*.jpg')),
array('%wordpress%/comic/%year%/%y-m-d%*.jpg', array('/wordpress/comic/2009/2009-01-01*.jpg')),
array(
'%wordpress%/comic/%categories%/%y-m-d%*.jpg',
array(
'/wordpress/comic/parent/child/2009-01-01*.jpg',
'/wordpress/comic/parent/2009-01-01*.jpg',
)
),
2009-11-24 23:49:32 +00:00
array(
'%wordpress%/comic/%categories%/%y-m-d%*.jpg',
array(
'/wordpress/comic//2009-01-01*.jpg',
),
2
),
2009-11-24 12:52:53 +00:00
);
}
/**
* @dataProvider providerTestProcessSearchString
*/
2009-11-24 23:49:32 +00:00
function testProcessSearchString($string, $expected_searches, $post_id_to_use = 1) {
2009-11-24 12:52:53 +00:00
$fs = $this->getMock('ComicPressBackendFilesystem', array('_replace_wordpress'));
$fs->expects($this->any())->method('_replace_wordpress')->will($this->returnValue('/wordpress'));
2009-11-24 23:49:32 +00:00
$posts = array(
1 => (object)array('ID' => 1, 'post_date' => '2009-01-01'),
2 => (object)array('ID' => 2, 'post_date' => '2009-01-01'),
);
2009-11-24 12:52:53 +00:00
add_category(1, (object)array('slug' => 'parent', 'parent' => 0));
add_category(2, (object)array('slug' => 'child', 'parent' => 1));
2009-11-24 23:49:32 +00:00
add_category(4, (object)array('slug' => 'bad', 'parent' => 3));
2009-11-24 12:52:53 +00:00
wp_set_post_categories(1, array(2));
2009-11-24 23:49:32 +00:00
wp_set_post_categories(2, array(4));
2009-11-24 12:52:53 +00:00
$fs->search_string = $string;
2009-11-24 23:49:32 +00:00
$this->assertEquals($expected_searches, $fs->process_search_string($posts[$post_id_to_use], 'comic'));
2009-11-24 12:52:53 +00:00
}
2009-11-25 00:19:53 +00:00
function providerTestFindMatchingFiles() {
return array(
array(array('/blah'), false),
array(array('/comic/2008-01-01.jpg'), false),
array(array('/comic/2009-01-01.jpg'), vfsStream::url('root/comic/2009-01-01.jpg')),
array(array('/comic/2009-01-01-test.jpg'), vfsStream::url('root/comic/2009-01-01-test.jpg')),
);
}
/**
* @dataProvider providerTestFindMatchingFiles
*/
function testFindMatchingFiles($filesystem_layout, $expected_match) {
foreach ($filesystem_layout as $file) {
$parts = pathinfo($file);
mkdir(vfsStream::url("root{$parts['dirname']}"), 0666, true);
file_put_contents(vfsStream::url("root${file}"), 'test');
}
wp_set_post_categories(1, array(2));
$this->assertEquals($expected_match, $this->fs->find_matching_files(array(vfsStream::url('root/comic/2009-01-01*.jpg'))));
}
2009-11-25 00:33:16 +00:00
2009-11-25 01:38:36 +00:00
function testUpdateFilesystemPostMeta() {
$this->markTestIncomplete();
}
2009-11-25 00:33:16 +00:00
function testGenerateFromPost() {
$post = (object)array('ID' => 1);
$comicpress = ComicPress::get_instance();
$comicpress->comicpress_options['image_types'] = array(
'comic' => array(),
'rss' => array()
);
2009-11-25 00:34:19 +00:00
$comicpress->comicpress_options['backend_options']['filesystem']['search_pattern'] = 'test';
2009-11-25 00:33:16 +00:00
$fs = $this->getMock('ComicPressBackendFilesystem', array('process_search_string', 'find_matching_files'));
$fs->expects($this->at(0))->method('process_search_string')->with($post, 'comic')->will($this->returnValue(array('comic')));
$fs->expects($this->at(1))->method('find_matching_files')->with(array('comic'))->will($this->returnValue('comic'));
$fs->expects($this->at(2))->method('process_search_string')->with($post, 'rss')->will($this->returnValue(array('rss')));
$fs->expects($this->at(3))->method('find_matching_files')->with(array('rss'))->will($this->returnValue('rss'));
$return = $fs->generate_from_post($post);
$this->assertEquals(2, count($return));
2009-11-25 00:36:12 +00:00
$this->assertEquals('filesystem-1-' . md5('comic'), $return[0]->id);
$this->assertEquals('filesystem-1-' . md5('rss'), $return[1]->id);
2009-11-25 00:33:16 +00:00
$this->assertEquals('comic', $return[0]->type);
$this->assertEquals('rss', $return[1]->type);
$this->assertEquals('comic', $return[0]->filepath);
$this->assertEquals('rss', $return[1]->filepath);
}
2009-11-24 12:52:53 +00:00
}