2018-12-11 00:58:05 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Reports Taxes REST API Test
|
|
|
|
*
|
|
|
|
* @package WooCommerce\Tests\API
|
|
|
|
* @since 3.5.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* WC_Tests_API_Reports_Taxes
|
|
|
|
*/
|
|
|
|
class WC_Tests_API_Reports_Taxes extends WC_REST_Unit_Test_Case {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Endpoints.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2019-01-18 02:52:58 +00:00
|
|
|
protected $endpoint = '/wc/v4/reports/taxes';
|
2018-12-11 00:58:05 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Setup test reports taxes data.
|
|
|
|
*
|
|
|
|
* @since 3.5.0
|
|
|
|
*/
|
|
|
|
public function setUp() {
|
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
$this->user = $this->factory->user->create(
|
|
|
|
array(
|
|
|
|
'role' => 'administrator',
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test route registration.
|
|
|
|
*
|
|
|
|
* @since 3.5.0
|
|
|
|
*/
|
|
|
|
public function test_register_routes() {
|
|
|
|
$routes = $this->server->get_routes();
|
|
|
|
|
|
|
|
$this->assertArrayHasKey( $this->endpoint, $routes );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test getting reports.
|
|
|
|
*
|
|
|
|
* @since 3.5.0
|
|
|
|
*/
|
|
|
|
public function test_get_reports() {
|
|
|
|
global $wpdb;
|
|
|
|
wp_set_current_user( $this->user );
|
|
|
|
WC_Helper_Reports::reset_stats_dbs();
|
|
|
|
|
|
|
|
// Populate all of the data.
|
|
|
|
$product = new WC_Product_Simple();
|
|
|
|
$product->set_name( 'Test Product' );
|
|
|
|
$product->set_regular_price( 25 );
|
|
|
|
$product->save();
|
|
|
|
|
|
|
|
$wpdb->insert(
|
|
|
|
$wpdb->prefix . 'woocommerce_tax_rates',
|
|
|
|
array(
|
|
|
|
'tax_rate_id' => 1,
|
|
|
|
'tax_rate' => '7',
|
|
|
|
'tax_rate_country' => 'US',
|
|
|
|
'tax_rate_state' => 'GA',
|
|
|
|
'tax_rate_name' => 'TestTax',
|
|
|
|
'tax_rate_priority' => 1,
|
|
|
|
'tax_rate_order' => 1,
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
$order = WC_Helper_Order::create_order( 1, $product );
|
|
|
|
$order->set_status( 'completed' );
|
|
|
|
$order->set_total( 100 ); // $25 x 4.
|
|
|
|
$order->save();
|
|
|
|
|
|
|
|
// @todo Remove this once order data is synced to wc_order_tax_lookup
|
|
|
|
$wpdb->insert(
|
|
|
|
$wpdb->prefix . 'wc_order_tax_lookup',
|
|
|
|
array(
|
2019-01-16 02:23:00 +00:00
|
|
|
'order_id' => $order->get_id(),
|
2018-12-11 00:58:05 +00:00
|
|
|
'tax_rate_id' => 1,
|
|
|
|
'date_created' => date( 'Y-m-d H:i:s' ),
|
|
|
|
'shipping_tax' => 2,
|
|
|
|
'order_tax' => 5,
|
|
|
|
'total_tax' => 7,
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
2019-01-30 16:59:45 +00:00
|
|
|
WC_Helper_Queue::run_all_pending();
|
|
|
|
|
2018-12-11 00:58:05 +00:00
|
|
|
$response = $this->server->dispatch( new WP_REST_Request( 'GET', $this->endpoint ) );
|
|
|
|
$reports = $response->get_data();
|
|
|
|
|
|
|
|
$this->assertEquals( 200, $response->get_status() );
|
|
|
|
$this->assertEquals( 1, count( $reports ) );
|
|
|
|
|
|
|
|
$tax_report = reset( $reports );
|
|
|
|
|
|
|
|
$this->assertEquals( 1, $tax_report['tax_rate_id'] );
|
|
|
|
$this->assertEquals( 'TestTax', $tax_report['name'] );
|
|
|
|
$this->assertEquals( 7, $tax_report['tax_rate'] );
|
|
|
|
$this->assertEquals( 'US', $tax_report['country'] );
|
|
|
|
$this->assertEquals( 'GA', $tax_report['state'] );
|
|
|
|
$this->assertEquals( 7, $tax_report['total_tax'] );
|
|
|
|
$this->assertEquals( 5, $tax_report['order_tax'] );
|
|
|
|
$this->assertEquals( 2, $tax_report['shipping_tax'] );
|
|
|
|
$this->assertEquals( 1, $tax_report['orders_count'] );
|
|
|
|
}
|
|
|
|
|
2019-03-06 11:36:43 +00:00
|
|
|
/**
|
|
|
|
* Test getting reports with the `taxes` report.
|
|
|
|
*
|
|
|
|
* @since 3.5.0
|
|
|
|
*/
|
|
|
|
public function test_get_reports_taxes_param() {
|
|
|
|
global $wpdb;
|
|
|
|
wp_set_current_user( $this->user );
|
|
|
|
WC_Helper_Reports::reset_stats_dbs();
|
|
|
|
|
|
|
|
// Populate all of the data.
|
|
|
|
$product = new WC_Product_Simple();
|
|
|
|
$product->set_name( 'Test Product' );
|
|
|
|
$product->set_regular_price( 25 );
|
|
|
|
$product->save();
|
|
|
|
|
|
|
|
$wpdb->insert(
|
|
|
|
$wpdb->prefix . 'woocommerce_tax_rates',
|
|
|
|
array(
|
|
|
|
'tax_rate_id' => 1,
|
|
|
|
'tax_rate' => '7',
|
|
|
|
'tax_rate_country' => 'US',
|
|
|
|
'tax_rate_state' => 'GA',
|
|
|
|
'tax_rate_name' => 'TestTax',
|
|
|
|
'tax_rate_priority' => 1,
|
|
|
|
'tax_rate_order' => 1,
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
$wpdb->insert(
|
|
|
|
$wpdb->prefix . 'woocommerce_tax_rates',
|
|
|
|
array(
|
|
|
|
'tax_rate_id' => 2,
|
|
|
|
'tax_rate' => '8',
|
|
|
|
'tax_rate_country' => 'CA',
|
|
|
|
'tax_rate_state' => 'ON',
|
|
|
|
'tax_rate_name' => 'TestTax 2',
|
|
|
|
'tax_rate_priority' => 1,
|
|
|
|
'tax_rate_order' => 1,
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
$order = WC_Helper_Order::create_order( 1, $product );
|
|
|
|
$order->set_status( 'completed' );
|
|
|
|
$order->set_total( 100 ); // $25 x 4.
|
|
|
|
$order->save();
|
|
|
|
|
|
|
|
// @todo Remove this once order data is synced to wc_order_tax_lookup
|
|
|
|
$wpdb->insert(
|
|
|
|
$wpdb->prefix . 'wc_order_tax_lookup',
|
|
|
|
array(
|
|
|
|
'order_id' => $order->get_id(),
|
|
|
|
'tax_rate_id' => 1,
|
|
|
|
'date_created' => date( 'Y-m-d H:i:s' ),
|
|
|
|
'shipping_tax' => 2,
|
|
|
|
'order_tax' => 5,
|
|
|
|
'total_tax' => 7,
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
WC_Helper_Queue::run_all_pending();
|
|
|
|
|
|
|
|
$response = $this->server->dispatch( new WP_REST_Request( 'GET', $this->endpoint ) );
|
2019-03-13 17:14:02 +00:00
|
|
|
$request = new WP_REST_Request( 'GET', $this->endpoint );
|
2019-03-06 11:36:43 +00:00
|
|
|
$request->set_query_params(
|
|
|
|
array(
|
2019-03-13 17:14:02 +00:00
|
|
|
'taxes' => '1,2',
|
2019-03-06 11:36:43 +00:00
|
|
|
)
|
|
|
|
);
|
|
|
|
$response = $this->server->dispatch( $request );
|
|
|
|
$reports = $response->get_data();
|
|
|
|
|
|
|
|
$this->assertEquals( 200, $response->get_status() );
|
|
|
|
$this->assertEquals( 2, count( $reports ) );
|
|
|
|
|
|
|
|
$tax_report = reset( $reports );
|
|
|
|
|
|
|
|
$this->assertEquals( 2, $tax_report['tax_rate_id'] );
|
|
|
|
$this->assertEquals( 'TestTax 2', $tax_report['name'] );
|
|
|
|
$this->assertEquals( 8, $tax_report['tax_rate'] );
|
|
|
|
$this->assertEquals( 'CA', $tax_report['country'] );
|
|
|
|
$this->assertEquals( 'ON', $tax_report['state'] );
|
|
|
|
$this->assertEquals( 0, $tax_report['total_tax'] );
|
|
|
|
$this->assertEquals( 0, $tax_report['order_tax'] );
|
|
|
|
$this->assertEquals( 0, $tax_report['shipping_tax'] );
|
|
|
|
$this->assertEquals( 0, $tax_report['orders_count'] );
|
|
|
|
|
|
|
|
$tax_report = next( $reports );
|
|
|
|
|
|
|
|
$this->assertEquals( 1, $tax_report['tax_rate_id'] );
|
|
|
|
$this->assertEquals( 'TestTax', $tax_report['name'] );
|
|
|
|
$this->assertEquals( 7, $tax_report['tax_rate'] );
|
|
|
|
$this->assertEquals( 'US', $tax_report['country'] );
|
|
|
|
$this->assertEquals( 'GA', $tax_report['state'] );
|
|
|
|
$this->assertEquals( 7, $tax_report['total_tax'] );
|
|
|
|
$this->assertEquals( 5, $tax_report['order_tax'] );
|
|
|
|
$this->assertEquals( 2, $tax_report['shipping_tax'] );
|
|
|
|
$this->assertEquals( 1, $tax_report['orders_count'] );
|
|
|
|
}
|
|
|
|
|
2019-03-12 09:31:19 +00:00
|
|
|
/**
|
|
|
|
* Test getting reports with param `orderby=rate`.
|
|
|
|
*
|
|
|
|
* @since 3.5.0
|
|
|
|
*/
|
|
|
|
public function test_get_reports_orderby_tax_rate() {
|
|
|
|
global $wpdb;
|
|
|
|
wp_set_current_user( $this->user );
|
|
|
|
WC_Helper_Reports::reset_stats_dbs();
|
|
|
|
|
|
|
|
$wpdb->insert(
|
|
|
|
$wpdb->prefix . 'woocommerce_tax_rates',
|
|
|
|
array(
|
|
|
|
'tax_rate_id' => 1,
|
|
|
|
'tax_rate' => '7',
|
|
|
|
'tax_rate_country' => 'US',
|
|
|
|
'tax_rate_state' => 'GA',
|
|
|
|
'tax_rate_name' => 'TestTax',
|
|
|
|
'tax_rate_priority' => 1,
|
|
|
|
'tax_rate_order' => 1,
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
$wpdb->insert(
|
|
|
|
$wpdb->prefix . 'woocommerce_tax_rates',
|
|
|
|
array(
|
|
|
|
'tax_rate_id' => 2,
|
|
|
|
'tax_rate' => '10',
|
|
|
|
'tax_rate_country' => 'CA',
|
|
|
|
'tax_rate_state' => 'ON',
|
|
|
|
'tax_rate_name' => 'TestTax 2',
|
|
|
|
'tax_rate_priority' => 1,
|
|
|
|
'tax_rate_order' => 1,
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
$request = new WP_REST_Request( 'GET', $this->endpoint );
|
|
|
|
$request->set_query_params(
|
|
|
|
array(
|
|
|
|
'order' => 'asc',
|
|
|
|
'orderby' => 'rate',
|
|
|
|
'taxes' => '1,2',
|
|
|
|
)
|
|
|
|
);
|
|
|
|
$response = $this->server->dispatch( $request );
|
|
|
|
$reports = $response->get_data();
|
|
|
|
|
|
|
|
$this->assertEquals( 200, $response->get_status() );
|
|
|
|
$this->assertEquals( 2, count( $reports ) );
|
|
|
|
|
|
|
|
$this->assertEquals( 1, $reports[0]['tax_rate_id'] );
|
|
|
|
$this->assertEquals( 7, $reports[0]['tax_rate'] );
|
|
|
|
|
|
|
|
$this->assertEquals( 2, $reports[1]['tax_rate_id'] );
|
|
|
|
$this->assertEquals( 10, $reports[1]['tax_rate'] );
|
|
|
|
}
|
|
|
|
|
2019-03-15 20:44:03 +00:00
|
|
|
/**
|
|
|
|
* Test getting reports with param `orderby=tax_code`.
|
|
|
|
*
|
|
|
|
* @since 3.5.0
|
|
|
|
*/
|
|
|
|
public function test_get_reports_orderby_tax_code() {
|
|
|
|
global $wpdb;
|
|
|
|
wp_set_current_user( $this->user );
|
|
|
|
WC_Helper_Reports::reset_stats_dbs();
|
|
|
|
|
|
|
|
$wpdb->insert(
|
|
|
|
$wpdb->prefix . 'woocommerce_tax_rates',
|
|
|
|
array(
|
|
|
|
'tax_rate_id' => 1,
|
|
|
|
'tax_rate' => '7',
|
|
|
|
'tax_rate_country' => 'US',
|
|
|
|
'tax_rate_state' => 'GA',
|
|
|
|
'tax_rate_name' => 'TestTax',
|
|
|
|
'tax_rate_priority' => 1,
|
|
|
|
'tax_rate_order' => 1,
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
$wpdb->insert(
|
|
|
|
$wpdb->prefix . 'woocommerce_tax_rates',
|
|
|
|
array(
|
|
|
|
'tax_rate_id' => 2,
|
|
|
|
'tax_rate' => '10',
|
|
|
|
'tax_rate_country' => 'CA',
|
|
|
|
'tax_rate_state' => 'ON',
|
|
|
|
'tax_rate_name' => 'TestTax 2',
|
|
|
|
'tax_rate_priority' => 1,
|
|
|
|
'tax_rate_order' => 1,
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
$request = new WP_REST_Request( 'GET', $this->endpoint );
|
|
|
|
$request->set_query_params(
|
|
|
|
array(
|
|
|
|
'order' => 'asc',
|
|
|
|
'orderby' => 'tax_code',
|
|
|
|
'taxes' => '1,2',
|
|
|
|
)
|
|
|
|
);
|
|
|
|
$response = $this->server->dispatch( $request );
|
|
|
|
$reports = $response->get_data();
|
|
|
|
|
|
|
|
$this->assertEquals( 200, $response->get_status() );
|
|
|
|
$this->assertEquals( 2, count( $reports ) );
|
|
|
|
|
|
|
|
$this->assertEquals( 2, $reports[0]['tax_rate_id'] );
|
|
|
|
|
|
|
|
$this->assertEquals( 1, $reports[1]['tax_rate_id'] );
|
|
|
|
}
|
|
|
|
|
2018-12-11 00:58:05 +00:00
|
|
|
/**
|
|
|
|
* Test getting reports without valid permissions.
|
|
|
|
*
|
|
|
|
* @since 3.5.0
|
|
|
|
*/
|
|
|
|
public function test_get_reports_without_permission() {
|
|
|
|
wp_set_current_user( 0 );
|
|
|
|
$response = $this->server->dispatch( new WP_REST_Request( 'GET', $this->endpoint ) );
|
|
|
|
$this->assertEquals( 401, $response->get_status() );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test reports schema.
|
|
|
|
*
|
|
|
|
* @since 3.5.0
|
|
|
|
*/
|
|
|
|
public function test_reports_schema() {
|
|
|
|
wp_set_current_user( $this->user );
|
|
|
|
|
|
|
|
$request = new WP_REST_Request( 'OPTIONS', $this->endpoint );
|
|
|
|
$response = $this->server->dispatch( $request );
|
|
|
|
$data = $response->get_data();
|
|
|
|
$properties = $data['schema']['properties'];
|
|
|
|
|
|
|
|
$this->assertEquals( 10, count( $properties ) );
|
|
|
|
$this->assertArrayHasKey( 'tax_rate_id', $properties );
|
|
|
|
$this->assertArrayHasKey( 'name', $properties );
|
|
|
|
$this->assertArrayHasKey( 'tax_rate', $properties );
|
|
|
|
$this->assertArrayHasKey( 'country', $properties );
|
|
|
|
$this->assertArrayHasKey( 'state', $properties );
|
|
|
|
$this->assertArrayHasKey( 'priority', $properties );
|
|
|
|
$this->assertArrayHasKey( 'total_tax', $properties );
|
|
|
|
$this->assertArrayHasKey( 'order_tax', $properties );
|
|
|
|
$this->assertArrayHasKey( 'shipping_tax', $properties );
|
|
|
|
$this->assertArrayHasKey( 'orders_count', $properties );
|
|
|
|
}
|
|
|
|
}
|