2019-10-21 11:11:52 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Controller Tests.
|
|
|
|
*
|
|
|
|
* @package WooCommerce\Blocks\Tests
|
|
|
|
*/
|
|
|
|
|
2020-04-22 14:39:19 +00:00
|
|
|
namespace Automattic\WooCommerce\Blocks\Tests\StoreApi\Controllers;
|
2019-10-21 11:11:52 +00:00
|
|
|
|
|
|
|
use \WP_REST_Request;
|
|
|
|
use \WC_REST_Unit_Test_Case as TestCase;
|
|
|
|
use \WC_Helper_Product as ProductHelper;
|
2020-01-17 11:34:15 +00:00
|
|
|
use Automattic\WooCommerce\Blocks\Tests\Helpers\ValidateSchema;
|
2019-10-21 11:11:52 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Cart Controller Tests.
|
|
|
|
*/
|
|
|
|
class CartItems extends TestCase {
|
|
|
|
/**
|
|
|
|
* Setup test products data. Called before every test.
|
|
|
|
*/
|
|
|
|
public function setUp() {
|
2020-01-17 11:34:15 +00:00
|
|
|
global $wpdb;
|
|
|
|
|
2019-10-21 11:11:52 +00:00
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
wp_set_current_user( 0 );
|
|
|
|
|
|
|
|
update_option( 'woocommerce_weight_unit', 'g' );
|
|
|
|
|
|
|
|
$this->products = [];
|
|
|
|
|
2020-01-17 11:34:15 +00:00
|
|
|
// Create a test simple product.
|
2019-10-21 11:11:52 +00:00
|
|
|
$this->products[0] = ProductHelper::create_simple_product( false );
|
|
|
|
$this->products[0]->set_weight( 10 );
|
|
|
|
$this->products[0]->set_regular_price( 10 );
|
|
|
|
$this->products[0]->save();
|
|
|
|
|
2020-01-17 11:34:15 +00:00
|
|
|
$image_url = media_sideload_image( 'http://cldup.com/Dr1Bczxq4q.png', $this->products[0]->get_id(), '', 'src' );
|
|
|
|
$image_id = $wpdb->get_col( $wpdb->prepare( "SELECT ID FROM {$wpdb->posts} WHERE guid = %s", $image_url ) );
|
|
|
|
$this->products[0]->set_image_id( $image_id[0] );
|
|
|
|
$this->products[0]->save();
|
|
|
|
|
|
|
|
// Create a test variable product.
|
|
|
|
$this->products[1] = ProductHelper::create_variation_product( false );
|
2019-10-21 11:11:52 +00:00
|
|
|
$this->products[1]->set_weight( 10 );
|
|
|
|
$this->products[1]->set_regular_price( 10 );
|
|
|
|
$this->products[1]->save();
|
|
|
|
|
|
|
|
wc_empty_cart();
|
|
|
|
|
2020-01-17 11:34:15 +00:00
|
|
|
$this->keys = [];
|
2019-10-21 11:11:52 +00:00
|
|
|
$this->keys[] = wc()->cart->add_to_cart( $this->products[0]->get_id(), 2 );
|
2020-01-17 11:34:15 +00:00
|
|
|
$this->keys[] = wc()->cart->add_to_cart( $this->products[1]->get_id(), 1, current( $this->products[1]->get_children() ), [ 'size' => 'small' ] );
|
2019-10-21 11:11:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test route registration.
|
|
|
|
*/
|
|
|
|
public function test_register_routes() {
|
|
|
|
$routes = $this->server->get_routes();
|
|
|
|
$this->assertArrayHasKey( '/wc/store/cart/items', $routes );
|
|
|
|
$this->assertArrayHasKey( '/wc/store/cart/items/(?P<key>[\w-]{32})', $routes );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test getting cart.
|
|
|
|
*/
|
|
|
|
public function test_get_items() {
|
|
|
|
$response = $this->server->dispatch( new WP_REST_Request( 'GET', '/wc/store/cart/items' ) );
|
|
|
|
$data = $response->get_data();
|
|
|
|
|
|
|
|
$this->assertEquals( 200, $response->get_status() );
|
|
|
|
$this->assertEquals( 2, count( $data ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test getting cart item by key.
|
|
|
|
*/
|
|
|
|
public function test_get_item() {
|
|
|
|
$response = $this->server->dispatch( new WP_REST_Request( 'GET', '/wc/store/cart/items/' . $this->keys[0] ) );
|
|
|
|
$data = $response->get_data();
|
|
|
|
|
|
|
|
$this->assertEquals( 200, $response->get_status() );
|
|
|
|
$this->assertEquals( $this->keys[0], $data['key'] );
|
|
|
|
$this->assertEquals( $this->products[0]->get_id(), $data['id'] );
|
|
|
|
$this->assertEquals( $this->products[0]->get_name(), $data['name'] );
|
|
|
|
$this->assertEquals( $this->products[0]->get_sku(), $data['sku'] );
|
|
|
|
$this->assertEquals( $this->products[0]->get_permalink(), $data['permalink'] );
|
|
|
|
$this->assertEquals( 2, $data['quantity'] );
|
2020-01-17 11:34:15 +00:00
|
|
|
$this->assertEquals( '2000', $data['totals']->line_subtotal );
|
|
|
|
$this->assertEquals( '2000', $data['totals']->line_total );
|
2019-10-21 11:11:52 +00:00
|
|
|
|
2019-10-25 09:43:52 +00:00
|
|
|
$request = new WP_REST_Request( 'DELETE', '/wc/store/cart/items/XXX815416f775098fe977004015c6193' );
|
2020-03-19 11:50:51 +00:00
|
|
|
$request->set_header( 'X-WC-Store-API-Nonce', wp_create_nonce( 'wc_store_api' ) );
|
2019-10-21 11:11:52 +00:00
|
|
|
$response = $this->server->dispatch( $request );
|
|
|
|
$data = $response->get_data();
|
|
|
|
|
|
|
|
$this->assertEquals( 404, $response->get_status() );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test add to cart.
|
|
|
|
*/
|
|
|
|
public function test_create_item() {
|
|
|
|
wc_empty_cart();
|
|
|
|
|
|
|
|
$request = new WP_REST_Request( 'POST', '/wc/store/cart/items' );
|
2020-03-19 11:50:51 +00:00
|
|
|
$request->set_header( 'X-WC-Store-API-Nonce', wp_create_nonce( 'wc_store_api' ) );
|
2019-10-21 11:11:52 +00:00
|
|
|
$request->set_body_params(
|
|
|
|
array(
|
|
|
|
'id' => $this->products[0]->get_id(),
|
|
|
|
'quantity' => '10',
|
|
|
|
)
|
|
|
|
);
|
|
|
|
$response = $this->server->dispatch( $request );
|
|
|
|
$data = $response->get_data();
|
|
|
|
|
2019-10-25 09:43:52 +00:00
|
|
|
$this->assertEquals( 201, $response->get_status() );
|
2019-10-21 11:11:52 +00:00
|
|
|
$this->assertEquals( $this->products[0]->get_id(), $data['id'] );
|
|
|
|
$this->assertEquals( 10, $data['quantity'] );
|
|
|
|
|
|
|
|
$response = $this->server->dispatch( $request );
|
|
|
|
$data = $response->get_data();
|
|
|
|
|
2019-10-25 09:43:52 +00:00
|
|
|
$this->assertEquals( 201, $response->get_status() );
|
2019-10-21 11:11:52 +00:00
|
|
|
$this->assertEquals( $this->products[0]->get_id(), $data['id'] );
|
|
|
|
$this->assertEquals( 20, $data['quantity'] );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test add to cart does not allow invalid items.
|
|
|
|
*/
|
|
|
|
public function test_invalid_create_item() {
|
|
|
|
wc_empty_cart();
|
|
|
|
|
|
|
|
$invalid_product = ProductHelper::create_simple_product( false );
|
|
|
|
$invalid_product->set_regular_price( '' );
|
|
|
|
$invalid_product->save();
|
|
|
|
|
|
|
|
$request = new WP_REST_Request( 'POST', '/wc/store/cart/items' );
|
2020-03-19 11:50:51 +00:00
|
|
|
$request->set_header( 'X-WC-Store-API-Nonce', wp_create_nonce( 'wc_store_api' ) );
|
2019-10-21 11:11:52 +00:00
|
|
|
$request->set_body_params(
|
|
|
|
array(
|
|
|
|
'id' => $invalid_product->get_id(),
|
|
|
|
'quantity' => '10',
|
|
|
|
)
|
|
|
|
);
|
|
|
|
$response = $this->server->dispatch( $request );
|
|
|
|
|
2020-04-29 14:47:05 +00:00
|
|
|
$this->assertEquals( 400, $response->get_status() );
|
2019-10-21 11:11:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test updating an item.
|
|
|
|
*/
|
|
|
|
public function test_update_item() {
|
2020-03-13 12:41:01 +00:00
|
|
|
$request = new WP_REST_Request( 'PUT', '/wc/store/cart/items/' . $this->keys[0] );
|
2020-03-19 11:50:51 +00:00
|
|
|
$request->set_header( 'X-WC-Store-API-Nonce', wp_create_nonce( 'wc_store_api' ) );
|
2019-10-21 11:11:52 +00:00
|
|
|
$request->set_body_params(
|
|
|
|
array(
|
|
|
|
'quantity' => '10',
|
|
|
|
)
|
|
|
|
);
|
|
|
|
$response = $this->server->dispatch( $request );
|
|
|
|
$data = $response->get_data();
|
|
|
|
|
|
|
|
$this->assertEquals( 200, $response->get_status() );
|
|
|
|
$this->assertEquals( 10, $data['quantity'] );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test delete item.
|
|
|
|
*/
|
|
|
|
public function test_delete_item() {
|
2020-01-17 11:34:15 +00:00
|
|
|
$request = new WP_REST_Request( 'DELETE', '/wc/store/cart/items/' . $this->keys[0] );
|
2020-03-19 11:50:51 +00:00
|
|
|
$request->set_header( 'X-WC-Store-API-Nonce', wp_create_nonce( 'wc_store_api' ) );
|
2019-10-21 11:11:52 +00:00
|
|
|
$response = $this->server->dispatch( $request );
|
|
|
|
$data = $response->get_data();
|
|
|
|
|
|
|
|
$this->assertEquals( 204, $response->get_status() );
|
|
|
|
$this->assertEmpty( $data );
|
|
|
|
|
2020-01-17 11:34:15 +00:00
|
|
|
$request = new WP_REST_Request( 'DELETE', '/wc/store/cart/items/' . $this->keys[0] );
|
2020-03-19 11:50:51 +00:00
|
|
|
$request->set_header( 'X-WC-Store-API-Nonce', wp_create_nonce( 'wc_store_api' ) );
|
2019-10-21 11:11:52 +00:00
|
|
|
$response = $this->server->dispatch( $request );
|
|
|
|
$data = $response->get_data();
|
|
|
|
|
|
|
|
$this->assertEquals( 404, $response->get_status() );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test delete all items.
|
|
|
|
*/
|
|
|
|
public function test_delete_items() {
|
2020-01-17 11:34:15 +00:00
|
|
|
$request = new WP_REST_Request( 'DELETE', '/wc/store/cart/items' );
|
2020-03-19 11:50:51 +00:00
|
|
|
$request->set_header( 'X-WC-Store-API-Nonce', wp_create_nonce( 'wc_store_api' ) );
|
2019-10-21 11:11:52 +00:00
|
|
|
$response = $this->server->dispatch( $request );
|
|
|
|
$data = $response->get_data();
|
|
|
|
|
|
|
|
$this->assertEquals( 200, $response->get_status() );
|
|
|
|
$this->assertEquals( [], $data );
|
|
|
|
|
|
|
|
$response = $this->server->dispatch( new WP_REST_Request( 'GET', '/wc/store/cart/items' ) );
|
|
|
|
$data = $response->get_data();
|
|
|
|
|
|
|
|
$this->assertEquals( 200, $response->get_status() );
|
|
|
|
$this->assertEquals( 0, count( $data ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test conversion of cart item to rest response.
|
|
|
|
*/
|
|
|
|
public function test_prepare_item_for_response() {
|
2020-04-22 14:39:19 +00:00
|
|
|
$routes = new \Automattic\WooCommerce\Blocks\StoreApi\RoutesController( new \Automattic\WooCommerce\Blocks\StoreApi\SchemaController() );
|
2020-04-06 10:36:28 +00:00
|
|
|
$controller = $routes->get( 'cart-items' );
|
2019-10-21 11:11:52 +00:00
|
|
|
$cart = wc()->cart->get_cart();
|
2020-03-13 12:41:01 +00:00
|
|
|
$response = $controller->prepare_item_for_response( current( $cart ), new \WP_REST_Request() );
|
2020-01-17 11:34:15 +00:00
|
|
|
$data = $response->get_data();
|
|
|
|
|
|
|
|
$this->assertArrayHasKey( 'key', $data );
|
|
|
|
$this->assertArrayHasKey( 'id', $data );
|
|
|
|
$this->assertArrayHasKey( 'quantity', $data );
|
|
|
|
$this->assertArrayHasKey( 'name', $data );
|
|
|
|
$this->assertArrayHasKey( 'sku', $data );
|
|
|
|
$this->assertArrayHasKey( 'permalink', $data );
|
|
|
|
$this->assertArrayHasKey( 'images', $data );
|
|
|
|
$this->assertArrayHasKey( 'totals', $data );
|
|
|
|
$this->assertArrayHasKey( 'variation', $data );
|
2020-01-17 11:46:17 +00:00
|
|
|
$this->assertArrayHasKey( 'low_stock_remaining', $data );
|
2020-03-10 11:43:57 +00:00
|
|
|
$this->assertArrayHasKey( 'backorders_allowed', $data );
|
2020-01-17 11:46:17 +00:00
|
|
|
$this->assertArrayHasKey( 'short_description', $data );
|
2020-01-17 11:34:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test schema matches responses.
|
|
|
|
*
|
|
|
|
* Tests schema of both products in cart to cover as much schema as possible.
|
|
|
|
*/
|
|
|
|
public function test_schema_matches_response() {
|
2020-04-22 14:39:19 +00:00
|
|
|
$routes = new \Automattic\WooCommerce\Blocks\StoreApi\RoutesController( new \Automattic\WooCommerce\Blocks\StoreApi\SchemaController() );
|
2020-04-06 10:36:28 +00:00
|
|
|
$controller = $routes->get( 'cart-items' );
|
2020-01-17 11:34:15 +00:00
|
|
|
$schema = $controller->get_item_schema();
|
2020-04-06 10:36:28 +00:00
|
|
|
$cart = wc()->cart->get_cart();
|
2020-01-17 11:34:15 +00:00
|
|
|
$validate = new ValidateSchema( $schema );
|
|
|
|
|
|
|
|
// Simple product.
|
2020-03-13 12:41:01 +00:00
|
|
|
$response = $controller->prepare_item_for_response( current( $cart ), new \WP_REST_Request() );
|
2020-01-17 11:34:15 +00:00
|
|
|
$diff = $validate->get_diff_from_object( $response->get_data() );
|
|
|
|
$this->assertEmpty( $diff, print_r( $diff, true ) );
|
2019-10-21 11:11:52 +00:00
|
|
|
|
2020-01-17 11:34:15 +00:00
|
|
|
// Variable product.
|
2020-03-13 12:41:01 +00:00
|
|
|
$response = $controller->prepare_item_for_response( end( $cart ), new \WP_REST_Request() );
|
2020-01-17 11:34:15 +00:00
|
|
|
$diff = $validate->get_diff_from_object( $response->get_data() );
|
|
|
|
$this->assertEmpty( $diff, print_r( $diff, true ) );
|
2019-10-21 11:11:52 +00:00
|
|
|
}
|
|
|
|
}
|