2014-11-24 13:52:09 +00:00
< ? php
class WC_Tests_Tax extends WC_Unit_Test_Case {
2014-11-24 14:57:08 +00:00
/**
* Get rates
2014-11-24 13:52:09 +00:00
*/
2014-11-24 14:57:08 +00:00
public function test_get_rates () {
global $wpdb ;
2014-11-25 17:09:19 +00:00
$wpdb -> query ( " DELETE FROM { $wpdb -> prefix } woocommerce_tax_rates " );
$wpdb -> query ( " DELETE FROM { $wpdb -> prefix } woocommerce_tax_rate_locations " );
2014-11-24 14:57:08 +00:00
2015-01-05 16:39:45 +00:00
$customer_location = WC_Tax :: get_tax_location ();
$tax_rate = array (
'tax_rate_country' => $customer_location [ 0 ],
2014-12-04 13:44:55 +00:00
'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' => ''
2014-11-24 14:57:08 +00:00
);
2014-12-04 13:44:55 +00:00
$tax_rate_id = WC_Tax :: _insert_tax_rate ( $tax_rate );
2014-11-24 14:57:08 +00:00
$tax_rates = WC_Tax :: get_rates ();
$this -> assertEquals ( $tax_rates , array ( $tax_rate_id => array ( 'rate' => '20.0000' , 'label' => 'VAT' , 'shipping' => 'yes' , 'compound' => 'no' ) ) );
2014-12-04 13:44:55 +00:00
WC_Tax :: _delete_tax_rate ( $tax_rate_id );
2014-11-24 14:57:08 +00:00
}
/**
* Get rates
*/
public function test_get_shipping_tax_rates () {
global $wpdb ;
2014-11-25 17:09:19 +00:00
$wpdb -> query ( " DELETE FROM { $wpdb -> prefix } woocommerce_tax_rates " );
$wpdb -> query ( " DELETE FROM { $wpdb -> prefix } woocommerce_tax_rate_locations " );
2014-11-24 14:57:08 +00:00
2015-01-05 16:59:16 +00:00
$customer_location = WC_Tax :: get_tax_location ();
2014-11-24 14:57:08 +00:00
$tax_rate = array (
2015-01-05 16:59:16 +00:00
'tax_rate_country' => $customer_location [ 0 ],
2014-12-04 13:44:55 +00:00
'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' => ''
2014-11-24 14:57:08 +00:00
);
2014-12-04 13:44:55 +00:00
$tax_rate_id = WC_Tax :: _insert_tax_rate ( $tax_rate );
2014-11-24 14:57:08 +00:00
$tax_rates = WC_Tax :: get_shipping_tax_rates ();
$this -> assertEquals ( $tax_rates , array ( $tax_rate_id => array ( 'rate' => '20.0000' , 'label' => 'VAT' , 'shipping' => 'yes' , 'compound' => 'no' ) ) );
2014-12-04 13:44:55 +00:00
WC_Tax :: _delete_tax_rate ( $tax_rate_id );
2014-11-24 14:57:08 +00:00
}
/**
* Get rates
*/
public function test_get_base_tax_rates () {
global $wpdb ;
2014-11-25 17:09:19 +00:00
$wpdb -> query ( " DELETE FROM { $wpdb -> prefix } woocommerce_tax_rates " );
$wpdb -> query ( " DELETE FROM { $wpdb -> prefix } woocommerce_tax_rate_locations " );
2014-11-24 14:57:08 +00:00
$tax_rate = array (
2014-12-04 13:44:55 +00:00
'tax_rate_country' => 'GB' ,
'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' => ''
2014-11-24 14:57:08 +00:00
);
2014-12-04 13:44:55 +00:00
$tax_rate_id = WC_Tax :: _insert_tax_rate ( $tax_rate );
2014-11-24 14:57:08 +00:00
$tax_rates = WC_Tax :: get_base_tax_rates ();
$this -> assertEquals ( $tax_rates , array ( $tax_rate_id => array ( 'rate' => '20.0000' , 'label' => 'VAT' , 'shipping' => 'yes' , 'compound' => 'no' ) ) );
2014-12-04 13:44:55 +00:00
WC_Tax :: _delete_tax_rate ( $tax_rate_id );
2014-11-24 14:57:08 +00:00
}
/**
* Find tax rates
*/
public function test_find_rates () {
global $wpdb ;
2014-11-25 17:09:19 +00:00
$wpdb -> query ( " DELETE FROM { $wpdb -> prefix } woocommerce_tax_rates " );
$wpdb -> query ( " DELETE FROM { $wpdb -> prefix } woocommerce_tax_rate_locations " );
2014-11-24 14:57:08 +00:00
$tax_rate = array (
2014-12-04 13:44:55 +00:00
'tax_rate_country' => 'GB' ,
'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' => ''
2014-11-24 14:57:08 +00:00
);
2014-12-04 13:44:55 +00:00
$tax_rate_id = WC_Tax :: _insert_tax_rate ( $tax_rate );
2014-11-24 14:57:08 +00:00
$tax_rates = WC_Tax :: find_rates ( array (
'country' => 'GB' ,
'state' => 'Cambs' ,
'postcode' => 'PE14 1XX' ,
'city' => 'Somewhere' ,
'tax_class' => ''
) );
$this -> assertEquals ( $tax_rates , array ( $tax_rate_id => array ( 'rate' => '20.0000' , 'label' => 'VAT' , 'shipping' => 'yes' , 'compound' => 'no' ) ) );
2014-12-04 13:44:55 +00:00
WC_Tax :: _delete_tax_rate ( $tax_rate_id );
2014-11-24 14:57:08 +00:00
}
/**
* Find tax rates
*/
public function test_find_shipping_rates () {
global $wpdb ;
2014-11-25 17:09:19 +00:00
$wpdb -> query ( " DELETE FROM { $wpdb -> prefix } woocommerce_tax_rates " );
$wpdb -> query ( " DELETE FROM { $wpdb -> prefix } woocommerce_tax_rate_locations " );
2014-11-24 14:57:08 +00:00
$tax_rate = array (
2014-12-04 13:44:55 +00:00
'tax_rate_country' => 'GB' ,
'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' => ''
2014-11-24 14:57:08 +00:00
);
2014-12-04 13:44:55 +00:00
$tax_rate_id = WC_Tax :: _insert_tax_rate ( $tax_rate );
2014-11-24 14:57:08 +00:00
$tax_rates = WC_Tax :: find_shipping_rates ( array (
'country' => 'GB' ,
'state' => 'Cambs' ,
'postcode' => 'PE14 1XX' ,
'city' => 'Somewhere' ,
'tax_class' => ''
) );
$this -> assertEquals ( $tax_rates , array ( $tax_rate_id => array ( 'rate' => '20.0000' , 'label' => 'VAT' , 'shipping' => 'yes' , 'compound' => 'no' ) ) );
2014-12-04 13:44:55 +00:00
WC_Tax :: _delete_tax_rate ( $tax_rate_id );
2014-11-24 14:57:08 +00:00
}
/**
* Test tax amounts
*/
public function test_calc_tax () {
global $wpdb ;
2014-11-25 17:09:19 +00:00
$wpdb -> query ( " DELETE FROM { $wpdb -> prefix } woocommerce_tax_rates " );
$wpdb -> query ( " DELETE FROM { $wpdb -> prefix } woocommerce_tax_rate_locations " );
2014-11-24 14:57:08 +00:00
$tax_rate = array (
2014-12-04 13:44:55 +00:00
'tax_rate_country' => 'GB' ,
'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' => ''
2014-11-24 14:57:08 +00:00
);
2014-12-04 13:44:55 +00:00
$tax_rate_id = WC_Tax :: _insert_tax_rate ( $tax_rate );
2014-11-24 14:57:08 +00:00
$tax_rates = WC_Tax :: find_rates ( array (
'country' => 'GB' ,
'state' => 'Cambs' ,
'postcode' => 'PE14 1XX' ,
'city' => 'Somewhere' ,
'tax_class' => ''
) );
$calced_tax = WC_Tax :: calc_tax ( '9.99' , $tax_rates , true , false );
$this -> assertEquals ( $calced_tax , array ( $tax_rate_id => '1.665' ) );
$calced_tax = WC_Tax :: calc_tax ( '9.99' , $tax_rates , false , false );
$this -> assertEquals ( $calced_tax , array ( $tax_rate_id => '1.998' ) );
2014-12-04 13:44:55 +00:00
WC_Tax :: _delete_tax_rate ( $tax_rate_id );
2014-11-24 14:57:08 +00:00
}
2015-02-23 06:40:10 +00:00
/**
* Test compound tax amounts
*/
public function test_calc_compound_tax () {
global $wpdb ;
$wpdb -> query ( " DELETE FROM { $wpdb -> prefix } woocommerce_tax_rates " );
$wpdb -> query ( " DELETE FROM { $wpdb -> prefix } woocommerce_tax_rate_locations " );
$tax_rate_1 = array (
'tax_rate_country' => 'US' ,
'tax_rate_state' => '' ,
'tax_rate' => '10.0000' ,
'tax_rate_name' => 'US' ,
'tax_rate_priority' => '1' ,
'tax_rate_compound' => '1' ,
'tax_rate_shipping' => '1' ,
'tax_rate_order' => '1' ,
'tax_rate_class' => ''
);
$tax_rate_2 = array (
'tax_rate_country' => 'US' ,
'tax_rate_state' => 'AL' ,
'tax_rate' => '2.0000' ,
'tax_rate_name' => 'US AL' ,
'tax_rate_priority' => '2' ,
'tax_rate_compound' => '1' ,
'tax_rate_shipping' => '1' ,
'tax_rate_order' => '2' ,
'tax_rate_class' => ''
);
$tax_rate_1_id = WC_Tax :: _insert_tax_rate ( $tax_rate_1 );
$tax_rate_2_id = WC_Tax :: _insert_tax_rate ( $tax_rate_2 );
$tax_rates = WC_Tax :: find_rates ( array (
'country' => 'US' ,
'state' => 'AL' ,
'postcode' => '12345' ,
'city' => '' ,
'tax_class' => ''
) );
// prices exclusive of tax
$calced_tax = WC_Tax :: calc_tax ( '9.99' , $tax_rates , false , false );
$this -> assertEquals ( $calced_tax , array ( $tax_rate_1_id => '0.999' , $tax_rate_2_id => '0.2198' ) );
// prices inclusive of tax
$calced_tax = WC_Tax :: calc_tax ( '9.99' , $tax_rates , true , false );
$this -> assertEquals ( $calced_tax , array ( $tax_rate_1_id => '0.8904' , $tax_rate_2_id => '0.1959' ) );
WC_Tax :: _delete_tax_rate ( $tax_rate_1_id );
WC_Tax :: _delete_tax_rate ( $tax_rate_2_id );
}
2014-11-24 14:57:08 +00:00
/**
* Shipping tax amounts
*/
public function test_calc_shipping_tax () {
global $wpdb ;
2014-11-25 17:09:19 +00:00
$wpdb -> query ( " DELETE FROM { $wpdb -> prefix } woocommerce_tax_rates " );
$wpdb -> query ( " DELETE FROM { $wpdb -> prefix } woocommerce_tax_rate_locations " );
2014-11-24 14:57:08 +00:00
$tax_rate = array (
2014-12-04 13:44:55 +00:00
'tax_rate_country' => 'GB' ,
'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' => ''
2014-11-24 14:57:08 +00:00
);
2014-12-04 13:44:55 +00:00
$tax_rate_id = WC_Tax :: _insert_tax_rate ( $tax_rate );
2014-11-24 14:57:08 +00:00
$tax_rates = WC_Tax :: find_rates ( array (
'country' => 'GB' ,
'state' => 'Cambs' ,
'postcode' => 'PE14 1XX' ,
'city' => 'Somewhere' ,
'tax_class' => ''
) );
$calced_tax = WC_Tax :: calc_shipping_tax ( '10' , $tax_rates );
$this -> assertEquals ( $calced_tax , array ( $tax_rate_id => '2' ) );
2014-12-04 13:44:55 +00:00
WC_Tax :: _delete_tax_rate ( $tax_rate_id );
2014-11-24 14:57:08 +00:00
}
/**
* Test rate labels
*/
public function test_get_rate_label () {
global $wpdb ;
$tax_rate = array (
2014-12-04 13:44:55 +00:00
'tax_rate_country' => 'GB' ,
'tax_rate_state' => '' ,
'tax_rate' => '20.0000' ,
'tax_rate_name' => 'VAT' ,
'tax_rate_priority' => '1' ,
'tax_rate_compound' => '1' ,
'tax_rate_shipping' => '1' ,
'tax_rate_order' => '1' ,
'tax_rate_class' => ''
2014-11-24 14:57:08 +00:00
);
2014-12-04 13:44:55 +00:00
$tax_rate_id = WC_Tax :: _insert_tax_rate ( $tax_rate );
$this -> assertEquals ( WC_Tax :: get_rate_label ( $tax_rate_id ), 'VAT' );
2014-11-24 14:57:08 +00:00
2014-12-04 13:44:55 +00:00
WC_Tax :: _delete_tax_rate ( $tax_rate_id );
2014-11-24 14:57:08 +00:00
}
/**
* Test rate percent
*/
public function test_get_rate_percent () {
global $wpdb ;
$tax_rate = array (
2014-12-04 13:44:55 +00:00
'tax_rate_country' => 'GB' ,
'tax_rate_state' => '' ,
'tax_rate' => '20.0000' ,
'tax_rate_name' => 'VAT' ,
'tax_rate_priority' => '1' ,
'tax_rate_compound' => '1' ,
'tax_rate_shipping' => '1' ,
'tax_rate_order' => '1' ,
'tax_rate_class' => ''
2014-11-24 14:57:08 +00:00
);
2014-12-04 13:44:55 +00:00
$tax_rate_id = WC_Tax :: _insert_tax_rate ( $tax_rate );
2014-11-24 14:57:08 +00:00
2014-12-04 13:44:55 +00:00
$this -> assertEquals ( WC_Tax :: get_rate_percent ( $tax_rate_id ), '20%' );
WC_Tax :: _delete_tax_rate ( $tax_rate_id );
2014-11-24 14:57:08 +00:00
}
/**
* Test rate code
*/
public function test_get_rate_code () {
global $wpdb ;
$tax_rate = array (
2014-12-04 13:44:55 +00:00
'tax_rate_country' => 'GB' ,
'tax_rate_state' => '' ,
'tax_rate' => '20.0000' ,
'tax_rate_name' => 'VAT' ,
'tax_rate_priority' => '1' ,
'tax_rate_compound' => '1' ,
'tax_rate_shipping' => '1' ,
'tax_rate_order' => '1' ,
'tax_rate_class' => ''
2014-11-24 14:57:08 +00:00
);
2014-12-04 13:44:55 +00:00
$tax_rate_id = WC_Tax :: _insert_tax_rate ( $tax_rate );
2014-11-24 14:57:08 +00:00
2014-12-04 13:44:55 +00:00
$this -> assertEquals ( WC_Tax :: get_rate_code ( $tax_rate_id ), 'GB-VAT-1' );
WC_Tax :: _delete_tax_rate ( $tax_rate_id );
2014-11-24 14:57:08 +00:00
}
/**
* Test is compound
*/
public function test_is_compound () {
global $wpdb ;
$tax_rate = array (
2014-12-04 13:44:55 +00:00
'tax_rate_country' => 'GB' ,
'tax_rate_state' => '' ,
'tax_rate' => '20.0000' ,
'tax_rate_name' => 'VAT' ,
'tax_rate_priority' => '1' ,
'tax_rate_compound' => '1' ,
'tax_rate_shipping' => '1' ,
'tax_rate_order' => '1' ,
'tax_rate_class' => ''
2014-11-24 14:57:08 +00:00
);
2014-12-04 13:44:55 +00:00
$tax_rate_id = WC_Tax :: _insert_tax_rate ( $tax_rate );
$this -> assertTrue ( WC_Tax :: is_compound ( $tax_rate_id ) );
2014-11-24 14:57:08 +00:00
2014-12-04 13:44:55 +00:00
WC_Tax :: _delete_tax_rate ( $tax_rate_id );
2014-11-24 14:57:08 +00:00
}
/**
* Test the rounding method
*/
public function test_round () {
$this -> assertEquals ( WC_Tax :: round ( '2.1234567' ), '2.1235' );
}
/**
* Get tax totals
*/
public function test_get_tax_total () {
$to_total = array (
'1' => '1.665' ,
'2' => '2' ,
);
$this -> assertEquals ( WC_Tax :: get_tax_total ( $to_total ), '3.665' );
}
/**
* Test getting the tax classes
*/
public function test_get_tax_classes () {
$tax_classes = WC_Tax :: get_tax_classes ();
$this -> assertEquals ( $tax_classes , array ( 'Reduced Rate' , 'Zero Rate' ) );
}
2014-11-24 13:52:09 +00:00
/**
* Test Inserting a tax rate
*/
public function test__insert_tax_rate () {
global $wpdb ;
// Define a rate
$tax_rate = array (
2014-12-04 13:44:55 +00:00
'tax_rate_country' => 'gb' ,
'tax_rate_state' => '' ,
'tax_rate' => '20' ,
'tax_rate_name' => '' ,
'tax_rate_priority' => '1' ,
'tax_rate_compound' => '0' ,
'tax_rate_shipping' => '1' ,
'tax_rate_order' => '1' ,
'tax_rate_class' => ''
2014-11-24 13:52:09 +00:00
);
// Run function
2014-12-04 13:44:55 +00:00
$tax_rate_id = WC_Tax :: _insert_tax_rate ( $tax_rate );
$this -> assertGreaterThan ( 0 , $tax_rate_id );
2014-11-24 13:52:09 +00:00
2014-12-04 13:44:55 +00:00
$new_row = $wpdb -> get_row ( $wpdb -> prepare ( " SELECT * FROM { $wpdb -> prefix } woocommerce_tax_rates WHERE tax_rate_id = %d " , $tax_rate_id ) );
2014-11-24 13:52:09 +00:00
2014-12-04 13:44:55 +00:00
$this -> assertEquals ( $new_row -> tax_rate_country , 'GB' );
$this -> assertEquals ( $new_row -> tax_rate_state , '' );
$this -> assertEquals ( $new_row -> tax_rate , '20.0000' );
$this -> assertEquals ( $new_row -> tax_rate_name , 'Tax' );
$this -> assertEquals ( $new_row -> tax_rate_priority , '1' );
$this -> assertEquals ( $new_row -> tax_rate_compound , '0' );
$this -> assertEquals ( $new_row -> tax_rate_shipping , '1' );
$this -> assertEquals ( $new_row -> tax_rate_order , '1' );
$this -> assertEquals ( $new_row -> tax_rate_class , '' );
2014-11-24 13:52:09 +00:00
2014-12-04 13:44:55 +00:00
WC_Tax :: _delete_tax_rate ( $tax_rate_id );
2014-11-24 13:52:09 +00:00
}
/**
* Test updating a tax rate
*/
public function test__update_tax_rate () {
global $wpdb ;
// Define a rate
$tax_rate = array (
2014-12-04 13:44:55 +00:00
'tax_rate_country' => 'GB' ,
'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' => ''
2014-11-24 13:52:09 +00:00
);
// Run function
2014-12-04 13:44:55 +00:00
$tax_rate_id = WC_Tax :: _insert_tax_rate ( $tax_rate );
2014-11-24 13:52:09 +00:00
// Update a rate
$tax_rate = array (
2014-12-04 13:44:55 +00:00
'tax_rate_country' => 'US'
2014-11-24 13:52:09 +00:00
);
// Run function
WC_Tax :: _update_tax_rate ( $tax_rate_id , $tax_rate );
$this -> assertNotFalse ( $wpdb -> last_result );
2014-12-04 13:44:55 +00:00
WC_Tax :: _delete_tax_rate ( $tax_rate_id );
2014-11-24 13:52:09 +00:00
}
2014-11-24 13:56:10 +00:00
/**
* Test deleting a tax rate
*/
public function test__delete_tax_rate () {
global $wpdb ;
// Define a rate
$tax_rate = array (
2014-12-04 13:44:55 +00:00
'tax_rate_country' => 'GB' ,
'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' => ''
2014-11-24 13:56:10 +00:00
);
// Run function
2014-12-04 13:44:55 +00:00
$tax_rate_id = WC_Tax :: _insert_tax_rate ( $tax_rate );
2014-11-24 13:56:10 +00:00
// Run function
WC_Tax :: _delete_tax_rate ( $tax_rate_id );
$this -> assertNotFalse ( $wpdb -> last_result );
2014-12-04 13:44:55 +00:00
WC_Tax :: _delete_tax_rate ( $tax_rate_id );
2014-11-24 13:56:10 +00:00
}
2014-11-24 14:57:08 +00:00
/**
* Postcode saving
*/
public function test__update_tax_rate_postcodes () {
global $wpdb ;
$to_save = '12345;90210-90215' ;
$tax_rate = array (
2014-12-04 13:44:55 +00:00
'tax_rate_country' => 'GB' ,
'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' => ''
2014-11-24 14:57:08 +00:00
);
// Run function
2014-12-04 13:44:55 +00:00
$tax_rate_id = WC_Tax :: _insert_tax_rate ( $tax_rate );
2014-11-24 14:57:08 +00:00
WC_Tax :: _update_tax_rate_postcodes ( $tax_rate_id , $to_save );
$results = $wpdb -> get_col ( $wpdb -> prepare ( " SELECT location_code FROM { $wpdb -> prefix } woocommerce_tax_rate_locations WHERE tax_rate_id = %d ORDER BY location_code ASC " , $tax_rate_id ) );
$this -> assertEquals ( array ( '12345' , '90210' , '90211' , '90212' , '90213' , '90214' , '90215' ), $results );
2014-12-04 13:44:55 +00:00
WC_Tax :: _delete_tax_rate ( $tax_rate_id );
2014-11-24 14:57:08 +00:00
}
/**
* City saving
*/
public function test__update_tax_rate_cities () {
global $wpdb ;
2014-11-24 13:56:10 +00:00
2014-11-24 14:57:08 +00:00
$to_save = 'SOMEWHERE;SOMEWHERE_ELSE' ;
$tax_rate = array (
2014-12-04 13:44:55 +00:00
'tax_rate_country' => 'GB' ,
'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' => ''
2014-11-24 14:57:08 +00:00
);
// Run function
2014-12-04 13:44:55 +00:00
$tax_rate_id = WC_Tax :: _insert_tax_rate ( $tax_rate );
2014-11-24 14:57:08 +00:00
WC_Tax :: _update_tax_rate_cities ( $tax_rate_id , $to_save );
$results = $wpdb -> get_col ( $wpdb -> prepare ( " SELECT location_code FROM { $wpdb -> prefix } woocommerce_tax_rate_locations WHERE tax_rate_id = %d ORDER BY location_code ASC " , $tax_rate_id ) );
$this -> assertEquals ( array ( 'SOMEWHERE' , 'SOMEWHERE_ELSE' ), $results );
2014-12-04 13:44:55 +00:00
WC_Tax :: _delete_tax_rate ( $tax_rate_id );
2014-11-24 14:57:08 +00:00
}
2014-11-24 13:52:09 +00:00
}