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')),
|
2009-11-25 21:53:37 +00:00
|
|
|
array('%wordpress%/comic/%ymd%*.jpg', array('/wordpress/comic/20090101*.jpg')),
|
2009-11-24 12:52:53 +00:00
|
|
|
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
|
|
|
|
2009-11-25 22:27:55 +00:00
|
|
|
function providerTestHasCommonFilenamePattern() {
|
|
|
|
return array(
|
|
|
|
array(array('/test/*.jpg', '/test2/*.jpg'), '*.jpg'),
|
|
|
|
array(array('/test/*.jpg', '/test2/*.gif'), false)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider providerTestHasCommonFilenamePattern
|
|
|
|
*/
|
|
|
|
function testHasCommonFilenamePattern($patterns, $expected_result) {
|
|
|
|
$this->assertTrue($expected_result === $this->fs->has_common_filename_pattern($patterns));
|
|
|
|
}
|
|
|
|
|
2009-11-25 00:19:53 +00:00
|
|
|
function providerTestFindMatchingFiles() {
|
|
|
|
return array(
|
2009-11-25 22:27:55 +00:00
|
|
|
array(array('/blah'), array()),
|
|
|
|
array(array('/comic/2008-01-01.jpg'), array()),
|
|
|
|
array(array('/comic/2009-01-01.jpg'), array(vfsStream::url('root/comic/2009-01-01.jpg'))),
|
|
|
|
array(array('/comic/2009-01-01-test.jpg'), array(vfsStream::url('root/comic/2009-01-01-test.jpg'))),
|
2009-11-25 00:19:53 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @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
|
|
|
|
|
|
|
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 22:27:55 +00:00
|
|
|
$fs = $this->getMock('ComicPressBackendFilesystem', array('process_search_string', 'find_matching_files', 'group_by_root', 'has_common_filename_pattern'));
|
2009-11-25 00:33:16 +00:00
|
|
|
|
|
|
|
$fs->expects($this->at(0))->method('process_search_string')->with($post, 'comic')->will($this->returnValue(array('comic')));
|
2009-11-25 22:27:55 +00:00
|
|
|
$fs->expects($this->at(1))->method('find_matching_files')->with(array('comic'))->will($this->returnValue(array('comic')));
|
2009-11-25 00:33:16 +00:00
|
|
|
$fs->expects($this->at(2))->method('process_search_string')->with($post, 'rss')->will($this->returnValue(array('rss')));
|
2009-11-25 22:27:55 +00:00
|
|
|
$fs->expects($this->at(3))->method('find_matching_files')->with(array('rss'))->will($this->returnValue(array('rss')));
|
|
|
|
$fs->expects($this->at(4))->method('has_common_filename_pattern')->with(array('comic', 'rss'))->will($this->returnValue('test'));
|
|
|
|
$fs->expects($this->at(5))->method('group_by_root')->with('test', array(
|
|
|
|
'comic' => array('comic'),
|
|
|
|
'rss' => array('rss')
|
|
|
|
))->will($this->returnValue(array(
|
|
|
|
'root' => array(
|
2009-11-26 04:42:44 +00:00
|
|
|
'comic' => 'comic',
|
|
|
|
'rss' => 'rss',
|
2009-11-25 22:27:55 +00:00
|
|
|
)
|
|
|
|
)));
|
2009-11-25 00:33:16 +00:00
|
|
|
|
|
|
|
$return = $fs->generate_from_post($post);
|
|
|
|
|
2009-11-25 03:15:34 +00:00
|
|
|
$this->assertEquals(1, count($return));
|
2009-11-25 22:27:55 +00:00
|
|
|
$this->assertEquals('filesystem-1-root', $return[0]->id);
|
2009-11-25 03:15:34 +00:00
|
|
|
$this->assertEquals(array(
|
2009-11-26 04:42:44 +00:00
|
|
|
'comic' => 'comic',
|
|
|
|
'rss' => 'rss'
|
2009-11-25 03:15:34 +00:00
|
|
|
), $return[0]->files_by_type);
|
2009-11-25 22:39:58 +00:00
|
|
|
|
|
|
|
$this->assertEquals(array(
|
|
|
|
'root' => array(
|
2009-11-26 04:42:44 +00:00
|
|
|
'comic' => 'comic',
|
|
|
|
'rss' => 'rss',
|
2009-11-25 22:39:58 +00:00
|
|
|
)
|
|
|
|
), get_post_meta(1, 'backend_filesystem_files_by_type', true));
|
2009-11-25 03:15:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function providerTestGroupByRoot() {
|
|
|
|
return array(
|
|
|
|
array(
|
|
|
|
'test*.jpg',
|
|
|
|
array('comic' => array('/test/test1.jpg', '/test/test2.jpg')),
|
|
|
|
array('1' => array('comic' => '/test/test1.jpg'), '2' => array('comic' => '/test/test2.jpg'))
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'2009-01-01*.jpg',
|
|
|
|
array(
|
|
|
|
'comic' => array('/comic/2009-01-01-01-yeah.jpg'),
|
|
|
|
'rss' => array('/rss/2009-01-01-01-yeah.jpg')
|
|
|
|
),
|
|
|
|
array('-01-yeah' => array('comic' => '/comic/2009-01-01-01-yeah.jpg', 'rss' => '/rss/2009-01-01-01-yeah.jpg'))
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider providerTestGroupByRoot
|
|
|
|
*/
|
|
|
|
function testGroupByRoot($pattern, $files, $expected_groupings) {
|
|
|
|
$this->assertEquals($expected_groupings, $this->fs->group_by_root($pattern, $files));
|
2009-11-25 00:33:16 +00:00
|
|
|
}
|
2009-11-25 22:39:58 +00:00
|
|
|
|
|
|
|
function providerTestGenerateFromID() {
|
2009-11-26 04:42:44 +00:00
|
|
|
$valid_backend = new ComicPressBackendFilesystem();
|
|
|
|
$valid_backend->id = 'filesystem-1--test';
|
|
|
|
$valid_backend->files_by_type = array('comic' => 'comic-file');
|
|
|
|
|
2009-11-25 22:39:58 +00:00
|
|
|
return array(
|
2009-11-26 04:42:44 +00:00
|
|
|
array('blah', false),
|
|
|
|
array('filesystem-1', false),
|
|
|
|
array('filesystem-1--test', $valid_backend),
|
2009-11-26 04:44:03 +00:00
|
|
|
array('filesystem-1--test2', false),
|
|
|
|
array('filesystem-2--test', false),
|
2009-11-25 22:39:58 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider providerTestGenerateFromID
|
|
|
|
*/
|
|
|
|
function testGenerateFromID($id, $is_successful) {
|
|
|
|
wp_insert_post((object)array('ID' => 1));
|
|
|
|
|
2009-11-26 04:42:44 +00:00
|
|
|
update_post_meta(1, 'backend_filesystem_files_by_type', array('-test' => array('comic' => 'comic-file')));
|
|
|
|
|
2009-11-25 22:39:58 +00:00
|
|
|
if ($is_successful) {
|
2009-11-26 04:42:44 +00:00
|
|
|
$return = $is_successful;
|
2009-11-25 22:39:58 +00:00
|
|
|
} else {
|
|
|
|
$return = false;
|
|
|
|
}
|
2009-11-26 04:42:44 +00:00
|
|
|
|
|
|
|
$this->assertEquals($return, ComicPressBackendFilesystem::generate_from_id($id));
|
2009-11-25 22:39:58 +00:00
|
|
|
}
|
2009-12-06 18:53:11 +00:00
|
|
|
|
|
|
|
function providerTestResolveRegexPath() {
|
|
|
|
return array(
|
|
|
|
array('test', 'test'),
|
|
|
|
array('te\.st', 'te.st'),
|
|
|
|
array('te\st', 'te/st'),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider providerTestResolveRegexPath
|
|
|
|
*/
|
|
|
|
function testResolveRegexPath($input, $expected_output) {
|
|
|
|
$this->assertEquals($expected_output, ComicPressBackendFilesystem::resolve_regex_path($input));
|
|
|
|
}
|
|
|
|
|
|
|
|
function providerTestGetRegexDirname() {
|
|
|
|
return array(
|
|
|
|
array('/test/test2', '/test')
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider providerTestGetRegexDirname
|
|
|
|
*/
|
|
|
|
function testGetRegexDirname($input, $expected_output) {
|
|
|
|
$this->assertEquals($expected_output, ComicPressBackendFilesystem::get_regex_dirname($input));
|
|
|
|
}
|
|
|
|
|
|
|
|
function providerTestGetRegexFilename() {
|
|
|
|
return array(
|
|
|
|
array('/test/test2', 'test2'),
|
|
|
|
array('c:\test\test2', 'test2'),
|
|
|
|
array('/test/test2\.cat', 'test2\.cat'),
|
|
|
|
array('c:\test\test2\.cat', 'test2\.cat'),
|
|
|
|
array('C:/inetpub/a\.windows\.directory/comics/2009-11-24.*\..*', '2009-11-24.*\..*'),
|
|
|
|
array('c:\test\test2\.cat*', 'test2\.cat.*'),
|
|
|
|
array('c:\test\test2\.cat.*', 'test2\.cat.*'),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider providerTestGetRegexFilename
|
|
|
|
*/
|
|
|
|
function testGetRegexFilename($input, $expected_output) {
|
|
|
|
$this->assertEquals($expected_output, ComicPressBackendFilesystem::get_regex_filename($input));
|
|
|
|
}
|
2009-11-25 03:15:34 +00:00
|
|
|
}
|