woocommerce/tests/unit-tests/util/core-functions.php

154 lines
4.6 KiB
PHP
Raw Normal View History

2014-09-01 06:00:12 +00:00
<?php
2015-03-06 15:32:40 +00:00
namespace WooCommerce\Tests\Util;
2014-09-01 06:59:23 +00:00
/**
2015-03-06 15:32:40 +00:00
* Class Core_Functions
* @package WooCommerce\Tests\Util
2014-09-01 06:59:23 +00:00
* @since 2.2
*/
2015-03-06 15:32:40 +00:00
class Core_Functions extends \WC_Unit_Test_Case {
2014-09-01 06:59:23 +00:00
/**
* Test get_woocommerce_currency()
*
* @since 2.2
*/
2014-09-01 06:00:12 +00:00
public function test_get_woocommerce_currency() {
$this->assertEquals( 'GBP', get_woocommerce_currency() );
}
2014-09-01 06:59:23 +00:00
/**
* Test get_woocommerce_currencies()
*
* @since 2.2
*/
2014-09-01 06:00:12 +00:00
public function test_get_woocommerce_currencies() {
$expected_currencies = array(
'AED' => __( 'United Arab Emirates Dirham', 'woocommerce' ),
'AUD' => __( 'Australian Dollars', 'woocommerce' ),
'BDT' => __( 'Bangladeshi Taka', 'woocommerce' ),
'BRL' => __( 'Brazilian Real', 'woocommerce' ),
'BGN' => __( 'Bulgarian Lev', 'woocommerce' ),
'CAD' => __( 'Canadian Dollars', 'woocommerce' ),
'CLP' => __( 'Chilean Peso', 'woocommerce' ),
'CNY' => __( 'Chinese Yuan', 'woocommerce' ),
'COP' => __( 'Colombian Peso', 'woocommerce' ),
'CZK' => __( 'Czech Koruna', 'woocommerce' ),
'DKK' => __( 'Danish Krone', 'woocommerce' ),
'DOP' => __( 'Dominican Peso', 'woocommerce' ),
'EUR' => __( 'Euros', 'woocommerce' ),
'HKD' => __( 'Hong Kong Dollar', 'woocommerce' ),
'HRK' => __( 'Croatia kuna', 'woocommerce' ),
'HUF' => __( 'Hungarian Forint', 'woocommerce' ),
'ISK' => __( 'Icelandic krona', 'woocommerce' ),
'IDR' => __( 'Indonesia Rupiah', 'woocommerce' ),
'INR' => __( 'Indian Rupee', 'woocommerce' ),
'NPR' => __( 'Nepali Rupee', 'woocommerce' ),
'ILS' => __( 'Israeli Shekel', 'woocommerce' ),
'JPY' => __( 'Japanese Yen', 'woocommerce' ),
2014-09-01 06:59:23 +00:00
'KIP' => __( 'Lao Kip', 'woocommerce' ),
2014-09-01 06:00:12 +00:00
'KRW' => __( 'South Korean Won', 'woocommerce' ),
'MYR' => __( 'Malaysian Ringgits', 'woocommerce' ),
'MXN' => __( 'Mexican Peso', 'woocommerce' ),
'NGN' => __( 'Nigerian Naira', 'woocommerce' ),
'NOK' => __( 'Norwegian Krone', 'woocommerce' ),
'NZD' => __( 'New Zealand Dollar', 'woocommerce' ),
'PYG' => __( 'Paraguayan Guaraní', 'woocommerce' ),
'PHP' => __( 'Philippine Pesos', 'woocommerce' ),
'PLN' => __( 'Polish Zloty', 'woocommerce' ),
'GBP' => __( 'Pounds Sterling', 'woocommerce' ),
'RON' => __( 'Romanian Leu', 'woocommerce' ),
'RUB' => __( 'Russian Ruble', 'woocommerce' ),
'SGD' => __( 'Singapore Dollar', 'woocommerce' ),
'ZAR' => __( 'South African rand', 'woocommerce' ),
'SEK' => __( 'Swedish Krona', 'woocommerce' ),
'CHF' => __( 'Swiss Franc', 'woocommerce' ),
'TWD' => __( 'Taiwan New Dollars', 'woocommerce' ),
'THB' => __( 'Thai Baht', 'woocommerce' ),
'TRY' => __( 'Turkish Lira', 'woocommerce' ),
'UAH' => __( 'Ukrainian Hryvnia', 'woocommerce' ),
2014-09-01 06:00:12 +00:00
'USD' => __( 'US Dollars', 'woocommerce' ),
'VND' => __( 'Vietnamese Dong', 'woocommerce' ),
'EGP' => __( 'Egyptian Pound', 'woocommerce' )
2014-09-01 06:00:12 +00:00
);
$this->assertEquals( $expected_currencies, get_woocommerce_currencies() );
}
2014-09-01 06:59:23 +00:00
/**
* Test get_woocommerce_currency_symbol()
*
* @since 2.2
*/
2014-09-01 06:00:12 +00:00
public function test_get_woocommerce_currency_symbol() {
2014-09-01 06:59:23 +00:00
// default currency
2014-09-01 06:00:12 +00:00
$this->assertEquals( '&pound;', get_woocommerce_currency_symbol() );
2014-09-01 06:59:23 +00:00
// given specific currency
$this->assertEquals( '&#36;', get_woocommerce_currency_symbol( 'USD' ) );
2014-09-01 06:00:12 +00:00
2014-09-01 06:59:23 +00:00
// each case
foreach ( array_keys( get_woocommerce_currencies() ) as $currency_code ) {
$this->assertInternalType( 'string', get_woocommerce_currency_symbol( $currency_code ) );
}
2014-09-01 06:00:12 +00:00
}
2014-09-01 06:59:23 +00:00
/**
* Test get_woocommerce_api_url()
*
* @since 2.2
*/
public function test_get_woocommerce_api_url() {
2014-09-01 06:00:12 +00:00
2014-09-05 15:17:53 +00:00
$base_uri = get_home_url();
2014-09-01 06:59:23 +00:00
// base uri
2014-09-05 15:17:53 +00:00
$this->assertEquals( "$base_uri/wc-api/v2/", get_woocommerce_api_url( null ) );
2014-09-01 06:00:12 +00:00
2014-09-01 06:59:23 +00:00
// path
2014-09-05 15:17:53 +00:00
$this->assertEquals( "$base_uri/wc-api/v2/orders", get_woocommerce_api_url( 'orders' ) );
2014-09-01 06:00:12 +00:00
}
2015-04-08 15:55:54 +00:00
/**
* Test wc_get_log_file_path()
*
* @since 2.4
*/
public function test_wc_get_log_file_path() {
$log_dir = trailingslashit( WC_LOG_DIR );
$hash_name = sanitize_file_name( wp_hash( 'unit-tests' ) );
$this->assertEquals( $log_dir . 'unit-tests-' . $hash_name . '.log', wc_get_log_file_path( 'unit-tests' ) );
}
2014-09-01 06:59:23 +00:00
/**
* Test wc_get_core_supported_themes()
*
* @since 2.2
*/
2014-09-01 06:00:12 +00:00
public function test_wc_get_core_supported_themes() {
$expected_themes = array( 'twentyfifteen', 'twentyfourteen', 'twentythirteen', 'twentyeleven', 'twentytwelve', 'twentyten' );
2014-09-01 06:00:12 +00:00
$this->assertEquals( $expected_themes, wc_get_core_supported_themes() );
}
2014-09-01 06:59:23 +00:00
/**
* Test wc_get_base_location()
*
* @since 2.3.0
*/
public function test_wc_get_base_location() {
$default = wc_get_base_location();
$this->assertEquals( 'GB', $default['country'] );
$this->assertEquals( '', $default['state'] );
}
2014-09-01 06:00:12 +00:00
}