2018-12-10 18:34:55 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Reports Coupons Stats REST API Test
|
|
|
|
*
|
|
|
|
* @package WooCommerce\Tests\API
|
|
|
|
*/
|
2018-12-12 18:58:26 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class WC_Tests_API_Reports_Coupons_Stats
|
|
|
|
*/
|
2018-12-10 18:34:55 +00:00
|
|
|
class WC_Tests_API_Reports_Coupons_Stats extends WC_REST_Unit_Test_Case {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Endpoints.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
2019-01-18 02:52:58 +00:00
|
|
|
protected $endpoint = '/wc/v4/reports/coupons/stats';
|
2018-12-10 18:34:55 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Setup test reports products stats data.
|
|
|
|
*/
|
|
|
|
public function setUp() {
|
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
$this->user = $this->factory->user->create(
|
|
|
|
array(
|
|
|
|
'role' => 'administrator',
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test route registration.
|
|
|
|
*/
|
|
|
|
public function test_register_routes() {
|
|
|
|
$routes = $this->server->get_routes();
|
|
|
|
|
|
|
|
$this->assertArrayHasKey( $this->endpoint, $routes );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test getting reports.
|
|
|
|
*/
|
|
|
|
public function test_get_reports() {
|
|
|
|
WC_Helper_Reports::reset_stats_dbs();
|
|
|
|
wp_set_current_user( $this->user );
|
|
|
|
|
|
|
|
// Populate all of the data.
|
|
|
|
// Simple product.
|
|
|
|
$product = new WC_Product_Simple();
|
|
|
|
$product->set_name( 'Test Product' );
|
|
|
|
$product->set_regular_price( 25 );
|
|
|
|
$product->save();
|
|
|
|
|
|
|
|
// Coupons.
|
|
|
|
$coupon_1_amount = 1; // by default in create_coupon.
|
|
|
|
$coupon_1 = WC_Helper_Coupon::create_coupon( 'coupon_1' );
|
|
|
|
|
|
|
|
$coupon_2_amount = 2;
|
|
|
|
$coupon_2 = WC_Helper_Coupon::create_coupon( 'coupon_2' );
|
|
|
|
$coupon_2->set_amount( $coupon_2_amount );
|
|
|
|
$coupon_2->save();
|
|
|
|
|
|
|
|
// Order without coupon.
|
|
|
|
$order = WC_Helper_Order::create_order( 1, $product );
|
|
|
|
$order->set_status( 'completed' );
|
|
|
|
$order->set_total( 100 ); // $25 x 4.
|
|
|
|
$order->save();
|
|
|
|
|
|
|
|
$time = time();
|
|
|
|
|
|
|
|
// Order with 1 coupon.
|
|
|
|
$order_1c = WC_Helper_Order::create_order( 1, $product );
|
|
|
|
$order_1c->set_status( 'completed' );
|
|
|
|
$order_1c->apply_coupon( $coupon_1 );
|
|
|
|
$order_1c->calculate_totals();
|
|
|
|
$order_1c->set_date_created( $time );
|
|
|
|
$order_1c->save();
|
|
|
|
|
|
|
|
// Order with 2 coupons.
|
|
|
|
$order_2c = WC_Helper_Order::create_order( 1, $product );
|
|
|
|
$order_2c->set_status( 'completed' );
|
|
|
|
$order_2c->apply_coupon( $coupon_1 );
|
|
|
|
$order_2c->apply_coupon( $coupon_2 );
|
|
|
|
$order_2c->calculate_totals();
|
|
|
|
$order_2c->set_date_created( $time );
|
|
|
|
$order_2c->save();
|
|
|
|
|
|
|
|
$request = new WP_REST_Request( 'GET', $this->endpoint );
|
|
|
|
$request->set_query_params(
|
|
|
|
array(
|
|
|
|
'before' => date( 'Y-m-d 23:59:59', $time ),
|
|
|
|
'after' => date( 'Y-m-d 00:00:00', $time ),
|
|
|
|
'interval' => 'day',
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
$response = $this->server->dispatch( $request );
|
|
|
|
$reports = $response->get_data();
|
|
|
|
|
|
|
|
$expected_reports = array(
|
|
|
|
'totals' => array(
|
2018-12-14 11:40:49 +00:00
|
|
|
'amount' => 4,
|
|
|
|
'coupons_count' => 2,
|
|
|
|
'orders_count' => 2,
|
2018-12-10 18:34:55 +00:00
|
|
|
),
|
|
|
|
'intervals' => array(
|
|
|
|
array(
|
|
|
|
'interval' => date( 'Y-m-d', $time ),
|
|
|
|
'date_start' => date( 'Y-m-d 00:00:00', $time ),
|
|
|
|
'date_start_gmt' => date( 'Y-m-d 00:00:00', $time ),
|
|
|
|
'date_end' => date( 'Y-m-d 23:59:59', $time ),
|
|
|
|
'date_end_gmt' => date( 'Y-m-d 23:59:59', $time ),
|
|
|
|
'subtotals' => (object) array(
|
2018-12-14 11:40:49 +00:00
|
|
|
'amount' => 4,
|
|
|
|
'coupons_count' => 2,
|
|
|
|
'orders_count' => 2,
|
2018-12-10 18:34:55 +00:00
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
|
|
|
|
$this->assertEquals( 200, $response->get_status() );
|
|
|
|
$this->assertEquals( $expected_reports, $reports );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test getting reports without valid permissions.
|
|
|
|
*/
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
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( 2, count( $properties ) );
|
|
|
|
$this->assertArrayHasKey( 'totals', $properties );
|
|
|
|
$this->assertArrayHasKey( 'intervals', $properties );
|
|
|
|
|
|
|
|
$totals = $properties['totals']['properties'];
|
|
|
|
$this->assertEquals( 3, count( $totals ) );
|
2018-12-14 11:40:49 +00:00
|
|
|
$this->assertArrayHasKey( 'amount', $totals );
|
2018-12-10 18:34:55 +00:00
|
|
|
$this->assertArrayHasKey( 'coupons_count', $totals );
|
|
|
|
$this->assertArrayHasKey( 'orders_count', $totals );
|
|
|
|
|
|
|
|
$intervals = $properties['intervals']['items']['properties'];
|
|
|
|
$this->assertEquals( 6, count( $intervals ) );
|
|
|
|
$this->assertArrayHasKey( 'interval', $intervals );
|
|
|
|
$this->assertArrayHasKey( 'date_start', $intervals );
|
|
|
|
$this->assertArrayHasKey( 'date_start_gmt', $intervals );
|
|
|
|
$this->assertArrayHasKey( 'date_end', $intervals );
|
|
|
|
$this->assertArrayHasKey( 'date_end_gmt', $intervals );
|
|
|
|
$this->assertArrayHasKey( 'subtotals', $intervals );
|
|
|
|
|
|
|
|
$subtotals = $properties['intervals']['items']['properties']['subtotals']['properties'];
|
|
|
|
$this->assertEquals( 3, count( $subtotals ) );
|
2018-12-14 11:40:49 +00:00
|
|
|
$this->assertArrayHasKey( 'amount', $totals );
|
2018-12-10 18:34:55 +00:00
|
|
|
$this->assertArrayHasKey( 'coupons_count', $totals );
|
|
|
|
$this->assertArrayHasKey( 'orders_count', $totals );
|
|
|
|
}
|
|
|
|
}
|