2009-11-09 03:11:26 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
require_once('PHPUnit/Framework.php');
|
|
|
|
require_once('MockPress/mockpress.php');
|
|
|
|
require_once('backends/ComicPressBackendAttachment.inc');
|
|
|
|
|
|
|
|
class ComicPressBackendAttachmentTest extends PHPUnit_Framework_TestCase {
|
|
|
|
function setUp() {
|
|
|
|
_reset_wp();
|
2009-11-11 04:11:48 +00:00
|
|
|
|
|
|
|
$this->ba = new ComicPressBackendAttachment((object)array('ID' => 1));
|
2009-11-09 03:11:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function providerTestGenerateFromPost() {
|
|
|
|
return array(
|
2009-11-11 03:09:53 +00:00
|
|
|
array(array(), array(), false),
|
2009-11-11 03:46:39 +00:00
|
|
|
array(array((object)array('ID' => 2)), array(), array()),
|
|
|
|
array(array((object)array('ID' => 2)), array('managed' => false), array()),
|
|
|
|
array(array((object)array('ID' => 2)), array('managed' => true), array('attachment-2')),
|
2009-11-09 03:11:26 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider providerTestGenerateFromPost
|
|
|
|
*/
|
2009-11-11 03:09:53 +00:00
|
|
|
function testGenerateFromPost($get_children_response, $post_meta, $expected_ids) {
|
2009-11-09 03:11:26 +00:00
|
|
|
_set_get_children(array(
|
|
|
|
'post_parent' => 1,
|
|
|
|
'post_type' => 'attachment',
|
|
|
|
'post_mime_type' => 'image'
|
|
|
|
), $get_children_response);
|
|
|
|
|
2009-11-11 03:46:39 +00:00
|
|
|
update_post_meta(2, 'comicpress', $post_meta);
|
2009-11-11 03:09:53 +00:00
|
|
|
|
2009-11-09 03:11:26 +00:00
|
|
|
$results = ComicPressBackendAttachment::generate_from_post((object)array('ID' => 1));
|
|
|
|
if ($expected_ids === false) {
|
|
|
|
$this->assertTrue(empty($results));
|
|
|
|
} else {
|
|
|
|
$this->assertEquals(count($expected_ids), count($results));
|
|
|
|
foreach ($results as $result) {
|
|
|
|
$this->assertTrue(in_array($result->id, $expected_ids));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-11-11 04:11:48 +00:00
|
|
|
|
|
|
|
function providerTestDims() {
|
|
|
|
return array(
|
|
|
|
array(false, false),
|
|
|
|
array(true, false),
|
|
|
|
array(array(), false),
|
|
|
|
array(array('url', 300, 200, false), array('width' => 300, 'height' => 200))
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider providerTestDims
|
|
|
|
*/
|
|
|
|
function testDims($image_downsize_result, $expected_result) {
|
|
|
|
_set_image_downsize_result(1, 'comic', $image_downsize_result);
|
|
|
|
$this->assertEquals($expected_result, $this->ba->dims('comic'));
|
|
|
|
}
|
|
|
|
|
|
|
|
function providerTestUrl() {
|
|
|
|
return array(
|
|
|
|
array(false, false),
|
|
|
|
array(true, false),
|
|
|
|
array(array(), false),
|
|
|
|
array(array('url', 300, 200, false), 'url')
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider providerTestUrl
|
|
|
|
*/
|
|
|
|
function testUrl($image_downsize_result, $expected_result) {
|
|
|
|
_set_image_downsize_result(1, 'comic', $image_downsize_result);
|
|
|
|
$this->assertEquals($expected_result, $this->ba->url('comic'));
|
|
|
|
}
|
2009-11-12 03:12:27 +00:00
|
|
|
|
|
|
|
function providerTestGenerateFromID() {
|
|
|
|
return array(
|
|
|
|
array(null, false),
|
|
|
|
array(1, false),
|
|
|
|
array('attachment-1', true),
|
|
|
|
array('attachment-2', false)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @dataProvider providerTestGenerateFromID
|
|
|
|
*/
|
|
|
|
function testGenerateFromID($id, $is_successful) {
|
|
|
|
wp_insert_post(array('ID' => 1));
|
|
|
|
|
2009-11-12 03:31:36 +00:00
|
|
|
if ($is_successful) {
|
|
|
|
$return = new ComicPressBackendAttachment((object)array('ID' => 1));
|
|
|
|
} else {
|
|
|
|
$return = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->assertEquals($return, $this->ba->generate_from_id($id));
|
|
|
|
}
|
|
|
|
|
|
|
|
function testGetInfo() {
|
|
|
|
$ba = $this->getMock('ComicPressBackendAttachment', array('dims', 'url', 'file'), array(), 'Mock_ComicPressBackendAttachment', false);
|
|
|
|
|
|
|
|
$ba->expects($this->once())->method('dims')->will($this->returnValue(array('width' => 320, 'height' => 240)));
|
|
|
|
$ba->expects($this->once())->method('url')->will($this->returnValue('http://blah/file.jpg'));
|
|
|
|
$ba->expects($this->once())->method('file')->will($this->returnValue('/root/file.jpg'));
|
|
|
|
|
|
|
|
$this->assertEquals(array(
|
|
|
|
'width' => 320,
|
|
|
|
'height' => 240,
|
|
|
|
'url' => 'http://blah/file.jpg',
|
|
|
|
'file' => '/root/file.jpg'
|
|
|
|
), $ba->get_info());
|
2009-11-12 03:12:27 +00:00
|
|
|
}
|
2009-11-09 03:11:26 +00:00
|
|
|
}
|