woocommerce/tests/unit-tests/totals/totals.php

120 lines
3.2 KiB
PHP
Raw Normal View History

2017-07-23 11:05:11 +00:00
<?php
/**
* Tests for the totals class.
* @package WooCommerce\Tests\Discounts
*/
class WC_Tests_Totals extends WC_Unit_Test_Case {
// Totals class for getter tests.
protected $totals;
// ID tracking for cleanup.
protected $products = array();
protected $coupons = array();
protected $tax_rate_ids = array();
/**
* Setup the cart for totals calculation.
*/
public function setUp() {
$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' => '',
);
$tax_rate_id = WC_Tax::_insert_tax_rate( $tax_rate );
update_option( 'woocommerce_calc_taxes', 'yes' );
$product = WC_Helper_Product::create_simple_product();
$product2 = WC_Helper_Product::create_simple_product();
2017-07-25 13:05:49 +00:00
WC_Helper_Shipping::create_simple_flat_rate();
WC()->session->set( 'chosen_shipping_methods', array( 'flat_rate' ) );
2017-07-23 11:05:11 +00:00
$coupon = new WC_Coupon;
$coupon->set_code( 'test-coupon-10' );
$coupon->set_amount( 10 );
$coupon->set_discount_type( 'percent' );
$coupon->save();
$this->tax_rate_ids[] = $tax_rate_id;
$this->products[] = $product;
$this->products[] = $product2;
$this->coupons[] = $coupon;
WC()->cart->add_to_cart( $product->get_id(), 1 );
WC()->cart->add_to_cart( $product2->get_id(), 2 );
2017-07-24 16:21:08 +00:00
WC()->cart->add_discount( $coupon->get_code() );
2017-07-23 11:05:11 +00:00
2017-07-25 13:05:49 +00:00
add_action( 'woocommerce_cart_calculate_fees', array( $this, 'add_cart_fees_callback' ) );
2017-07-23 11:05:11 +00:00
// @todo manual discounts
$this->totals = new WC_Totals( WC()->cart );
}
2017-07-25 13:05:49 +00:00
/**
* Add fees when the fees API is called.
*/
public function add_cart_fees_callback() {
WC()->cart->add_fee( "test fee", 10, true );
WC()->cart->add_fee( "test fee 2", 20, true );
WC()->cart->add_fee( "test fee non-taxable", 10, false );
}
2017-07-23 11:05:11 +00:00
/**
* Clean up after test.
*/
public function tearDown() {
WC()->cart->empty_cart();
2017-07-25 13:05:49 +00:00
WC()->session->set( 'chosen_shipping_methods', array() );
WC_Helper_Shipping::delete_simple_flat_rate();
2017-07-23 11:05:11 +00:00
update_option( 'woocommerce_calc_taxes', 'no' );
2017-07-25 13:05:49 +00:00
remove_action( 'woocommerce_cart_calculate_fees', array( $this, 'add_cart_fees_callback' ) );
2017-07-23 11:05:11 +00:00
foreach ( $this->products as $product ) {
$product->delete( true );
}
foreach ( $this->coupons as $coupon ) {
$coupon->delete( true );
}
foreach ( $this->tax_rate_ids as $tax_rate_id ) {
WC_Tax::_delete_tax_rate( $tax_rate_id );
}
}
/**
* Test get and set items.
*/
public function test_get_totals() {
2017-07-24 16:21:08 +00:00
$this->assertEquals( array(
'fees_total' => 40.00,
'fees_total_tax' => 6.00,
'items_subtotal' => 30.00,
'items_subtotal_tax' => 6.00,
'items_total' => 27.00,
'items_total_tax' => 5.40,
2017-07-25 13:05:49 +00:00
'total' => 78.40,
'taxes' => array(
1 => array(
'tax_total' => 11.40,
'shipping_tax_total' => 0.00,
)
),
2017-07-24 16:21:08 +00:00
'tax_total' => 11.40,
'shipping_total' => 0, // @todo ?
'shipping_tax_total' => 0, // @todo ?
'discounts_total' => 3.00,
'discounts_tax_total' => 0, // @todo ?
), $this->totals->get_totals() );
2017-07-23 11:05:11 +00:00
}
}