wordpress-develop/tests/phpunit/tests/xmlrpc/mw/getPost.php
Andrew Nacin 8045afd81b Move PHPUnit tests into a tests/phpunit directory.
wp-tests-config.php can/should reside in the root of a develop checkout. `phpunit` should be run from the root.

see #25088.


git-svn-id: https://develop.svn.wordpress.org/trunk@25165 602fd350-edb4-49c9-b593-d223f7449a82
2013-08-29 18:39:34 +00:00

143 lines
5.6 KiB
PHP

<?php
/**
* @group xmlrpc
*/
class Tests_XMLRPC_mw_getPost extends WP_XMLRPC_UnitTestCase {
var $post_data;
var $post_id;
var $post_date_ts;
function setUp() {
parent::setUp();
$author_id = $this->make_user_by_role( 'author' );
$this->post_date_ts = strtotime( '+1 day' );
$this->post_data = array(
'post_title' => rand_str(),
'post_content' => rand_str( 2000 ),
'post_excerpt' => rand_str( 100 ),
'post_author' => $author_id,
'post_date' => strftime( "%Y-%m-%d %H:%M:%S", $this->post_date_ts ),
);
$this->post_id = wp_insert_post( $this->post_data );
}
function test_invalid_username_password() {
$result = $this->myxmlrpcserver->mw_getPost( array( $this->post_id, 'username', 'password' ) );
$this->assertInstanceOf( 'IXR_Error', $result );
$this->assertEquals( 403, $result->code );
}
function test_incapable_user() {
$this->make_user_by_role( 'subscriber' );
$result = $this->myxmlrpcserver->mw_getPost( array( $this->post_id, 'subscriber', 'subscriber' ) );
$this->assertInstanceOf( 'IXR_Error', $result );
$this->assertEquals( 401, $result->code );
}
/**
* @ticket 20336
*/
function test_invalid_postid() {
$result = $this->myxmlrpcserver->mw_getPost( array( 9999, 'author', 'author' ) );
$this->assertInstanceOf( 'IXR_Error', $result );
$this->assertEquals( 404, $result->code );
}
function test_valid_post() {
add_theme_support( 'post-thumbnails' );
$fields = array( 'post' );
$result = $this->myxmlrpcserver->mw_getPost( array( $this->post_id, 'author', 'author' ) );
$this->assertNotInstanceOf( 'IXR_Error', $result );
// Check data types
$this->assertInternalType( 'string', $result['userid'] );
$this->assertInternalType( 'int', $result['postid'] );
$this->assertInternalType( 'string', $result['description'] );
$this->assertInternalType( 'string', $result['title'] );
$this->assertInternalType( 'string', $result['link'] );
$this->assertInternalType( 'string', $result['permaLink'] );
$this->assertInternalType( 'array', $result['categories'] );
$this->assertInternalType( 'string', $result['mt_excerpt'] );
$this->assertInternalType( 'string', $result['mt_text_more'] );
$this->assertInternalType( 'string', $result['wp_more_text'] );
$this->assertInternalType( 'int', $result['mt_allow_comments'] );
$this->assertInternalType( 'int', $result['mt_allow_pings'] );
$this->assertInternalType( 'string', $result['mt_keywords'] );
$this->assertInternalType( 'string', $result['wp_slug'] );
$this->assertInternalType( 'string', $result['wp_password'] );
$this->assertInternalType( 'string', $result['wp_author_id'] );
$this->assertInternalType( 'string', $result['wp_author_display_name'] );
$this->assertInternalType( 'string', $result['post_status'] );
$this->assertInternalType( 'array', $result['custom_fields'] );
$this->assertInternalType( 'string', $result['wp_post_format'] );
$this->assertInternalType( 'bool', $result['sticky'] );
// Check expected values
$this->assertStringMatchesFormat( '%d', $result['userid'] );
$this->assertEquals( $this->post_data['post_title'], $result['title'] );
$this->assertEquals( 'draft', $result['post_status'] );
$this->assertStringMatchesFormat( '%d', $result['wp_author_id'] );
$this->assertEquals( $this->post_data['post_excerpt'], $result['mt_excerpt'] );
$this->assertEquals( url_to_postid( $result['link'] ), $this->post_id );
$this->assertEquals( '', $result['wp_post_thumbnail'] );
remove_theme_support( 'post-thumbnails' );
}
function test_post_thumbnail() {
add_theme_support( 'post-thumbnails' );
// create attachment
$filename = ( DIR_TESTDATA.'/images/a2-small.jpg' );
$contents = file_get_contents( $filename );
$upload = wp_upload_bits( $filename, null, $contents );
$this->assertTrue( empty( $upload['error'] ) );
$attachment = array(
'post_title' => 'Post Thumbnail',
'post_type' => 'attachment',
'post_mime_type' => 'image/jpeg',
'guid' => $upload['url']
);
$attachment_id = wp_insert_attachment( $attachment, $upload['file'], $this->post_id );
set_post_thumbnail( $this->post_id, $attachment_id );
$fields = array( 'post' );
$result = $this->myxmlrpcserver->mw_getPost( array( $this->post_id, 'author', 'author' ) );
$this->assertNotInstanceOf( 'IXR_Error', $result );
$this->assertInternalType( 'string', $result['wp_post_thumbnail'] );
$this->assertStringMatchesFormat( '%d', $result['wp_post_thumbnail'] );
$this->assertEquals( $attachment_id, $result['wp_post_thumbnail'] );
remove_theme_support( 'post-thumbnails' );
}
function test_date() {
$fields = array( 'post' );
$result = $this->myxmlrpcserver->mw_getPost( array( $this->post_id, 'author', 'author' ) );
$this->assertNotInstanceOf( 'IXR_Error', $result );
$this->assertInstanceOf( 'IXR_Date', $result['dateCreated'] );
$this->assertInstanceOf( 'IXR_Date', $result['date_created_gmt'] );
$this->assertInstanceOf( 'IXR_Date', $result['date_modified'] );
$this->assertInstanceOf( 'IXR_Date', $result['date_modified_gmt'] );
$this->assertEquals( $this->post_date_ts, $result['dateCreated']->getTimestamp() );
$this->assertEquals( $this->post_date_ts, $result['date_modified']->getTimestamp() );
$post_date_gmt = strtotime( get_gmt_from_date( mysql2date( 'Y-m-d H:i:s', $this->post_data['post_date'], false ), 'Ymd\TH:i:s' ) );
$post_modified_gmt = strtotime( get_gmt_from_date( mysql2date( 'Y-m-d H:i:s', $this->post_data['post_date'], false ), 'Ymd\TH:i:s' ) );
$this->assertEquals( $post_date_gmt, $result['date_created_gmt']->getTimestamp() );
$this->assertEquals( $post_modified_gmt, $result['date_modified_gmt']->getTimestamp() );
}
}