Add test for read method in custom order table data store.
This commit is contained in:
parent
6b23370edb
commit
57f66ffa7a
|
@ -4,6 +4,11 @@ use Automattic\WooCommerce\Database\Migrations\CustomOrderTable\WPPostToCOTMigra
|
||||||
use Automattic\WooCommerce\Internal\DataStores\Orders\OrdersTableDataStore;
|
use Automattic\WooCommerce\Internal\DataStores\Orders\OrdersTableDataStore;
|
||||||
use Automattic\WooCommerce\RestApi\UnitTests\Helpers\OrderHelper;
|
use Automattic\WooCommerce\RestApi\UnitTests\Helpers\OrderHelper;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class OrdersTableDataStoreTests.
|
||||||
|
*
|
||||||
|
* Test or OrdersTableDataStore class.
|
||||||
|
*/
|
||||||
class OrdersTableDataStoreTests extends WC_Unit_Test_Case {
|
class OrdersTableDataStoreTests extends WC_Unit_Test_Case {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -21,6 +26,9 @@ class OrdersTableDataStoreTests extends WC_Unit_Test_Case {
|
||||||
*/
|
*/
|
||||||
private $cpt_data_store;
|
private $cpt_data_store;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initializes system under test.
|
||||||
|
*/
|
||||||
public function setUp(): void {
|
public function setUp(): void {
|
||||||
parent::setUp();
|
parent::setUp();
|
||||||
OrderHelper::create_order_custom_table_if_not_exist();
|
OrderHelper::create_order_custom_table_if_not_exist();
|
||||||
|
@ -29,6 +37,9 @@ class OrdersTableDataStoreTests extends WC_Unit_Test_Case {
|
||||||
$this->cpt_data_store = new WC_Order_Data_Store_CPT();
|
$this->cpt_data_store = new WC_Order_Data_Store_CPT();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Test reading from migrated post order.
|
||||||
|
*/
|
||||||
public function test_read_from_migrated_order() {
|
public function test_read_from_migrated_order() {
|
||||||
$post_order_id = OrderHelper::create_complex_wp_post_order();
|
$post_order_id = OrderHelper::create_complex_wp_post_order();
|
||||||
$this->migrator->process_migration_for_ids( array( $post_order_id ) );
|
$this->migrator->process_migration_for_ids( array( $post_order_id ) );
|
||||||
|
@ -41,7 +52,18 @@ class OrdersTableDataStoreTests extends WC_Unit_Test_Case {
|
||||||
$post_order->set_id( $post_order_id );
|
$post_order->set_id( $post_order_id );
|
||||||
$this->cpt_data_store->read( $post_order );
|
$this->cpt_data_store->read( $post_order );
|
||||||
|
|
||||||
$this->assertEquals( $cot_order->get_status(), $post_order->get_status() );
|
$post_order_data = $post_order->get_data();
|
||||||
|
$string_to_num_keys = array( 'discount_total', 'discount_tax', 'shipping_total', 'shipping_tax', 'cart_tax' );
|
||||||
|
array_walk(
|
||||||
|
$post_order_data,
|
||||||
|
function ( &$data, $key ) use ( $string_to_num_keys ) {
|
||||||
|
if ( in_array( $key, $string_to_num_keys, true ) ) {
|
||||||
|
$data = (float) $data;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
$this->assertEquals( $post_order_data, $cot_order->get_data() );
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue