1
0
Fork 0
mirror of synced 2025-04-06 07:13:33 +03:00

several fixes & environment variable which can be used to output logs to stdout in tests

This commit is contained in:
Pavel 2020-06-09 15:40:48 +03:00
parent 6777140b8b
commit 7ed4345100
3 changed files with 55 additions and 4 deletions

View file

@ -1,6 +1,12 @@
# MySQL host and credentials
DB_NAME=wc_retailcrm_test
DB_USER=wc_retailcrm
DB_PASS=wc_retailcrm
DB_HOST=mysql
# WordPress and WooCommerce versions
WP_VERSION=4.4
WC_VERSION=3.0.0
# Enable this in order to pipe all module log messages (including debug ones) to STDOUT.
MODULE_LOGS_TO_STDOUT=0

View file

@ -35,6 +35,9 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) :
/** @var WC_Retailcrm_Order */
protected $orders;
/** @var array */
private $ordersGetRequestCache = array();
/** @var array */
private $order = array();
@ -274,10 +277,10 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) :
$wpUser = $wcOrder->get_user();
if ($update) {
$response = $this->retailcrm->ordersGet($wcOrder->get_id());
$response = $this->getCrmOrder($wcOrder->get_id());
if (!empty($response) && $response->isSuccessful() && isset($response['order'])) {
$customerWasChanged = self::isOrderCustomerWasChanged($wcOrder, $response['order']);
if (!empty($response)) {
$customerWasChanged = self::isOrderCustomerWasChanged($wcOrder, $response);
}
}
@ -299,6 +302,11 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) :
}
}
if ($update && $customerWasChanged) {
$this->order['firstName'] = $wcOrder->get_shipping_first_name();
$this->order['lastName'] = $wcOrder->get_shipping_last_name();
}
return true;
}
@ -470,11 +478,16 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) :
return null;
}
<<<<<<< HEAD
$response = $this->retailcrm->ordersGet($order->get_id());
if (!empty($response) && $response->isSuccessful()) {
$retailcrmOrder = $response['order'];
=======
$retailcrmOrder = $this->getCrmOrder($order->get_id());
>>>>>>> several fixes & environment variable which can be used to output logs to stdout in tests
if (!empty($retailcrmOrder)) {
foreach ($retailcrmOrder['payments'] as $payment_data) {
$payment_external_id = explode('-', $payment_data['externalId']);
@ -614,6 +627,31 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) :
return $payment;
}
/**
* ordersGet wrapper with cache (in order to minimize request count).
*
* @param int|string $orderId
* @param bool $cached
*
* @return array
*/
protected function getCrmOrder($orderId, $cached = true)
{
if ($cached && isset($this->ordersGetRequestCache[$orderId])) {
return (array) $this->ordersGetRequestCache[$orderId];
}
$crmOrder = array();
$response = $this->retailcrm->ordersGet($orderId);
if (!empty($response) && $response->isSuccessful() && isset($response['order'])) {
$crmOrder = (array) $response['order'];
$this->ordersGetRequestCache[$orderId] = $crmOrder;
}
return $crmOrder;
}
/**
* @return array
*/
@ -678,6 +716,10 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) :
*/
public static function isOrderCustomerWasChanged($wcOrder, $crmOrder)
{
if (!isset($crmOrder['customer'])) {
return false;
}
$customerWasChanged = self::isCorporateOrder($wcOrder) != self::isCorporateCrmOrder($crmOrder);
$synchronizableUserData = self::isCorporateCrmOrder($crmOrder)
? $crmOrder['contact'] : $crmOrder['customer'];

View file

@ -1,6 +1,7 @@
<?php
$_tests_dir = getenv('WP_TESTS_DIR');
$_output_logs_to_stdout = getenv('MODULE_LOGS_TO_STDOUT');
$_wcOldBootstrap = '/tmp/woocommerce/tests/bootstrap.php';
$_wcNewBootstrap = '/tmp/woocommerce/tests/legacy/bootstrap.php';
@ -39,4 +40,6 @@ require $plugin_dir . 'tests/helpers/class-wc-retailcrm-response-helper.php';
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()));
if (!empty($_output_logs_to_stdout) && $_output_logs_to_stdout == '1') {
WC_Retailcrm_Logger::setAdditionalHandlers(array(new WC_Retailcrm_Log_Handler_Stdout()));
}