2014-11-18 16:22:14 +00:00
|
|
|
<?php
|
2019-07-02 13:43:52 +00:00
|
|
|
/**
|
|
|
|
* File for class Conditional_Functions tests.
|
|
|
|
* @package WooCommerce\Tests\Util
|
|
|
|
*/
|
2015-03-06 15:32:40 +00:00
|
|
|
|
2014-11-18 16:22:14 +00:00
|
|
|
/**
|
2015-11-03 13:31:20 +00:00
|
|
|
* Class Conditional_Functions.
|
2014-11-18 16:22:14 +00:00
|
|
|
* @since 2.3.0
|
|
|
|
*/
|
2016-03-23 12:14:13 +00:00
|
|
|
class WC_Tests_Conditional_Functions extends WC_Unit_Test_Case {
|
2014-11-18 16:22:14 +00:00
|
|
|
|
|
|
|
/**
|
2015-11-03 13:31:20 +00:00
|
|
|
* Test is_store_notice_showing().
|
2014-11-18 16:22:14 +00:00
|
|
|
*
|
|
|
|
* @since 2.3.0
|
|
|
|
*/
|
|
|
|
public function test_is_store_notice_showing() {
|
|
|
|
|
2016-12-20 22:33:35 +00:00
|
|
|
$this->assertFalse( is_store_notice_showing() );
|
2014-11-18 16:22:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-11-03 13:31:20 +00:00
|
|
|
* Test wc_tax_enabled().
|
2014-11-18 16:22:14 +00:00
|
|
|
*
|
|
|
|
* @since 2.3.0
|
|
|
|
*/
|
|
|
|
public function test_wc_tax_enabled() {
|
|
|
|
|
2016-12-20 22:33:35 +00:00
|
|
|
$this->assertFalse( wc_tax_enabled() );
|
2014-11-18 16:22:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-11-03 13:31:20 +00:00
|
|
|
* Test wc_prices_include_tax().
|
2014-11-18 16:22:14 +00:00
|
|
|
*
|
|
|
|
* @since 2.3.0
|
|
|
|
*/
|
|
|
|
public function test_wc_prices_include_tax() {
|
|
|
|
|
2016-12-20 22:33:35 +00:00
|
|
|
$this->assertFalse( wc_prices_include_tax() );
|
2014-11-18 16:22:14 +00:00
|
|
|
}
|
2015-03-03 11:37:49 +00:00
|
|
|
|
|
|
|
/**
|
2015-11-03 13:31:20 +00:00
|
|
|
* Data provider for test_wc_is_valid_url.
|
2015-03-03 11:37:49 +00:00
|
|
|
*
|
2015-04-14 13:34:35 +00:00
|
|
|
* @since 2.4
|
2015-03-03 11:37:49 +00:00
|
|
|
*/
|
2015-04-14 13:34:35 +00:00
|
|
|
public function data_provider_test_wc_is_valid_url() {
|
|
|
|
return array(
|
2019-07-02 13:43:52 +00:00
|
|
|
// Test some invalid URLs.
|
2015-04-14 13:34:35 +00:00
|
|
|
array( false, wc_is_valid_url( 'google.com' ) ),
|
|
|
|
array( false, wc_is_valid_url( 'ftp://google.com' ) ),
|
|
|
|
array( false, wc_is_valid_url( 'sftp://google.com' ) ),
|
|
|
|
array( false, wc_is_valid_url( 'https://google.com/test invalid' ) ),
|
2015-03-03 11:37:49 +00:00
|
|
|
|
2019-07-02 13:43:52 +00:00
|
|
|
// Test some valid URLs.
|
2019-05-01 22:05:00 +00:00
|
|
|
array( true, wc_is_valid_url( 'http://google.com' ) ),
|
|
|
|
array( true, wc_is_valid_url( 'https://google.com' ) ),
|
|
|
|
array( true, wc_is_valid_url( 'https://google.com/test%20valid' ) ),
|
|
|
|
array( true, wc_is_valid_url( 'https://google.com/test-valid/?query=test' ) ),
|
|
|
|
array( true, wc_is_valid_url( 'https://google.com/test-valid/#hash' ) ),
|
2015-04-14 13:34:35 +00:00
|
|
|
);
|
|
|
|
}
|
2015-03-03 11:37:49 +00:00
|
|
|
|
2016-08-01 11:21:55 +00:00
|
|
|
/**
|
|
|
|
* Test wc_site_is_https().
|
|
|
|
*/
|
|
|
|
public function test_wc_site_is_https() {
|
|
|
|
$this->assertFalse( wc_site_is_https() );
|
|
|
|
|
2016-08-01 16:08:42 +00:00
|
|
|
add_filter( 'pre_option_home', array( $this, '_https_url' ) );
|
2016-08-01 11:21:55 +00:00
|
|
|
|
|
|
|
$this->assertTrue( wc_site_is_https() );
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Callback for chaning home url to https.
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function _https_url() {
|
|
|
|
return 'https://example.org';
|
|
|
|
}
|
|
|
|
|
2015-04-14 13:34:35 +00:00
|
|
|
/**
|
2015-11-03 13:31:20 +00:00
|
|
|
* Test wc_is_valid_url().
|
2015-04-14 13:34:35 +00:00
|
|
|
*
|
|
|
|
* @dataProvider data_provider_test_wc_is_valid_url
|
2019-07-02 13:43:52 +00:00
|
|
|
* @param bool $assert Expected result.
|
|
|
|
* @param bool $values Actual result returned by wc_is_valid_url().
|
2015-04-14 13:34:35 +00:00
|
|
|
* @since 2.3.0
|
|
|
|
*/
|
|
|
|
public function test_wc_is_valid_url( $assert, $values ) {
|
2019-05-01 22:05:00 +00:00
|
|
|
$this->assertEquals( $assert, $values );
|
2015-03-03 11:37:49 +00:00
|
|
|
}
|
2019-07-02 13:44:21 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Test wc_is_file_valid_csv.
|
|
|
|
*
|
|
|
|
* @since 3.6.5
|
|
|
|
*/
|
|
|
|
public function test_wc_is_file_valid_csv() {
|
|
|
|
$this->assertTrue( wc_is_file_valid_csv( 'C:/wamp64/www/test.local/wp-content/uploads/2018/10/products_all_gg-1.csv' ) );
|
|
|
|
$this->assertTrue( wc_is_file_valid_csv( '/srv/www/woodev/wp-content/uploads/2018/10/1098488_single.csv' ) );
|
|
|
|
$this->assertFalse( wc_is_file_valid_csv( '/srv/www/woodev/wp-content/uploads/2018/10/img.jpg' ) );
|
|
|
|
$this->assertFalse( wc_is_file_valid_csv( 'file:///srv/www/woodev/wp-content/uploads/2018/10/1098488_single.csv' ) );
|
|
|
|
}
|
2014-11-18 16:22:14 +00:00
|
|
|
}
|