user = $this->factory->user->create( array( 'role' => 'administrator', ) ); } /** * Test that installation without permission is unauthorized. */ public function test_install_without_permission() { $response = $this->server->dispatch( new WP_REST_Request( 'POST', $this->endpoint . '/install' ) ); $this->assertEquals( 401, $response->get_status() ); } /** * Test that installing a valid plugin works. */ public function test_install_plugin() { wp_set_current_user( $this->user ); $request = new WP_REST_Request( 'POST', $this->endpoint . '/install' ); $request->set_query_params( array( 'plugins' => 'facebook-for-woocommerce', ) ); $response = $this->server->dispatch( $request ); $data = $response->get_data(); $plugins = get_plugins(); $this->assertEquals( 200, $response->get_status() ); $this->assertEquals( array( 'facebook-for-woocommerce' ), $data['data']['installed'] ); $this->assertEquals( true, $data['success'] ); $this->assertArrayHasKey( 'facebook-for-woocommerce/facebook-for-woocommerce.php', $plugins ); } /** * Test that installing with invalid params fails. */ public function test_install_invalid_plugins_param() { wp_set_current_user( $this->user ); $request = new WP_REST_Request( 'POST', $this->endpoint . '/install' ); $response = $this->server->dispatch( $request ); $data = $response->get_data(); $this->assertEquals( 'woocommerce_rest_invalid_plugins', $data['code'] ); } /** * Test that activating a valid plugin works. */ public function test_activate_plugin() { wp_set_current_user( $this->user ); $request = new WP_REST_Request( 'POST', $this->endpoint . '/activate' ); $request->set_query_params( array( 'plugins' => 'facebook-for-woocommerce', ) ); $response = $this->server->dispatch( $request ); $data = $response->get_data(); $active_plugins = Plugins::get_active_plugins(); $this->assertEquals( 200, $response->get_status() ); $this->assertContains( 'facebook-for-woocommerce', $data['data']['activated'] ); $this->assertEquals( true, $data['success'] ); $this->assertContains( 'facebook-for-woocommerce', $active_plugins ); } /** * Test that activating with invalid params fails. */ public function test_activate_invalid_plugins_param() { wp_set_current_user( $this->user ); $request = new WP_REST_Request( 'POST', $this->endpoint . '/activate' ); $response = $this->server->dispatch( $request ); $data = $response->get_data(); $this->assertEquals( 'woocommerce_rest_invalid_plugins', $data['code'] ); } /** * Test that installing a non-whitelisted plugin fails, but installs the whitelisted. */ public function test_install_non_allowed_plugins() { wp_set_current_user( $this->user ); $request = new WP_REST_Request( 'POST', $this->endpoint . '/install' ); $request->set_query_params( array( 'plugins' => 'facebook-for-woocommerce,hello-dolly', ) ); $response = $this->server->dispatch( $request ); $data = $response->get_data(); $this->assertEquals( false, $data['success'] ); $this->assertArrayHasKey( 'hello-dolly', $data['errors']->errors ); $this->assertEquals( array( 'facebook-for-woocommerce' ), $data['data']['installed'] ); } /** * Test that activating a non-whitelisted plugin fails, but activates the whitelisted. */ public function test_activate_non_allowed_plugins() { wp_set_current_user( $this->user ); $request = new WP_REST_Request( 'POST', $this->endpoint . '/activate' ); $request->set_query_params( array( 'plugins' => 'facebook-for-woocommerce,hello-dolly', ) ); $response = $this->server->dispatch( $request ); $data = $response->get_data(); $this->assertEquals( false, $data['success'] ); $this->assertArrayHasKey( 'hello-dolly', $data['errors']->errors ); $this->assertEquals( array( 'facebook-for-woocommerce' ), $data['data']['activated'] ); } }