118 lines
3.0 KiB
PHP
118 lines
3.0 KiB
PHP
<?php
|
|
/**
|
|
* Reports Products REST API Test
|
|
*
|
|
* @package WooCommerce\Tests\API
|
|
* @since 3.5.0
|
|
*/
|
|
|
|
/**
|
|
* Class WC_Tests_API_Reports_Variations
|
|
*/
|
|
class WC_Tests_API_Reports_Variations extends WC_REST_Unit_Test_Case {
|
|
|
|
/**
|
|
* Endpoints.
|
|
*
|
|
* @var string
|
|
*/
|
|
protected $endpoint = '/wc/v4/reports/variations';
|
|
|
|
/**
|
|
* Setup test reports products 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() {
|
|
wp_set_current_user( $this->user );
|
|
WC_Helper_Reports::reset_stats_dbs();
|
|
|
|
// Populate all of the data.
|
|
$variation = new WC_Product_Variation();
|
|
$variation->set_name( 'Test Variation' );
|
|
$variation->set_regular_price( 25 );
|
|
$variation->set_attributes( array( 'color' => 'green' ) );
|
|
$variation->save();
|
|
|
|
$order = WC_Helper_Order::create_order( 1, $variation );
|
|
$order->set_status( 'completed' );
|
|
$order->set_total( 100 ); // $25 x 4.
|
|
$order->save();
|
|
|
|
$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 ) );
|
|
|
|
$variation_report = reset( $reports );
|
|
|
|
$this->assertEquals( $variation->get_id(), $variation_report['variation_id'] );
|
|
$this->assertEquals( 4, $variation_report['items_sold'] );
|
|
$this->assertEquals( 1, $variation_report['orders_count'] );
|
|
$this->assertArrayHasKey( '_links', $variation_report );
|
|
$this->assertArrayHasKey( 'extended_info', $variation_report );
|
|
$this->assertArrayHasKey( 'product', $variation_report['_links'] );
|
|
$this->assertArrayHasKey( 'variation', $variation_report['_links'] );
|
|
}
|
|
|
|
/**
|
|
* 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( 6, count( $properties ) );
|
|
$this->assertArrayHasKey( 'product_id', $properties );
|
|
$this->assertArrayHasKey( 'variation_id', $properties );
|
|
$this->assertArrayHasKey( 'items_sold', $properties );
|
|
$this->assertArrayHasKey( 'net_revenue', $properties );
|
|
$this->assertArrayHasKey( 'orders_count', $properties );
|
|
$this->assertArrayHasKey( 'extended_info', $properties );
|
|
}
|
|
}
|