different check for a customer in the order
This commit is contained in:
parent
51f788afbf
commit
d644d02238
2 changed files with 6 additions and 18 deletions
|
@ -40,20 +40,3 @@ require $plugin_dir . 'tests/helpers/class-wc-retailcrm-test-case-helper.php';
|
|||
require $plugin_dir . 'tests/helpers/class-wc-retailcrm-log-handler-stdout.php';
|
||||
|
||||
WC_Retailcrm_Logger::setAdditionalHandlers(array(new WC_Retailcrm_Log_Handler_Stdout()));
|
||||
|
||||
/**
|
||||
* Returns true if WP version is 4.6 or older. It's useful in some tests.
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
function is_wp_older_or_4_6() {
|
||||
include(ABSPATH . WPINC . '/version.php');
|
||||
|
||||
if (!empty($wp_version)) {
|
||||
$version = explode('.', substr($wp_version, 0, 3));
|
||||
|
||||
return count($version) == 2 && ($version[0] > 4 || $version[1] > 6);
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
|
|
@ -297,7 +297,12 @@ class WC_Retailcrm_History_Test extends WC_Retailcrm_Test_Case_Helper
|
|||
$this->assertEquals('Компания1', $order->get_billing_company());
|
||||
$this->assertEquals('9135487458709', $order->get_billing_phone());
|
||||
|
||||
if (!is_wp_older_or_4_6()) {
|
||||
$orderUser = $order->get_user();
|
||||
|
||||
if ($orderUser instanceof WP_User) {
|
||||
$this->assertEquals('psycho913', $orderUser->get('_billing_first_name'));
|
||||
$this->assertEquals('psycho913', $orderUser->get('_billing_last_name'));
|
||||
} else {
|
||||
$this->assertEmpty($order->get_customer_id());
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue