2019-09-06 02:06:29 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Onboarding Tasks REST API Test
|
|
|
|
*
|
2020-08-11 19:18:47 +00:00
|
|
|
* @package WooCommerce\Admin\Tests\API
|
2019-09-06 02:06:29 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
use \Automattic\WooCommerce\Admin\API\OnboardingTasks;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* WC Tests API Onboarding Tasks
|
|
|
|
*/
|
|
|
|
class WC_Tests_API_Onboarding_Tasks extends WC_REST_Unit_Test_Case {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Endpoints.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2019-11-12 18:15:55 +00:00
|
|
|
protected $endpoint = '/wc-admin/onboarding/tasks';
|
2019-09-06 02:06:29 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Setup test data. Called before every test.
|
|
|
|
*/
|
|
|
|
public function setUp() {
|
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
$this->user = $this->factory->user->create(
|
|
|
|
array(
|
|
|
|
'role' => 'administrator',
|
|
|
|
)
|
|
|
|
);
|
2021-04-30 01:38:26 +00:00
|
|
|
|
|
|
|
// Empty the db of any products.
|
|
|
|
$query = new \WC_Product_Query();
|
|
|
|
$products = $query->get_products();
|
|
|
|
foreach ( $products as $product ) {
|
|
|
|
$product->delete( true );
|
|
|
|
}
|
2019-09-06 02:06:29 +00:00
|
|
|
}
|
|
|
|
|
2021-01-27 17:57:58 +00:00
|
|
|
/**
|
|
|
|
* Tear down.
|
|
|
|
*/
|
|
|
|
public function tearDown() {
|
|
|
|
parent::tearDown();
|
|
|
|
$this->remove_color_or_logo_attribute_taxonomy();
|
|
|
|
}
|
|
|
|
|
2021-01-25 16:52:42 +00:00
|
|
|
/**
|
|
|
|
* Remove product attributes that where created in previous tests.
|
|
|
|
*/
|
2021-01-27 17:57:58 +00:00
|
|
|
public function remove_color_or_logo_attribute_taxonomy() {
|
2021-01-25 16:52:42 +00:00
|
|
|
$taxonomies = get_taxonomies();
|
|
|
|
foreach ( (array) $taxonomies as $taxonomy ) {
|
|
|
|
// pa - product attribute.
|
2021-01-27 17:57:58 +00:00
|
|
|
if ( 'pa_color' === $taxonomy || 'pa_logo' === $taxonomy ) {
|
2021-01-25 16:52:42 +00:00
|
|
|
unregister_taxonomy( $taxonomy );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-06 02:06:29 +00:00
|
|
|
/**
|
|
|
|
* Test that sample product data is imported.
|
|
|
|
*/
|
|
|
|
public function test_import_sample_products() {
|
|
|
|
wp_set_current_user( $this->user );
|
|
|
|
|
2021-01-27 17:57:58 +00:00
|
|
|
$this->remove_color_or_logo_attribute_taxonomy();
|
2021-01-25 16:52:42 +00:00
|
|
|
|
2019-09-06 02:06:29 +00:00
|
|
|
$request = new WP_REST_Request( 'POST', $this->endpoint . '/import_sample_products' );
|
|
|
|
$response = $this->server->dispatch( $request );
|
|
|
|
$data = $response->get_data();
|
|
|
|
|
|
|
|
$this->assertEquals( 200, $response->get_status() );
|
|
|
|
|
|
|
|
$this->assertArrayHasKey( 'failed', $data );
|
2021-01-25 16:52:42 +00:00
|
|
|
$this->assertEquals( 0, count( $data['failed'] ) );
|
2019-09-06 02:06:29 +00:00
|
|
|
$this->assertArrayHasKey( 'imported', $data );
|
|
|
|
$this->assertArrayHasKey( 'skipped', $data );
|
2021-01-25 16:52:42 +00:00
|
|
|
// There might be previous products present.
|
|
|
|
if ( 0 === count( $data['skipped'] ) ) {
|
2021-01-27 17:57:58 +00:00
|
|
|
$this->assertGreaterThan( 1, count( $data['imported'] ) );
|
2021-01-25 16:52:42 +00:00
|
|
|
}
|
2019-09-06 02:06:29 +00:00
|
|
|
$this->assertArrayHasKey( 'updated', $data );
|
2021-01-25 16:52:42 +00:00
|
|
|
$this->assertEquals( 0, count( $data['updated'] ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test creating a product from a template name.
|
|
|
|
*/
|
|
|
|
public function test_create_product_from_template() {
|
|
|
|
wp_set_current_user( $this->user );
|
|
|
|
|
|
|
|
$request = new WP_REST_Request( 'POST', $this->endpoint . '/create_product_from_template' );
|
|
|
|
$request->set_param( 'template_name', 'physical' );
|
|
|
|
$response = $this->server->dispatch( $request );
|
|
|
|
$data = $response->get_data();
|
|
|
|
|
|
|
|
$this->assertEquals( 200, $response->get_status() );
|
|
|
|
|
|
|
|
$this->assertArrayHasKey( 'id', $data );
|
|
|
|
$product = wc_get_product( $data['id'] );
|
|
|
|
$this->assertEquals( 'auto-draft', $product->get_status() );
|
|
|
|
$this->assertEquals( 'simple', $product->get_type() );
|
|
|
|
|
|
|
|
$request = new WP_REST_Request( 'POST', $this->endpoint . '/create_product_from_template' );
|
|
|
|
$request->set_param( 'template_name', 'digital' );
|
|
|
|
$response = $this->server->dispatch( $request );
|
|
|
|
$data = $response->get_data();
|
|
|
|
|
|
|
|
$this->assertEquals( 200, $response->get_status() );
|
|
|
|
|
|
|
|
$this->assertArrayHasKey( 'id', $data );
|
|
|
|
$product = wc_get_product( $data['id'] );
|
|
|
|
$this->assertEquals( 'auto-draft', $product->get_status() );
|
|
|
|
$this->assertEquals( 'simple', $product->get_type() );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test that we get an error when template_name does not exist.
|
|
|
|
*/
|
|
|
|
public function test_create_product_from_wrong_template_name() {
|
|
|
|
wp_set_current_user( $this->user );
|
|
|
|
|
|
|
|
$request = new WP_REST_Request( 'POST', $this->endpoint . '/create_product_from_template' );
|
|
|
|
$request->set_param( 'template_name', 'random' );
|
|
|
|
$response = $this->server->dispatch( $request );
|
|
|
|
|
|
|
|
$this->assertEquals( 500, $response->get_status() );
|
2019-09-06 02:06:29 +00:00
|
|
|
}
|
2019-09-06 14:18:44 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Test that Tasks data is returned by the endpoint.
|
|
|
|
*/
|
|
|
|
public function test_create_homepage() {
|
|
|
|
wp_set_current_user( $this->user );
|
|
|
|
|
|
|
|
$request = new WP_REST_Request( 'POST', $this->endpoint . '/create_homepage' );
|
|
|
|
$response = $this->server->dispatch( $request );
|
|
|
|
$data = $response->get_data();
|
|
|
|
|
|
|
|
$this->assertEquals( 200, $response->get_status() );
|
|
|
|
$this->assertEquals( 'success', $data['status'] );
|
|
|
|
$this->assertEquals( get_option( 'woocommerce_onboarding_homepage_post_id' ), $data['post_id'] );
|
|
|
|
$this->assertEquals( htmlspecialchars_decode( get_edit_post_link( get_option( 'woocommerce_onboarding_homepage_post_id' ) ) ), $data['edit_post_link'] );
|
|
|
|
}
|
2020-04-08 21:26:03 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Test that the default homepage template can be filtered.
|
|
|
|
*/
|
|
|
|
public function test_homepage_template_can_be_filtered() {
|
|
|
|
wp_set_current_user( $this->user );
|
|
|
|
|
|
|
|
add_filter(
|
|
|
|
'woocommerce_admin_onboarding_homepage_template',
|
|
|
|
function ( $template ) {
|
|
|
|
return 'Custom post content';
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
$request = new WP_REST_Request( 'POST', $this->endpoint . '/create_homepage' );
|
|
|
|
$response = $this->server->dispatch( $request );
|
|
|
|
$data = $response->get_data();
|
|
|
|
|
|
|
|
$this->assertSame( 'Custom post content', get_the_content( null, null, $data['post_id'] ) );
|
|
|
|
}
|
2021-01-25 16:52:42 +00:00
|
|
|
|
|
|
|
|
2019-09-06 02:06:29 +00:00
|
|
|
}
|