Skip to main content
Glama
McpUsersToolsTest.php9.72 kB
<?php /** * Test class for McpUsersTools * * @package Automattic\WordpressMcp\Tests\Tools */ namespace Automattic\WordpressMcp\Tests\Tools; use Automattic\WordpressMcp\Core\WpMcp; use Automattic\WordpressMcp\Tools\McpUsersTools; use WP_UnitTestCase; use WP_REST_Request; use WP_User; /** * Test class for McpUsersTools */ final class McpUsersToolsTest extends WP_UnitTestCase { /** * The MCP instance. * * @var WpMcp */ private WpMcp $mcp; /** * The admin user. * * @var WP_User */ private WP_User $admin_user; /** * Set up the test. */ public function set_up(): void { parent::set_up(); // Create an admin user. $this->admin_user = $this->factory->user->create_and_get( array( 'role' => 'administrator', ) ); // Get the MCP instance. $this->mcp = WPMCP(); // Initialize the REST API and MCP. do_action( 'rest_api_init' ); } /** * Test the wp_users_search tool. */ public function test_wp_users_search_tool(): void { // Create a test user. $this->factory->user->create( array( 'user_login' => 'testuser', 'user_email' => 'test@example.com', 'role' => 'subscriber', ) ); // Create a REST request. $request = new WP_REST_Request( 'POST', '/wp/v2/wpmcp' ); // Set the request body as JSON. $request->set_body( wp_json_encode( array( 'method' => 'tools/call', 'name' => 'wp_users_search', ) ) ); // Set content type header. $request->add_header( 'Content-Type', 'application/json' ); // Set the current user. wp_set_current_user( $this->admin_user->ID ); // Dispatch the request. $response = rest_do_request( $request ); // Check the response. $this->assertEquals( 200, $response->get_status() ); $this->assertArrayHasKey( 'content', $response->get_data() ); $this->assertIsArray( $response->get_data()['content'] ); // Get the users from the response. $users = json_decode( $response->get_data()['content'][0]['text'], true ); // Assert user data. $this->assertNotEmpty( $users ); $this->assertArrayHasKey( 'id', $users[0] ); $this->assertArrayHasKey( 'name', $users[0] ); $this->assertArrayHasKey( 'slug', $users[0] ); } /** * Test the wp_get_user tool. */ public function test_wp_get_user_tool(): void { // Create a test user. $user_id = $this->factory->user->create( array( 'user_login' => 'testuser', 'user_email' => 'test@example.com', 'role' => 'subscriber', ) ); // Create a REST request. $request = new WP_REST_Request( 'POST', '/wp/v2/wpmcp' ); // Set the request body as JSON. $request->set_body( wp_json_encode( array( 'method' => 'tools/call', 'name' => 'wp_get_user', 'arguments' => array( 'id' => $user_id, ), ) ) ); // Set content type header. $request->add_header( 'Content-Type', 'application/json' ); // Set the current user. wp_set_current_user( $this->admin_user->ID ); // Dispatch the request. $response = rest_do_request( $request ); // Check the response. $this->assertEquals( 200, $response->get_status() ); $this->assertArrayHasKey( 'content', $response->get_data() ); $this->assertIsArray( $response->get_data()['content'] ); $this->assertCount( 1, $response->get_data()['content'] ); $this->assertEquals( 'text', $response->get_data()['content'][0]['type'] ); $this->assertStringContainsString( 'testuser', $response->get_data()['content'][0]['text'] ); } /** * Test the wp_add_user tool. */ public function test_wp_add_user_tool(): void { // Create a REST request. $request = new WP_REST_Request( 'POST', '/wp/v2/wpmcp' ); // Set the request body as JSON. $request->set_body( wp_json_encode( array( 'method' => 'tools/call', 'name' => 'wp_add_user', 'arguments' => array( 'username' => 'newuser', 'email' => 'newuser@example.com', 'password' => 'password123', 'roles' => array( 'subscriber' ), ), ) ) ); // Set content type header. $request->add_header( 'Content-Type', 'application/json' ); // Set the current user. wp_set_current_user( $this->admin_user->ID ); // Dispatch the request. $response = rest_do_request( $request ); // Check the response. $this->assertEquals( 200, $response->get_status() ); $this->assertArrayHasKey( 'content', $response->get_data() ); $this->assertIsArray( $response->get_data()['content'] ); $this->assertCount( 1, $response->get_data()['content'] ); $this->assertEquals( 'text', $response->get_data()['content'][0]['type'] ); $this->assertStringContainsString( 'newuser', $response->get_data()['content'][0]['text'] ); } /** * Test the wp_update_user tool. */ public function test_wp_update_user_tool(): void { // Create a test user. $user_id = $this->factory->user->create( array( 'user_login' => 'testuser', 'user_email' => 'test@example.com', 'role' => 'subscriber', ) ); // Create a REST request. $request = new WP_REST_Request( 'POST', '/wp/v2/wpmcp' ); // Set the request body as JSON. $request->set_body( wp_json_encode( array( 'method' => 'tools/call', 'name' => 'wp_update_user', 'arguments' => array( 'id' => $user_id, 'email' => 'updated@example.com', 'roles' => array( 'editor' ), ), ) ) ); // Set content type header. $request->add_header( 'Content-Type', 'application/json' ); // Set the current user. wp_set_current_user( $this->admin_user->ID ); // Dispatch the request. $response = rest_do_request( $request ); // Check the response. $this->assertEquals( 200, $response->get_status() ); $this->assertArrayHasKey( 'content', $response->get_data() ); $this->assertIsArray( $response->get_data()['content'] ); $this->assertCount( 1, $response->get_data()['content'] ); $this->assertEquals( 'text', $response->get_data()['content'][0]['type'] ); $this->assertStringContainsString( 'updated@example.com', $response->get_data()['content'][0]['text'] ); } /** * Test the wp_delete_user tool. */ public function test_wp_delete_user_tool(): void { // Create a test user. $user_id = $this->factory->user->create( array( 'user_login' => 'testuser', 'user_email' => 'test@example.com', 'role' => 'subscriber', ) ); // Create a REST request. $request = new WP_REST_Request( 'POST', '/wp/v2/wpmcp' ); // Set the request body as JSON. $request->set_body( wp_json_encode( array( 'method' => 'tools/call', 'name' => 'wp_delete_user', 'arguments' => array( 'id' => $user_id, 'force' => true, 'reassign' => $this->admin_user->ID, ), ) ) ); // Set content type header. $request->add_header( 'Content-Type', 'application/json' ); // Set the current user. wp_set_current_user( $this->admin_user->ID ); // Dispatch the request. $response = rest_do_request( $request ); // Check the response. $this->assertEquals( 200, $response->get_status() ); $this->assertArrayHasKey( 'content', $response->get_data() ); $this->assertIsArray( $response->get_data()['content'] ); $this->assertCount( 1, $response->get_data()['content'] ); $this->assertEquals( 'text', $response->get_data()['content'][0]['type'] ); // Verify the user is deleted. $user = get_user_by( 'id', $user_id ); $this->assertFalse( $user ); } /** * Test the wp_get_current_user tool. */ public function test_wp_get_current_user_tool(): void { // Create a REST request. $request = new WP_REST_Request( 'POST', '/wp/v2/wpmcp' ); // Set the request body as JSON. $request->set_body( wp_json_encode( array( 'method' => 'tools/call', 'name' => 'wp_get_current_user', ) ) ); // Set content type header. $request->add_header( 'Content-Type', 'application/json' ); // Set the current user. wp_set_current_user( $this->admin_user->ID ); // Dispatch the request. $response = rest_do_request( $request ); // Check the response. $this->assertEquals( 200, $response->get_status() ); $this->assertArrayHasKey( 'content', $response->get_data() ); $this->assertIsArray( $response->get_data()['content'] ); $this->assertCount( 1, $response->get_data()['content'] ); $this->assertEquals( 'text', $response->get_data()['content'][0]['type'] ); $this->assertStringContainsString( $this->admin_user->user_login, $response->get_data()['content'][0]['text'] ); } /** * Test the wp_update_current_user tool. */ public function test_wp_update_current_user_tool(): void { // Create a REST request. $request = new WP_REST_Request( 'POST', '/wp/v2/wpmcp' ); // Set the request body as JSON. $request->set_body( wp_json_encode( array( 'method' => 'tools/call', 'name' => 'wp_update_current_user', 'arguments' => array( 'email' => 'updated_admin@example.com', ), ) ) ); // Set content type header. $request->add_header( 'Content-Type', 'application/json' ); // Set the current user. wp_set_current_user( $this->admin_user->ID ); // Dispatch the request. $response = rest_do_request( $request ); // Check the response. $this->assertEquals( 200, $response->get_status() ); $this->assertArrayHasKey( 'content', $response->get_data() ); $this->assertIsArray( $response->get_data()['content'] ); $this->assertCount( 1, $response->get_data()['content'] ); $this->assertEquals( 'text', $response->get_data()['content'][0]['type'] ); $this->assertStringContainsString( 'updated_admin@example.com', $response->get_data()['content'][0]['text'] ); } }

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Automattic/wordpress-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server