mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
Shaves a couple of seconds off of the tests. See #30017, #38716 git-svn-id: https://develop.svn.wordpress.org/trunk@39189 602fd350-edb4-49c9-b593-d223f7449a82
149 lines
6.0 KiB
PHP
149 lines
6.0 KiB
PHP
<?php
|
|
|
|
/**
|
|
* @group xmlrpc
|
|
*/
|
|
class Tests_XMLRPC_wp_editTerm extends WP_XMLRPC_UnitTestCase {
|
|
protected static $parent_term;
|
|
protected static $child_term;
|
|
protected static $post_tag;
|
|
|
|
public static function wpSetUpBeforeClass( WP_UnitTest_Factory $factory ) {
|
|
self::$parent_term = $factory->term->create( array(
|
|
'taxonomy' => 'category',
|
|
) );
|
|
self::$child_term = $factory->term->create( array(
|
|
'taxonomy' => 'category',
|
|
) );
|
|
self::$post_tag = $factory->term->create( array(
|
|
'taxonomy' => 'post_tag',
|
|
) );
|
|
}
|
|
|
|
function test_invalid_username_password() {
|
|
$result = $this->myxmlrpcserver->wp_editTerm( array( 1, 'username', 'password', 'category', 1 ) );
|
|
$this->assertInstanceOf( 'IXR_Error', $result );
|
|
$this->assertEquals( 403, $result->code );
|
|
}
|
|
|
|
function test_empty_taxonomy() {
|
|
$this->make_user_by_role( 'subscriber' );
|
|
|
|
$result = $this->myxmlrpcserver->wp_editTerm( array( 1, 'subscriber', 'subscriber', '', array( 'taxonomy' => '' ) ) );
|
|
$this->assertInstanceOf( 'IXR_Error', $result );
|
|
$this->assertEquals( 403, $result->code );
|
|
$this->assertEquals( __( 'Invalid taxonomy.' ), $result->message );
|
|
}
|
|
|
|
function test_invalid_taxonomy() {
|
|
$this->make_user_by_role( 'subscriber' );
|
|
|
|
$result = $this->myxmlrpcserver->wp_editTerm( array( 1, 'subscriber', 'subscriber', self::$parent_term, array( 'taxonomy' => 'not_existing' ) ) );
|
|
$this->assertInstanceOf( 'IXR_Error', $result );
|
|
$this->assertEquals( 403, $result->code );
|
|
$this->assertEquals( __( 'Invalid taxonomy.' ), $result->message );
|
|
}
|
|
|
|
function test_incapable_user() {
|
|
$this->make_user_by_role( 'subscriber' );
|
|
|
|
$result = $this->myxmlrpcserver->wp_editTerm( array( 1, 'subscriber', 'subscriber', self::$parent_term, array( 'taxonomy' => 'category' ) ) );
|
|
$this->assertInstanceOf( 'IXR_Error', $result );
|
|
$this->assertEquals( 401, $result->code );
|
|
$this->assertEquals( __( 'Sorry, you are not allowed to edit this term.' ), $result->message );
|
|
}
|
|
|
|
function test_term_not_exists() {
|
|
$this->make_user_by_role( 'editor' );
|
|
|
|
$result = $this->myxmlrpcserver->wp_editTerm( array( 1, 'editor', 'editor', 9999, array( 'taxonomy' => 'category' ) ) );
|
|
$this->assertInstanceOf( 'IXR_Error', $result );
|
|
$this->assertEquals( 404, $result->code );
|
|
$this->assertEquals( __( 'Invalid term ID.' ), $result->message );
|
|
}
|
|
|
|
function test_empty_term() {
|
|
$this->make_user_by_role( 'editor' );
|
|
|
|
$result = $this->myxmlrpcserver->wp_editTerm( array( 1, 'editor', 'editor', '', array( 'taxonomy' => 'category' ) ) );
|
|
$this->assertInstanceOf( 'IXR_Error', $result );
|
|
$this->assertEquals( 500, $result->code );
|
|
$this->assertEquals( __('Empty Term'), $result->message );
|
|
}
|
|
|
|
function test_empty_term_name() {
|
|
$this->make_user_by_role( 'editor' );
|
|
|
|
$result = $this->myxmlrpcserver->wp_editTerm( array( 1, 'editor', 'editor', self::$parent_term, array( 'taxonomy' => 'category', 'name' => '' ) ) );
|
|
$this->assertInstanceOf( 'IXR_Error', $result );
|
|
$this->assertEquals( 403, $result->code );
|
|
$this->assertEquals( __( 'The term name cannot be empty.' ), $result->message );
|
|
}
|
|
|
|
function test_parent_for_nonhierarchical() {
|
|
$this->make_user_by_role( 'editor' );
|
|
|
|
$result = $this->myxmlrpcserver->wp_editTerm( array( 1, 'editor', 'editor', self::$post_tag, array( 'taxonomy' => 'post_tag', 'parent' => self::$parent_term ) ) );
|
|
$this->assertInstanceOf( 'IXR_Error', $result );
|
|
$this->assertEquals( 403, $result->code );
|
|
$this->assertEquals( __( "This taxonomy is not hierarchical so you can't set a parent." ), $result->message );
|
|
}
|
|
|
|
function test_parent_empty() {
|
|
$this->make_user_by_role( 'editor' );
|
|
|
|
$result = $this->myxmlrpcserver->wp_editTerm( array( 1, 'editor', 'editor', self::$child_term, array( 'taxonomy' => 'category', 'parent' => '', 'name' => 'test' ) ) );
|
|
$this->assertNotInstanceOf( 'IXR_Error', $result );
|
|
$this->assertTrue( $result );
|
|
}
|
|
|
|
function test_parent_null() {
|
|
$this->make_user_by_role( 'editor' );
|
|
|
|
$result = $this->myxmlrpcserver->wp_editTerm( array( 1, 'editor', 'editor', self::$child_term, array( 'taxonomy' => 'category', 'parent' => NULL, 'name' => 'test' ) ) );
|
|
|
|
$this->assertNotInstanceOf( 'IXR_Error', $result );
|
|
$this->assertInternalType( 'boolean', $result );
|
|
|
|
$term = get_term( self::$child_term, 'category' );
|
|
$this->assertEquals( '0', $term->parent );
|
|
}
|
|
|
|
function test_parent_invalid() {
|
|
$this->make_user_by_role( 'editor' );
|
|
|
|
$result = $this->myxmlrpcserver->wp_editTerm( array( 1, 'editor', 'editor', self::$child_term, array( 'taxonomy' => 'category', 'parent' => 'dasda', 'name' => 'test' ) ) );
|
|
$this->assertInstanceOf( 'IXR_Error', $result );
|
|
$this->assertEquals( 500, $result->code );
|
|
}
|
|
|
|
function test_parent_not_existing() {
|
|
$this->make_user_by_role( 'editor' );
|
|
|
|
$result = $this->myxmlrpcserver->wp_editTerm( array( 1, 'editor', 'editor', self::$child_term, array( 'taxonomy' => 'category', 'parent' => 9999, 'name' => 'test' ) ) );
|
|
$this->assertInstanceOf( 'IXR_Error', $result );
|
|
$this->assertEquals( 403, $result->code );
|
|
$this->assertEquals( __( 'Parent term does not exist.' ), $result->message );
|
|
}
|
|
|
|
function test_parent_duplicate_slug() {
|
|
$this->make_user_by_role( 'editor' );
|
|
|
|
$parent_term = get_term_by( 'id', self::$parent_term, 'category' );
|
|
$result = $this->myxmlrpcserver->wp_editTerm( array( 1, 'editor', 'editor', self::$child_term, array( 'taxonomy' => 'category', 'slug' => $parent_term->slug ) ) );
|
|
$this->assertInstanceOf( 'IXR_Error', $result );
|
|
$this->assertEquals( 500, $result->code );
|
|
$this->assertEquals( htmlspecialchars( sprintf( __('The slug “%s” is already in use by another term'), $parent_term->slug ) ), $result->message );
|
|
}
|
|
|
|
function test_edit_all_fields() {
|
|
$this->make_user_by_role( 'editor' );
|
|
|
|
$fields = array( 'taxonomy' => 'category', 'name' => 'Child 2', 'parent' => self::$parent_term, 'description' => 'Child term', 'slug' => 'child_2' );
|
|
$result = $this->myxmlrpcserver->wp_editTerm( array( 1, 'editor', 'editor', self::$child_term, $fields ) );
|
|
|
|
$this->assertNotInstanceOf( 'IXR_Error', $result );
|
|
$this->assertInternalType( 'boolean', $result );
|
|
}
|
|
}
|