wordpress-develop/tests/phpunit/tests/xmlrpc/basic.php
Tonya Mork 40ac5de838 Coding Standards: Add visibility to methods in tests/phpunit/tests/.
Adds a `public` visibility to test fixtures, tests, data providers, and callbacks methods.

Adds a `private` visibility to helper methods within test classes.

Renames callbacks and helpers that previously started with a `_` prefix. Why? For consistency and to leverage using the method visibility. Further naming standardizations is beyond the scope of this commit.

Props costdev, jrf, hellofromTonya.
Fixes #54177.

git-svn-id: https://develop.svn.wordpress.org/trunk@52010 602fd350-edb4-49c9-b593-d223f7449a82
2021-11-04 15:22:47 +00:00

121 lines
3.1 KiB
PHP

<?php
require_once ABSPATH . 'wp-admin/includes/admin.php';
require_once ABSPATH . WPINC . '/class-IXR.php';
require_once ABSPATH . WPINC . '/class-wp-xmlrpc-server.php';
/**
* @group xmlrpc
*/
class Tests_XMLRPC_Basic extends WP_XMLRPC_UnitTestCase {
public function test_enabled() {
$result = $this->myxmlrpcserver->wp_getOptions( array( 1, 'username', 'password' ) );
$this->assertIXRError( $result );
// If disabled, 405 would result.
$this->assertSame( 403, $result->code );
}
public function test_login_pass_ok() {
$this->make_user_by_role( 'subscriber' );
$this->assertTrue( $this->myxmlrpcserver->login_pass_ok( 'subscriber', 'subscriber' ) );
$this->assertInstanceOf( 'WP_User', $this->myxmlrpcserver->login( 'subscriber', 'subscriber' ) );
}
public function test_login_pass_bad() {
$this->make_user_by_role( 'subscriber' );
$this->assertFalse( $this->myxmlrpcserver->login_pass_ok( 'username', 'password' ) );
$this->assertFalse( $this->myxmlrpcserver->login( 'username', 'password' ) );
// The auth will still fail due to authentication blocking after the first failed attempt.
$this->assertFalse( $this->myxmlrpcserver->login_pass_ok( 'subscriber', 'subscriber' ) );
}
/**
* @ticket 34336
*/
public function test_multicall_invalidates_all_calls_after_invalid_call() {
$editor_id = $this->make_user_by_role( 'editor' );
$post_id = self::factory()->post->create(
array(
'post_author' => $editor_id,
)
);
$method_calls = array(
// Valid login.
array(
'methodName' => 'wp.editPost',
'params' => array(
0,
'editor',
'editor',
$post_id,
array(
'title' => 'Title 1',
),
),
),
// *Invalid* login.
array(
'methodName' => 'wp.editPost',
'params' => array(
0,
'editor',
'password',
$post_id,
array(
'title' => 'Title 2',
),
),
),
// Valid login.
array(
'methodName' => 'wp.editPost',
'params' => array(
0,
'editor',
'editor',
$post_id,
array(
'title' => 'Title 3',
),
),
),
);
$this->myxmlrpcserver->callbacks = $this->myxmlrpcserver->methods;
$result = $this->myxmlrpcserver->multiCall( $method_calls );
$this->assertArrayNotHasKey( 'faultCode', $result[0] );
$this->assertArrayHasKey( 'faultCode', $result[1] );
$this->assertArrayHasKey( 'faultCode', $result[2] );
}
/**
* @ticket 36586
*/
public function test_isStruct_on_non_numerically_indexed_array() {
$value = new IXR_Value( array( '0.0' => 100 ) );
$return = "<struct>\n";
$return .= " <member><name>0.0</name><value><int>100</int></value></member>\n";
$return .= '</struct>';
$this->assertXmlStringEqualsXmlString( $return, $value->getXML() );
}
public function test_disabled() {
add_filter( 'xmlrpc_enabled', '__return_false' );
$testcase_xmlrpc_server = new wp_xmlrpc_server();
$result = $testcase_xmlrpc_server->wp_getOptions( array( 1, 'username', 'password' ) );
$this->assertIXRError( $result );
$this->assertSame( 405, $result->code );
}
}