2019-12-30 07:47:15 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2020-04-20 02:04:13 +00:00
|
|
|
* Plugins REST API Test
|
2019-12-30 07:47:15 +00:00
|
|
|
*
|
2020-08-11 19:18:47 +00:00
|
|
|
* @package WooCommerce\Admin\Tests\API
|
2019-12-30 07:47:15 +00:00
|
|
|
*/
|
|
|
|
|
2020-04-20 02:04:13 +00:00
|
|
|
use \Automattic\WooCommerce\Admin\API\Plugins;
|
2019-12-30 07:47:15 +00:00
|
|
|
|
|
|
|
/**
|
2020-04-20 02:04:13 +00:00
|
|
|
* WC Tests API Plugins
|
2019-12-30 07:47:15 +00:00
|
|
|
*/
|
2020-04-20 02:04:13 +00:00
|
|
|
class WC_Tests_API_Plugins extends WC_REST_Unit_Test_Case {
|
2019-12-30 07:47:15 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Endpoints.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2020-04-20 02:04:13 +00:00
|
|
|
protected $endpoint = '/wc-admin/plugins';
|
2019-12-30 07:47:15 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Setup test data. Called before every test.
|
|
|
|
*/
|
|
|
|
public function setUp() {
|
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
$this->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(
|
2020-05-27 07:28:13 +00:00
|
|
|
'plugins' => 'facebook-for-woocommerce',
|
2019-12-30 07:47:15 +00:00
|
|
|
)
|
|
|
|
);
|
|
|
|
$response = $this->server->dispatch( $request );
|
|
|
|
$data = $response->get_data();
|
|
|
|
$plugins = get_plugins();
|
|
|
|
|
|
|
|
$this->assertEquals( 200, $response->get_status() );
|
2020-05-27 07:28:13 +00:00
|
|
|
$this->assertEquals( array( 'facebook-for-woocommerce' ), $data['data']['installed'] );
|
|
|
|
$this->assertEquals( true, $data['success'] );
|
2019-12-30 07:47:15 +00:00
|
|
|
$this->assertArrayHasKey( 'facebook-for-woocommerce/facebook-for-woocommerce.php', $plugins );
|
|
|
|
}
|
|
|
|
|
2022-01-31 14:17:14 +00:00
|
|
|
/**
|
|
|
|
* Test that scheduling a plugin install works.
|
|
|
|
*/
|
|
|
|
public function test_install_plugin_async() {
|
|
|
|
wp_set_current_user( $this->user );
|
|
|
|
|
|
|
|
$request = new WP_REST_Request( 'POST', $this->endpoint . '/install' );
|
|
|
|
$request->set_query_params(
|
|
|
|
array(
|
|
|
|
'async' => true,
|
|
|
|
'plugins' => 'facebook-for-woocommerce',
|
|
|
|
)
|
|
|
|
);
|
|
|
|
$response = $this->server->dispatch( $request );
|
|
|
|
$data = $response->get_data();
|
|
|
|
$plugins = get_plugins();
|
|
|
|
|
|
|
|
$this->assertEquals( 200, $response->get_status() );
|
|
|
|
$this->assertArrayHasKey( 'job_id', $data['data'] );
|
|
|
|
}
|
|
|
|
|
2019-12-30 07:47:15 +00:00
|
|
|
/**
|
2020-05-27 07:28:13 +00:00
|
|
|
* Test that installing with invalid params fails.
|
2019-12-30 07:47:15 +00:00
|
|
|
*/
|
2020-05-27 07:28:13 +00:00
|
|
|
public function test_install_invalid_plugins_param() {
|
2019-12-30 07:47:15 +00:00
|
|
|
wp_set_current_user( $this->user );
|
|
|
|
|
2020-05-27 07:28:13 +00:00
|
|
|
$request = new WP_REST_Request( 'POST', $this->endpoint . '/install' );
|
2019-12-30 07:47:15 +00:00
|
|
|
$response = $this->server->dispatch( $request );
|
|
|
|
$data = $response->get_data();
|
|
|
|
|
2020-05-27 07:28:13 +00:00
|
|
|
$this->assertEquals( 'woocommerce_rest_invalid_plugins', $data['code'] );
|
2019-12-30 07:47:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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();
|
2020-04-20 02:04:13 +00:00
|
|
|
$active_plugins = Plugins::get_active_plugins();
|
2019-12-30 07:47:15 +00:00
|
|
|
|
|
|
|
$this->assertEquals( 200, $response->get_status() );
|
2020-05-27 07:28:13 +00:00
|
|
|
$this->assertContains( 'facebook-for-woocommerce', $data['data']['activated'] );
|
|
|
|
$this->assertEquals( true, $data['success'] );
|
2019-12-30 07:47:15 +00:00
|
|
|
$this->assertContains( 'facebook-for-woocommerce', $active_plugins );
|
|
|
|
}
|
|
|
|
|
2022-01-31 14:17:14 +00:00
|
|
|
/**
|
|
|
|
* Test that scheduling a plugin activation works.
|
|
|
|
*/
|
|
|
|
public function test_activate_plugin_async() {
|
|
|
|
wp_set_current_user( $this->user );
|
|
|
|
|
|
|
|
$request = new WP_REST_Request( 'POST', $this->endpoint . '/activate' );
|
|
|
|
$request->set_query_params(
|
|
|
|
array(
|
|
|
|
'async' => true,
|
|
|
|
'plugins' => 'facebook-for-woocommerce',
|
|
|
|
)
|
|
|
|
);
|
|
|
|
$response = $this->server->dispatch( $request );
|
|
|
|
$data = $response->get_data();
|
|
|
|
$plugins = get_plugins();
|
|
|
|
|
|
|
|
$this->assertEquals( 200, $response->get_status() );
|
|
|
|
$this->assertArrayHasKey( 'job_id', $data['data'] );
|
|
|
|
}
|
|
|
|
|
2019-12-30 07:47:15 +00:00
|
|
|
/**
|
2020-05-27 07:28:13 +00:00
|
|
|
* 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'] );
|
|
|
|
}
|
2021-04-20 17:17:19 +00:00
|
|
|
|
|
|
|
/**
|
2021-11-16 13:57:23 +00:00
|
|
|
* @return string locale
|
|
|
|
*/
|
|
|
|
public function set_france_locale() {
|
|
|
|
return 'fr_FR';
|
|
|
|
}
|
|
|
|
|
2019-12-30 07:47:15 +00:00
|
|
|
}
|