woocommerce/tests/legacy/unit-tests/shipping/shipping.php

64 lines
1.2 KiB
PHP

<?php
/**
* Unit tests for the shipping class.
*
* @package WooCommerce\Tests\Shipping
*/
/**
* WC_Tests_Shipping tests.
*
* @package WooCommerce\Tests\Shipping
* @since 4.0.0
*/
class WC_Tests_Shipping extends WC_Unit_Test_Case {
/**
* Tests that whether or not a package is shippable is evaluated correctly.
*
* @since 4.0.0
*/
public function test_is_package_shippable() {
$shipping = new WC_Shipping();
// Success for no country.
$result = $shipping->is_package_shippable(
array(
'destination' => array(
'country' => '',
'state' => 'CA',
'postcode' => '99999',
'address' => '',
),
)
);
$this->assertTrue( $result );
// Failure for disallowed country.
$result = $shipping->is_package_shippable(
array(
'destination' => array(
'country' => 'TEST',
'state' => 'CA',
'postcode' => '99999',
'address' => '',
),
)
);
$this->assertFalse( $result );
// Success for correct country.
$result = $shipping->is_package_shippable(
array(
'destination' => array(
'country' => 'US',
'state' => '',
'postcode' => '',
'address' => '',
),
)
);
$this->assertTrue( $result );
}
}