woocommerce/tests/unit-tests/discounts/discounts.php

602 lines
15 KiB
PHP
Raw Normal View History

2017-07-18 13:04:56 +00:00
<?php
/**
* Test for the discounts class.
* @package WooCommerce\Tests\Discounts
*/
class WC_Tests_Discounts extends WC_Unit_Test_Case {
/**
* @var WC_Product[] Array of products to clean up.
*/
protected $products;
/**
* @var WC_Coupon[] Array of coupons to clean up.
*/
protected $coupons;
/**
* @var WC_Order[] Array of orders to clean up.
*/
protected $orders;
/**
* @var array An array containing all the test data from the last Data Provider test.
*/
protected $last_test_data;
/**
* Helper function to hold a reference to created coupon objects so they
* can be cleaned up properly at the end of each test.
*
* @param $coupon WC_Coupon The coupon object to store.
*/
protected function store_coupon( $coupon ) {
$this->coupons[ $coupon->get_code() ] = $coupon;
}
/**
* Helper function to hold a reference to created product objects so they
* can be cleaned up properly at the end of each test.
*
* @param $product WC_Product The product object to store.
*/
protected function store_product( $product ) {
$this->products[] = $product;
}
/**
* Helper function to hold a reference to created order objects so they
* can be cleaned up properly at the end of each test.
*
* @param $order WC_Order The order object to store.
*/
protected function store_order( $order ) {
$this->orders[] = $order;
}
public function setUp() {
parent::setUp();
$this->products = array();
$this->coupons = array();
$this->orders = array();
$this->last_test_data = null;
}
/**
* Clean up after each test. DB changes are reverted in parent::tearDown().
*/
public function tearDown() {
WC()->cart->empty_cart();
WC()->cart->remove_coupons();
foreach ( $this->products as $product ) {
$product->delete( true );
}
foreach ( $this->coupons as $code => $coupon ) {
$coupon->delete( true );
// Temporarily necessary until https://github.com/woocommerce/woocommerce/pull/16767 is implemented.
wp_cache_delete( WC_Cache_Helper::get_cache_prefix( 'coupons' ) . 'coupon_id_from_code_' . $code, 'coupons' );
}
foreach ( $this->orders as $order ) {
$order->delete( true );
}
if ( $this->last_test_data ) {
if ( isset( $this->last_test_data['wc_options'] ) ) {
foreach ( $this->last_test_data['wc_options'] as $_option_name => $_option_value ) {
update_option( $_option_name, $_option_value['revert'] );
}
}
$this->last_test_data = null;
}
parent::tearDown();
}
/**
* Test get and set items.
*/
2017-07-28 12:02:39 +00:00
public function test_get_set_items_from_cart() {
2017-07-18 13:04:56 +00:00
// Create dummy product - price will be 10
$product = WC_Helper_Product::create_simple_product();
$this->store_product( $product );
2017-07-18 13:04:56 +00:00
// Add product to the cart.
2017-07-18 13:04:56 +00:00
WC()->cart->add_to_cart( $product->get_id(), 1 );
// Add product to a dummy order.
$order = new WC_Order();
2017-07-18 17:07:46 +00:00
$order->add_product( $product, 1 );
$order->calculate_totals();
$order->save();
$this->store_order( $order );
// Test setting items to the cart.
2017-07-18 13:04:56 +00:00
$discounts = new WC_Discounts();
2017-07-28 12:02:39 +00:00
$discounts->set_items_from_cart( WC()->cart );
$this->assertEquals( 1, count( $discounts->get_items() ) );
// Test setting items to an order.
$discounts = new WC_Discounts();
2017-07-28 12:02:39 +00:00
$discounts->set_items_from_cart( WC()->cart );
$this->assertEquals( 1, count( $discounts->get_items() ) );
2017-07-18 13:04:56 +00:00
// Empty array of items.
$discounts = new WC_Discounts();
2017-07-28 12:02:39 +00:00
$discounts->set_items_from_cart( array() );
$this->assertEquals( array(), $discounts->get_items() );
// Invalid items.
$discounts = new WC_Discounts();
2017-07-28 12:02:39 +00:00
$discounts->set_items_from_cart( false );
$this->assertEquals( array(), $discounts->get_items() );
2017-07-18 17:07:46 +00:00
}
/**
2017-07-19 11:26:01 +00:00
* Test applying a coupon (make sure it changes prices).
2017-07-18 17:07:46 +00:00
*/
public function test_apply_coupon() {
$discounts = new WC_Discounts();
// Create dummy content.
$product = WC_Helper_Product::create_simple_product();
$product->set_tax_status( 'taxable' );
$product->save();
$this->store_product( $product );
2017-07-18 17:47:05 +00:00
WC()->cart->empty_cart();
2017-07-18 17:07:46 +00:00
WC()->cart->add_to_cart( $product->get_id(), 1 );
$coupon = WC_Helper_Coupon::create_coupon( 'test' );
2017-07-19 11:26:01 +00:00
$coupon->set_amount( 10 );
$this->store_coupon( $coupon );
2017-07-18 17:07:46 +00:00
// Apply a percent discount.
$coupon->set_discount_type( 'percent' );
2017-07-28 12:02:39 +00:00
$discounts->set_items_from_cart( WC()->cart );
2017-08-18 09:36:10 +00:00
$discounts->apply_coupon( $coupon );
2017-07-28 15:31:11 +00:00
$this->assertEquals( 9, $discounts->get_discounted_price( current( $discounts->get_items() ) ), print_r( $discounts->get_discounts(), true ) );
2017-07-18 17:07:46 +00:00
2017-07-18 17:47:05 +00:00
// Apply a fixed cart coupon.
2017-07-18 17:07:46 +00:00
$coupon->set_discount_type( 'fixed_cart' );
2017-07-28 12:02:39 +00:00
$discounts->set_items_from_cart( WC()->cart );
2017-08-18 09:36:10 +00:00
$discounts->apply_coupon( $coupon );
2017-07-28 15:31:11 +00:00
$this->assertEquals( 0, $discounts->get_discounted_price( current( $discounts->get_items() ) ), print_r( $discounts->get_discounts(), true ) );
2017-07-18 17:07:46 +00:00
2017-07-18 17:47:05 +00:00
// Apply a fixed product coupon.
$coupon->set_discount_type( 'fixed_product' );
2017-07-28 12:02:39 +00:00
$discounts->set_items_from_cart( WC()->cart );
2017-08-18 09:36:10 +00:00
$discounts->apply_coupon( $coupon );
2017-07-28 15:31:11 +00:00
$this->assertEquals( 0, $discounts->get_discounted_price( current( $discounts->get_items() ) ), print_r( $discounts->get_discounts(), true ) );
2017-07-19 11:26:01 +00:00
}
/**
* Test various discount calculations are working correctly and producing expected results.
*
* @dataProvider calculations_test_provider
*
* @param array $test_data All of the settings to use for testing.
2017-07-19 11:26:01 +00:00
*/
public function test_calculations( $test_data ) {
$this->last_test_data = $test_data;
$discounts = new WC_Discounts();
if ( isset( $test_data['tax_rate'] ) ) {
WC_Tax::_insert_tax_rate( $test_data['tax_rate'] );
}
if ( isset( $test_data['wc_options'] ) ) {
foreach ( $test_data['wc_options'] as $_option_name => $_option_value ) {
update_option( $_option_name, $_option_value['set'] );
}
}
foreach ( $test_data['cart'] as $item ) {
$product = WC_Helper_Product::create_simple_product();
$this->store_product( $product );
$product->set_regular_price( $item['price'] );
$product->set_tax_status( 'taxable' );
$product->save();
WC()->cart->add_to_cart( $product->get_id(), $item['qty'] );
}
$discounts->set_items_from_cart( WC()->cart );
foreach ( $test_data['coupons'] as $coupon_props ) {
$coupon = WC_Helper_Coupon::create_coupon( $coupon_props['code'] );
$coupon->set_props( $coupon_props );
$discounts->apply_coupon( $coupon );
$this->store_coupon( $coupon );
}
$all_discounts = $discounts->get_discounts();
$discount_total = 0;
foreach ( $all_discounts as $code_name => $discounts_by_coupon ) {
$discount_total += array_sum( $discounts_by_coupon );
}
$this->assertEquals( $test_data['expected_total_discount'], $discount_total, 'Failed (' . print_r( $test_data, true ) . ' - ' . print_r( $discounts->get_discounts(), true ) . ')' );
}
/**
* This is a dataProvider for test_calculations().
*
* @return array An array of discount tests to be run.
*/
public function calculations_test_provider() {
return array(
2017-07-19 11:26:01 +00:00
array(
array(
'tax_rate' => array(
'tax_rate_country' => '',
'tax_rate_state' => '',
'tax_rate' => '20.0000',
'tax_rate_name' => 'VAT',
'tax_rate_priority' => '1',
'tax_rate_compound' => '0',
'tax_rate_shipping' => '1',
'tax_rate_order' => '1',
'tax_rate_class' => '',
),
'wc_options' => array(
'woocommerce_calc_taxes' => array(
'set' => 'yes',
'revert' => 'no',
),
),
'prices_include_tax' => false,
'cart' => array(
array(
'price' => 10,
'qty' => 1,
),
),
'coupons' => array(
array(
'code' => 'test',
'discount_type' => 'percent',
'amount' => '20',
),
),
'expected_total_discount' => 2,
2017-07-19 11:26:01 +00:00
),
),
array(
array(
'tax_rate' => array(
'tax_rate_country' => '',
'tax_rate_state' => '',
'tax_rate' => '20.0000',
'tax_rate_name' => 'VAT',
'tax_rate_priority' => '1',
'tax_rate_compound' => '0',
'tax_rate_shipping' => '1',
'tax_rate_order' => '1',
'tax_rate_class' => '',
),
'prices_include_tax' => false,
'cart' => array(
array(
'price' => 10,
'qty' => 2,
),
),
'coupons' => array(
array(
'code' => 'test',
'discount_type' => 'fixed_cart',
'amount' => '10',
),
),
'expected_total_discount' => 10,
2017-07-19 11:26:01 +00:00
),
),
array(
array(
'tax_rate' => array(
'tax_rate_country' => '',
'tax_rate_state' => '',
'tax_rate' => '20.0000',
'tax_rate_name' => 'VAT',
'tax_rate_priority' => '1',
'tax_rate_compound' => '0',
'tax_rate_shipping' => '1',
'tax_rate_order' => '1',
'tax_rate_class' => '',
),
'prices_include_tax' => false,
'cart' => array(
array(
'price' => 10,
'qty' => 1,
),
array(
'price' => 10,
'qty' => 1,
),
),
'coupons' => array(
array(
'code' => 'test',
'discount_type' => 'fixed_cart',
'amount' => '10',
),
),
'expected_total_discount' => 10,
2017-07-19 11:26:01 +00:00
),
),
array(
array(
'tax_rate' => array(
'tax_rate_country' => '',
'tax_rate_state' => '',
'tax_rate' => '20.0000',
'tax_rate_name' => 'VAT',
'tax_rate_priority' => '1',
'tax_rate_compound' => '0',
'tax_rate_shipping' => '1',
'tax_rate_order' => '1',
'tax_rate_class' => '',
),
'prices_include_tax' => false,
'cart' => array(
array(
'price' => 10,
'qty' => 1,
),
array(
'price' => 10,
'qty' => 1,
),
array(
'price' => 10,
'qty' => 1,
),
),
'coupons' => array(
array(
'code' => 'test',
'discount_type' => 'fixed_cart',
'amount' => '10',
),
),
'expected_total_discount' => 10,
2017-07-19 11:26:01 +00:00
),
),
array(
array(
'tax_rate' => array(
'tax_rate_country' => '',
'tax_rate_state' => '',
'tax_rate' => '20.0000',
'tax_rate_name' => 'VAT',
'tax_rate_priority' => '1',
'tax_rate_compound' => '0',
'tax_rate_shipping' => '1',
'tax_rate_order' => '1',
'tax_rate_class' => '',
),
'prices_include_tax' => false,
'cart' => array(
array(
'price' => 10,
'qty' => 2,
),
array(
'price' => 10,
'qty' => 3,
),
array(
'price' => 10,
'qty' => 2,
),
),
'coupons' => array(
array(
'code' => 'test',
'discount_type' => 'fixed_cart',
'amount' => '10',
),
),
'expected_total_discount' => 10,
2017-07-19 11:26:01 +00:00
),
),
array(
array(
'tax_rate' => array(
'tax_rate_country' => '',
'tax_rate_state' => '',
'tax_rate' => '20.0000',
'tax_rate_name' => 'VAT',
'tax_rate_priority' => '1',
'tax_rate_compound' => '0',
'tax_rate_shipping' => '1',
'tax_rate_order' => '1',
'tax_rate_class' => '',
),
'prices_include_tax' => false,
'cart' => array(
array(
'price' => 10,
'qty' => 1,
),
array(
'price' => 10,
'qty' => 1,
),
array(
'price' => 10,
'qty' => 1,
),
array(
'price' => 10,
'qty' => 1,
),
array(
'price' => 10,
'qty' => 1,
),
array(
'price' => 10,
'qty' => 1,
),
array(
'price' => 10,
'qty' => 1,
),
array(
'price' => 10,
'qty' => 1,
),
array(
'price' => 10,
'qty' => 1,
),
array(
'price' => 10,
'qty' => 1,
),
array(
'price' => 10,
'qty' => 1,
),
),
'coupons' => array(
array(
'code' => 'test',
'discount_type' => 'fixed_cart',
'amount' => '10',
),
),
'expected_total_discount' => 10,
2017-07-19 11:26:01 +00:00
),
2017-07-19 11:27:50 +00:00
),
array(
array(
'tax_rate' => array(
'tax_rate_country' => '',
'tax_rate_state' => '',
'tax_rate' => '20.0000',
'tax_rate_name' => 'VAT',
'tax_rate_priority' => '1',
'tax_rate_compound' => '0',
'tax_rate_shipping' => '1',
'tax_rate_order' => '1',
'tax_rate_class' => '',
),
'prices_include_tax' => false,
'cart' => array(
array(
'price' => 1,
'qty' => 1,
),
array(
'price' => 1,
'qty' => 1,
),
array(
'price' => 1,
'qty' => 1,
),
),
'coupons' => array(
array(
'code' => 'test',
'discount_type' => 'fixed_cart',
'amount' => '1',
),
),
'expected_total_discount' => 1,
2017-07-19 11:27:50 +00:00
),
),
2017-07-19 12:49:22 +00:00
array(
array(
'tax_rate' => array(
'tax_rate_country' => '',
'tax_rate_state' => '',
'tax_rate' => '20.0000',
'tax_rate_name' => 'VAT',
'tax_rate_priority' => '1',
'tax_rate_compound' => '0',
'tax_rate_shipping' => '1',
'tax_rate_order' => '1',
'tax_rate_class' => '',
),
'prices_include_tax' => false,
'cart' => array(
array(
'price' => 10,
'qty' => 2,
),
),
'coupons' => array(
array(
'code' => 'test',
'discount_type' => 'percent',
'amount' => '10',
'limit_usage_to_x_items' => 1,
),
),
'expected_total_discount' => 1,
2017-07-19 12:49:22 +00:00
),
),
array(
array(
'tax_rate' => array(
'tax_rate_country' => '',
'tax_rate_state' => '',
'tax_rate' => '20.0000',
'tax_rate_name' => 'VAT',
'tax_rate_priority' => '1',
'tax_rate_compound' => '0',
'tax_rate_shipping' => '1',
'tax_rate_order' => '1',
'tax_rate_class' => '',
),
'prices_include_tax' => false,
'cart' => array(
array(
'price' => 10,
'qty' => 2,
),
array(
'price' => 10,
'qty' => 2,
),
),
'coupons' => array(
array(
'code' => 'test',
'discount_type' => 'percent',
'amount' => '10',
'limit_usage_to_x_items' => 1,
),
),
'expected_total_discount' => 1,
2017-07-19 12:49:22 +00:00
),
),
2017-07-19 11:26:01 +00:00
);
2017-07-18 13:04:56 +00:00
}
public function test_free_shipping_coupon_no_products() {
$discounts = new WC_Discounts();
$coupon = WC_Helper_Coupon::create_coupon( 'freeshipping' );
$coupon->set_props( array(
'discount_type' => 'percent',
'amount' => '',
'free_shipping' => 'yes',
));
$discounts->apply_coupon( $coupon );
$all_discounts = $discounts->get_discounts();
$this->assertEquals( 0, count( $all_discounts['freeshipping'] ), 'Free shipping coupon should not have any discounts.' );
}
2017-07-18 13:04:56 +00:00
}