Dropped v4, fixes for several bugs, tests.
This commit is contained in:
parent
059002f9c7
commit
e0e1469273
22 changed files with 2419 additions and 333 deletions
|
@ -122,11 +122,6 @@ abstract class WC_Retailcrm_Abstracts_Settings extends WC_Integration
|
|||
)
|
||||
);
|
||||
|
||||
$api_version_list = array(
|
||||
'v4' => 'v4',
|
||||
'v5' => 'v5'
|
||||
);
|
||||
|
||||
$this->form_fields[] = array(
|
||||
'title' => __( 'API settings', 'retailcrm' ),
|
||||
'type' => 'title',
|
||||
|
@ -134,16 +129,6 @@ abstract class WC_Retailcrm_Abstracts_Settings extends WC_Integration
|
|||
'id' => 'api_options'
|
||||
);
|
||||
|
||||
$this->form_fields['api_version'] = array(
|
||||
'title' => __( 'API version', 'retailcrm' ),
|
||||
'description' => __( 'Select API version', 'retailcrm' ),
|
||||
'css' => 'min-width:50px;',
|
||||
'class' => 'select',
|
||||
'type' => 'select',
|
||||
'options' => $api_version_list,
|
||||
'desc_tip' => true,
|
||||
);
|
||||
|
||||
$this->form_fields['send_payment_amount'] = array(
|
||||
'title' => __( 'Transferring the payment amount', 'retailcrm' ),
|
||||
'label' => ' ',
|
||||
|
@ -573,6 +558,7 @@ abstract class WC_Retailcrm_Abstracts_Settings extends WC_Integration
|
|||
}
|
||||
|
||||
/**
|
||||
<<<<<<< HEAD
|
||||
* Validate API version
|
||||
*
|
||||
* @param string $key
|
||||
|
@ -609,6 +595,8 @@ abstract class WC_Retailcrm_Abstracts_Settings extends WC_Integration
|
|||
}
|
||||
|
||||
/**
|
||||
=======
|
||||
>>>>>>> Dropped v4, fixes for several bugs, tests.
|
||||
* Validate API url
|
||||
*
|
||||
* @param string $key
|
||||
|
@ -622,7 +610,6 @@ abstract class WC_Retailcrm_Abstracts_Settings extends WC_Integration
|
|||
$api = new WC_Retailcrm_Proxy(
|
||||
$value,
|
||||
$post[$this->plugin_id . $this->id . '_api_key'],
|
||||
null,
|
||||
$this->get_option('corporate_enabled', 'no') === 'yes'
|
||||
);
|
||||
|
||||
|
@ -650,7 +637,6 @@ abstract class WC_Retailcrm_Abstracts_Settings extends WC_Integration
|
|||
$api = new WC_Retailcrm_Proxy(
|
||||
$post[$this->plugin_id . $this->id . '_api_url'],
|
||||
$value,
|
||||
null,
|
||||
$this->get_option('corporate_enabled', 'no') === 'yes'
|
||||
);
|
||||
|
||||
|
|
|
@ -17,29 +17,15 @@ if ( ! class_exists( 'WC_Retailcrm_Proxy' ) ) :
|
|||
protected $retailcrm;
|
||||
protected $corporateEnabled;
|
||||
|
||||
public function __construct($api_url, $api_key, $api_vers = null, $corporateEnabled = false)
|
||||
public function __construct($api_url, $api_key, $corporateEnabled = false)
|
||||
{
|
||||
$this->corporateEnabled = $corporateEnabled;
|
||||
|
||||
if ( ! class_exists( 'WC_Retailcrm_Client_V4' ) ) {
|
||||
include_once( __DIR__ . '/class-wc-retailcrm-client-v4.php' );
|
||||
}
|
||||
|
||||
if ( ! class_exists( 'WC_Retailcrm_Client_V5' ) ) {
|
||||
include_once( __DIR__ . '/class-wc-retailcrm-client-v5.php' );
|
||||
}
|
||||
|
||||
switch ($api_vers) {
|
||||
case 'v4':
|
||||
$this->retailcrm = new WC_Retailcrm_Client_V4($api_url, $api_key, $api_vers);
|
||||
break;
|
||||
case 'v5':
|
||||
$this->retailcrm = new WC_Retailcrm_Client_V5($api_url, $api_key, $api_vers);
|
||||
break;
|
||||
case null:
|
||||
$this->retailcrm = new WC_Retailcrm_Client_V4($api_url, $api_key, $api_vers);
|
||||
break;
|
||||
}
|
||||
$this->retailcrm = new WC_Retailcrm_Client_V5($api_url, $api_key, 'v5');
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -416,7 +416,6 @@ if (!class_exists('WC_Retailcrm_Base')) {
|
|||
return new WC_Retailcrm_Proxy(
|
||||
$this->get_option('api_url'),
|
||||
$this->get_option('api_key'),
|
||||
$this->get_option('api_version'),
|
||||
$this->get_option('corporate_enabled', 'no') === 'yes'
|
||||
);
|
||||
}
|
||||
|
@ -433,9 +432,8 @@ if (!class_exists('WC_Retailcrm_Base')) {
|
|||
{
|
||||
$api_client = $this->getApiClient();
|
||||
$clientId = get_option('retailcrm_client_id');
|
||||
$api_version = $this->get_option('api_version');
|
||||
|
||||
WC_Retailcrm_Plugin::integration_module($api_client, $clientId, $api_version, false);
|
||||
WC_Retailcrm_Plugin::integration_module($api_client, $clientId, false);
|
||||
delete_option('retailcrm_active_in_crm');
|
||||
}
|
||||
|
||||
|
@ -452,15 +450,14 @@ if (!class_exists('WC_Retailcrm_Base')) {
|
|||
$client_id = uniqid();
|
||||
}
|
||||
|
||||
if ($settings['api_url'] && $settings['api_key'] && $settings['api_version']) {
|
||||
if ($settings['api_url'] && $settings['api_key']) {
|
||||
$api_client = new WC_Retailcrm_Proxy(
|
||||
$settings['api_url'],
|
||||
$settings['api_key'],
|
||||
$settings['api_version'],
|
||||
$settings['corporate_enabled'] === 'yes'
|
||||
);
|
||||
|
||||
$result = WC_Retailcrm_Plugin::integration_module($api_client, $client_id, $settings['api_version']);
|
||||
$result = WC_Retailcrm_Plugin::integration_module($api_client, $client_id);
|
||||
|
||||
if ($result) {
|
||||
update_option('retailcrm_active_in_crm', true);
|
||||
|
|
|
@ -408,13 +408,12 @@ if (!class_exists('WC_Retailcrm_Customers')) :
|
|||
$corpAddress = new WC_Retailcrm_Customer_Corporate_Address();
|
||||
|
||||
$address = $orderAddress
|
||||
->setFallbackToBilling(true)
|
||||
->setWCAddressType(WC_Retailcrm_Abstracts_Address::ADDRESS_TYPE_BILLING)
|
||||
->build($order)
|
||||
->get_data();
|
||||
|
||||
$shippingAddress = $corpAddress
|
||||
->setWCAddressType(WC_Retailcrm_Abstracts_Address::ADDRESS_TYPE_SHIPPING)
|
||||
->setWCAddressType(WC_Retailcrm_Abstracts_Address::ADDRESS_TYPE_BILLING)
|
||||
->setFallbackToBilling(true)
|
||||
->setIsMain(true)
|
||||
->build($customer, $order)
|
||||
|
@ -540,8 +539,6 @@ if (!class_exists('WC_Retailcrm_Customers')) :
|
|||
$dataCorporateCustomers = $search['customersCorporate'];
|
||||
$customer = reset($dataCorporateCustomers);
|
||||
}
|
||||
} elseif (isset($search['customerCorporate'])) {
|
||||
$customer = $search['customerCorporate'];
|
||||
} else {
|
||||
$customer = false;
|
||||
}
|
||||
|
|
|
@ -687,29 +687,18 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) :
|
|||
'city' => isset($address['city']) ? $address['city'] : '',
|
||||
'state' => isset($address['region']) ? $address['region'] : '',
|
||||
'postcode' => isset($address['index']) ? $address['index'] : '',
|
||||
'country' => $address['countryIso']
|
||||
'country' => isset($address['countryIso']) ? $address['countryIso'] : ''
|
||||
);
|
||||
|
||||
if ($this->retailcrm_settings['api_version'] == 'v5') {
|
||||
if (isset($order['payments']) && $order['payments']) {
|
||||
$payment = WC_Payment_Gateways::instance();
|
||||
if (isset($order['payments']) && $order['payments']) {
|
||||
$payment = WC_Payment_Gateways::instance();
|
||||
|
||||
if (count($order['payments']) == 1) {
|
||||
$payment_types = $payment->payment_gateways();
|
||||
$payments = $order['payments'];
|
||||
$paymentType = end($payments);
|
||||
if (isset($options[$paymentType['type']]) && isset($payment_types[$options[$paymentType['type']]])) {
|
||||
$wc_order->set_payment_method($payment_types[$options[$paymentType['type']]]);
|
||||
}
|
||||
}
|
||||
}
|
||||
} else {
|
||||
if (isset($order['paymentType']) && $order['paymentType']) {
|
||||
$payment = WC_Payment_Gateways::instance();
|
||||
if (count($order['payments']) == 1) {
|
||||
$payment_types = $payment->payment_gateways();
|
||||
|
||||
if (isset($options[$order['paymentType']]) && isset($payment_types[$options[$order['paymentType']]])) {
|
||||
$wc_order->set_payment_method($payment_types[$options[$order['paymentType']]]);
|
||||
$payments = $order['payments'];
|
||||
$paymentType = end($payments);
|
||||
if (isset($options[$paymentType['type']]) && isset($payment_types[$options[$paymentType['type']]])) {
|
||||
$wc_order->set_payment_method($payment_types[$options[$paymentType['type']]]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -977,13 +966,13 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) :
|
|||
return;
|
||||
}
|
||||
|
||||
$this->prepareChangeToIndividual(
|
||||
self::arrayValue($crmOrder, 'contact', array()),
|
||||
$data,
|
||||
true
|
||||
);
|
||||
if (self::isOrderCorporate($crmOrder)) {
|
||||
$this->prepareChangeToIndividual(
|
||||
self::arrayValue($crmOrder, 'contact', array()),
|
||||
$data,
|
||||
true
|
||||
);
|
||||
|
||||
if (isset($order['customer']) && $order['customer']['id'] == $order['contact']['id']) {
|
||||
$data->setNewCustomer(array());
|
||||
}
|
||||
}
|
||||
|
@ -992,24 +981,30 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) :
|
|||
$data->setNewCompany($order['company']);
|
||||
}
|
||||
|
||||
try {
|
||||
$result = $switcher->setData($data)
|
||||
->build()
|
||||
->getResult();
|
||||
if ($data->feasible()) {
|
||||
try {
|
||||
$result = $switcher->setData($data)
|
||||
->build()
|
||||
->getResult();
|
||||
|
||||
$result->save();
|
||||
} catch (\Exception $exception) {
|
||||
WC_Retailcrm_Logger::addCaller(
|
||||
__METHOD__,
|
||||
sprintf(
|
||||
$result->save();
|
||||
} catch (\Exception $exception) {
|
||||
$errorMessage = sprintf(
|
||||
'Error switching order externalId=%s to customer id=%s (new company: id=%s %s). Reason: %s',
|
||||
$order['externalId'],
|
||||
$newCustomerId,
|
||||
isset($order['company']) ? $order['company']['id'] : '',
|
||||
isset($order['company']) ? $order['company']['name'] : '',
|
||||
$exception->getMessage()
|
||||
)
|
||||
);
|
||||
);
|
||||
WC_Retailcrm_Logger::addCaller(__METHOD__, $errorMessage);
|
||||
WC_Retailcrm_Logger::debug(__METHOD__, sprintf(
|
||||
'%s%s%s',
|
||||
$errorMessage,
|
||||
PHP_EOL,
|
||||
$exception->getTraceAsString()
|
||||
));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1142,7 +1137,7 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) :
|
|||
return $def;
|
||||
}
|
||||
|
||||
return $arr[$key];
|
||||
return isset($arr[$key]) ? $arr[$key] : $def;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -369,13 +369,13 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) :
|
|||
$order = wc_get_order($order_id);
|
||||
$this->processOrder($order, true);
|
||||
|
||||
if ($this->retailcrm_settings['api_version'] == 'v4') {
|
||||
$this->order['paymentType'] = $this->retailcrm_settings[$order->get_payment_method()];
|
||||
}
|
||||
|
||||
$response = $this->retailcrm->ordersEdit($this->order);
|
||||
|
||||
<<<<<<< HEAD
|
||||
if ((!empty($response) && $response->isSuccessful()) && $this->retailcrm_settings['api_version'] == 'v5') {
|
||||
=======
|
||||
if ($response->isSuccessful()) {
|
||||
>>>>>>> Dropped v4, fixes for several bugs, tests.
|
||||
$this->payment = $this->orderUpdatePaymentType($order);
|
||||
}
|
||||
|
||||
|
@ -500,7 +500,7 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) :
|
|||
|
||||
$order_data['items'] = $order_items;
|
||||
|
||||
if ($this->retailcrm_settings['api_version'] == 'v5' && !$update) {
|
||||
if (!$update) {
|
||||
$this->order_payment->is_new = true;
|
||||
$order_data['payments'][] = $this->order_payment->build($order)->get_data();
|
||||
}
|
||||
|
|
|
@ -96,7 +96,7 @@ class WC_Retailcrm_Plugin {
|
|||
*
|
||||
* @return boolean
|
||||
*/
|
||||
public static function integration_module($api_client, $client_id, $api_version, $active = true) {
|
||||
public static function integration_module($api_client, $client_id, $active = true) {
|
||||
|
||||
if (!$api_client) {
|
||||
return false;
|
||||
|
@ -109,18 +109,12 @@ class WC_Retailcrm_Plugin {
|
|||
'active' => $active,
|
||||
);
|
||||
|
||||
if ($api_version == 'v4') {
|
||||
$configuration['configurationUrl'] = get_site_url();
|
||||
$configuration['integrationCode'] = self::INTEGRATION_CODE;
|
||||
$configuration['baseUrl'] = get_site_url();
|
||||
$configuration['clientId'] = $client_id;
|
||||
$configuration['accountUrl'] = get_site_url();
|
||||
|
||||
$response = $api_client->marketplaceSettingsEdit($configuration);
|
||||
} else {
|
||||
$configuration['integrationCode'] = self::INTEGRATION_CODE;
|
||||
$configuration['baseUrl'] = get_site_url();
|
||||
$configuration['clientId'] = $client_id;
|
||||
$configuration['accountUrl'] = get_site_url();
|
||||
|
||||
$response = $api_client->integrationModulesEdit($configuration);
|
||||
}
|
||||
$response = $api_client->integrationModulesEdit($configuration);
|
||||
|
||||
if (!$response) {
|
||||
return false;
|
||||
|
|
|
@ -51,6 +51,7 @@ class WC_Retailcrm_Customer_Switcher implements WC_Retailcrm_Builder_Interface
|
|||
)
|
||||
);
|
||||
$this->processChangeToRegular($this->data->getWcOrder(), $newCustomer);
|
||||
$this->data->getWcOrder()->set_billing_company('');
|
||||
} else {
|
||||
if (!empty($newContact)) {
|
||||
WC_Retailcrm_Logger::debug(
|
||||
|
@ -138,37 +139,14 @@ class WC_Retailcrm_Customer_Switcher implements WC_Retailcrm_Builder_Interface
|
|||
$wcOrder->{'set_' . $field}($value);
|
||||
}
|
||||
|
||||
if (isset($newCustomer['address'])) {
|
||||
$address = $newCustomer['address'];
|
||||
$address = self::arrayValue($newCustomer, 'address', array());
|
||||
$wcOrder->set_billing_state(self::arrayValue($address, 'region', '--'));
|
||||
$wcOrder->set_billing_postcode(self::arrayValue($address, 'index', '--'));
|
||||
$wcOrder->set_billing_country(self::arrayValue($address, 'country', '--'));
|
||||
$wcOrder->set_billing_city(self::arrayValue($address, 'city', '--'));
|
||||
$wcOrder->set_billing_address_1(self::arrayValue($address, 'text', '--'));
|
||||
$wcOrder->set_billing_phone(self::singleCustomerPhone($newCustomer));
|
||||
|
||||
if (isset($address['region'])) {
|
||||
$wcOrder->set_billing_state($address['region']);
|
||||
}
|
||||
|
||||
if (isset($address['index'])) {
|
||||
$wcOrder->set_billing_postcode($address['index']);
|
||||
}
|
||||
|
||||
if (isset($address['country'])) {
|
||||
$wcOrder->set_billing_country($address['country']);
|
||||
}
|
||||
|
||||
if (isset($address['city'])) {
|
||||
$wcOrder->set_billing_city($address['city']);
|
||||
}
|
||||
|
||||
if (isset($address['text'])) {
|
||||
$wcOrder->set_billing_address_1($address['text']);
|
||||
}
|
||||
}
|
||||
|
||||
$customerPhone = self::singleCustomerPhone($newCustomer);
|
||||
|
||||
if (!empty($customerPhone)) {
|
||||
$wcOrder->set_billing_phone($customerPhone);
|
||||
}
|
||||
|
||||
$wcOrder->set_billing_company('');
|
||||
$this->result = new WC_Retailcrm_Customer_Switcher_Result($wcCustomer, $wcOrder);
|
||||
}
|
||||
|
||||
|
@ -246,7 +224,7 @@ class WC_Retailcrm_Customer_Switcher implements WC_Retailcrm_Builder_Interface
|
|||
return $def;
|
||||
}
|
||||
|
||||
return $arr[$key];
|
||||
return isset($arr[$key]) ? $arr[$key] : $def;
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -259,18 +237,18 @@ class WC_Retailcrm_Customer_Switcher implements WC_Retailcrm_Builder_Interface
|
|||
private static function singleCustomerPhone($customerData)
|
||||
{
|
||||
if (!array_key_exists('phones', $customerData)) {
|
||||
return null;
|
||||
return '';
|
||||
}
|
||||
|
||||
if (empty($customerData['phones']) || !is_array($customerData['phones'])) {
|
||||
return null;
|
||||
return '';
|
||||
}
|
||||
|
||||
$phones = $customerData['phones'];
|
||||
$phone = reset($phones);
|
||||
|
||||
if (!isset($phone['number'])) {
|
||||
return null;
|
||||
return '';
|
||||
}
|
||||
|
||||
return (string) $phone['number'];
|
||||
|
|
|
@ -271,10 +271,10 @@ class WC_Retailcrm_History_Assembler
|
|||
private static function getMappingValues($groupFilter = array())
|
||||
{
|
||||
$fields = array();
|
||||
$mappingFile = implode(
|
||||
$mappingFile = realpath(implode(
|
||||
DIRECTORY_SEPARATOR,
|
||||
array(WP_CONTENT_DIR, 'plugins', 'woo-retailcrm', 'config', 'objects.xml')
|
||||
);
|
||||
array(__DIR__, '..', '..', 'config', 'objects.xml')
|
||||
));
|
||||
|
||||
if (file_exists($mappingFile)) {
|
||||
$objects = simplexml_load_file($mappingFile);
|
||||
|
|
|
@ -91,14 +91,14 @@ if (!class_exists('WC_Retailcrm_Logger') && class_exists('WC_Log_Levels')):
|
|||
* This log will work only if debug mode is enabled (see retailcrm_is_debug() for details).
|
||||
* Caller should be specified, or message will be ignored at all.
|
||||
*
|
||||
* @param string $method
|
||||
* @param array $messages
|
||||
* @param string $method
|
||||
* @param array|string $messages
|
||||
*/
|
||||
public static function debug($method, $messages)
|
||||
{
|
||||
if (retailcrm_is_debug()) {
|
||||
if (!empty($method) && !empty($messages)) {
|
||||
$result = substr(
|
||||
$result = is_array($messages) ? substr(
|
||||
array_reduce(
|
||||
$messages,
|
||||
function ($carry, $item) {
|
||||
|
@ -107,7 +107,7 @@ if (!class_exists('WC_Retailcrm_Logger') && class_exists('WC_Log_Levels')):
|
|||
}
|
||||
),
|
||||
1
|
||||
);
|
||||
) : $messages;
|
||||
|
||||
self::getInstance()->add(
|
||||
self::HANDLE . '_debug',
|
||||
|
|
|
@ -64,11 +64,13 @@ class WC_Retailcrm_Customer_Switcher_Result
|
|||
)
|
||||
);
|
||||
|
||||
if (!empty($this->wcCustomer)) {
|
||||
if (!empty($this->wcCustomer) && $this->wcCustomer->get_id()) {
|
||||
$this->wcCustomer->save();
|
||||
}
|
||||
|
||||
$this->wcOrder->save();
|
||||
if (!empty($this->wcOrder) && $this->wcOrder->get_id()) {
|
||||
$this->wcOrder->save();
|
||||
}
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
|
|
@ -108,6 +108,17 @@ class WC_Retailcrm_Customer_Switcher_State
|
|||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns true if current state may be processable (e.g. when customer or related data was changed).
|
||||
* It doesn't guarantee state validity.
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
public function feasible()
|
||||
{
|
||||
return !(empty($this->newCustomer) && empty($this->newContact) && empty($this->newCompanyName));
|
||||
}
|
||||
|
||||
/**
|
||||
* Throws an exception if state is not valid
|
||||
*
|
||||
|
|
|
@ -65,12 +65,7 @@ class WC_Retailcrm_Order_Item extends WC_Retailcrm_Abstracts_Data
|
|||
|
||||
$this->set_data_fields($data);
|
||||
$this->set_offer($item);
|
||||
|
||||
if ($this->settings['api_version'] == 'v5') {
|
||||
$this->set_data_field('discountManualAmount', (float) round($discount_price, 2));
|
||||
} elseif ($this->settings['api_version'] == 'v4') {
|
||||
$this->set_data_field('discount', (float) round($discount_price, 2));
|
||||
}
|
||||
$this->set_data_field('discountManualAmount', (float) round($discount_price, 2));
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
|
|
@ -67,10 +67,6 @@ class WC_Retailcrm_Order extends WC_Retailcrm_Abstracts_Data
|
|||
$this->set_data_fields($data);
|
||||
$this->set_number($order);
|
||||
|
||||
if ($this->settings['api_version'] != 'v5') {
|
||||
$this->set_payment_data($order);
|
||||
}
|
||||
|
||||
if (isset($this->settings[$order->get_status()])) {
|
||||
$this->set_data_field('status', $this->settings[$order->get_status()]);
|
||||
}
|
||||
|
|
|
@ -0,0 +1,82 @@
|
|||
<?php
|
||||
/**
|
||||
* PHP version 5.3
|
||||
*
|
||||
* @category Integration
|
||||
* @author RetailCRM <integration@retailcrm.ru>
|
||||
* @license http://retailcrm.ru Proprietary
|
||||
* @link http://retailcrm.ru
|
||||
* @see http://help.retailcrm.ru
|
||||
*/
|
||||
|
||||
class WC_Retailcrm_Customer_Switcher_State_Test extends WC_Retailcrm_Test_Case_Helper
|
||||
{
|
||||
public function test_feasible()
|
||||
{
|
||||
$state = new WC_Retailcrm_Customer_Switcher_State();
|
||||
$this->assertFalse($state->feasible());
|
||||
|
||||
$state->setNewCustomer(array())
|
||||
->setNewContact(array())
|
||||
->setNewCompanyName('');
|
||||
$this->assertFalse($state->feasible());
|
||||
|
||||
$state->setNewCustomer(array('id' => 1));
|
||||
$this->assertTrue($state->feasible());
|
||||
|
||||
$state->setNewCustomer(array())
|
||||
->setNewContact(array('id' => 1));
|
||||
$this->assertTrue($state->feasible());
|
||||
|
||||
$state->setNewCustomer(array())
|
||||
->setNewContact(array())
|
||||
->setNewCompanyName('test');
|
||||
$this->assertTrue($state->feasible());
|
||||
|
||||
$state->setNewCustomer(array())
|
||||
->setNewContact(array())
|
||||
->setNewCompany(array('name' => 'test'));
|
||||
$this->assertTrue($state->feasible());
|
||||
|
||||
$state->setNewCustomer(array())
|
||||
->setNewContact(array())
|
||||
->setNewCompanyName('');
|
||||
$this->assertFalse($state->feasible());
|
||||
}
|
||||
|
||||
public function test_validate_empty()
|
||||
{
|
||||
$this->expectException(InvalidArgumentException::class);
|
||||
$state = new WC_Retailcrm_Customer_Switcher_State();
|
||||
$state->validate();
|
||||
}
|
||||
|
||||
public function test_validate_order()
|
||||
{
|
||||
$this->expectException(InvalidArgumentException::class);
|
||||
$state = new WC_Retailcrm_Customer_Switcher_State();
|
||||
$state->setWcOrder(new WC_Order())
|
||||
->validate();
|
||||
}
|
||||
|
||||
public function test_validate_customer_and_contact_set()
|
||||
{
|
||||
$this->expectException(InvalidArgumentException::class);
|
||||
$state = new WC_Retailcrm_Customer_Switcher_State();
|
||||
$state->setWcOrder(new WC_Order())
|
||||
->setNewCustomer(array('id' => 1))
|
||||
->setNewContact(array('id' => 1))
|
||||
->validate();
|
||||
}
|
||||
|
||||
/**
|
||||
* @@doesNotPerformAssertions
|
||||
*/
|
||||
public function test_validate_ok()
|
||||
{
|
||||
$state = new WC_Retailcrm_Customer_Switcher_State();
|
||||
$state->setWcOrder(new WC_Order())
|
||||
->setNewCustomer(array('id' => 1))
|
||||
->validate();
|
||||
}
|
||||
}
|
|
@ -0,0 +1,131 @@
|
|||
<?php
|
||||
/**
|
||||
* PHP version 5.3
|
||||
*
|
||||
* @category Integration
|
||||
* @author RetailCRM <integration@retailcrm.ru>
|
||||
* @license http://retailcrm.ru Proprietary
|
||||
* @link http://retailcrm.ru
|
||||
* @see http://help.retailcrm.ru
|
||||
*/
|
||||
|
||||
class WC_Retailcrm_WC_Customer_Builder_Test extends WC_Retailcrm_Test_Case_Helper
|
||||
{
|
||||
public function test_empty()
|
||||
{
|
||||
$this->expectException(RuntimeException::class);
|
||||
$builder = new WC_Retailcrm_WC_Customer_Builder();
|
||||
$builder->build();
|
||||
}
|
||||
|
||||
public function test_empty_array()
|
||||
{
|
||||
$this->expectException(RuntimeException::class);
|
||||
$builder = new WC_Retailcrm_WC_Customer_Builder();
|
||||
$builder->setData(array())->build();
|
||||
}
|
||||
|
||||
public function test_not_array()
|
||||
{
|
||||
$this->expectException(RuntimeException::class);
|
||||
$builder = new WC_Retailcrm_WC_Customer_Builder();
|
||||
$builder->setData(new stdClass())->build();
|
||||
}
|
||||
|
||||
/**
|
||||
* @dataProvider customerData
|
||||
*
|
||||
* @param array $customerData
|
||||
*/
|
||||
public function test_build($customerData)
|
||||
{
|
||||
$builder = new WC_Retailcrm_WC_Customer_Builder();
|
||||
$wcCustomer = $builder->setData($customerData)->build()->getResult();
|
||||
|
||||
$this->assertInstanceOf(WC_Customer::class, $wcCustomer);
|
||||
|
||||
if (isset($customerData['firstName'])) {
|
||||
$this->assertEquals($customerData['firstName'], $wcCustomer->get_first_name());
|
||||
}
|
||||
|
||||
if (isset($customerData['lastName'])) {
|
||||
$this->assertEquals($customerData['lastName'], $wcCustomer->get_last_name());
|
||||
}
|
||||
|
||||
if (isset($customerData['email'])) {
|
||||
$this->assertEquals($customerData['email'], $wcCustomer->get_billing_email());
|
||||
}
|
||||
|
||||
if (isset($customerData['phones']) && count($customerData['phones']) > 0) {
|
||||
$this->assertEquals($customerData['phones'][0]['number'], $wcCustomer->get_billing_phone());
|
||||
}
|
||||
|
||||
if (isset($customerData['address']) && !empty($customerData['address'])) {
|
||||
$address = $customerData['address'];
|
||||
|
||||
if (isset($address['region'])) {
|
||||
$this->assertEquals($address['region'], $wcCustomer->get_billing_state());
|
||||
}
|
||||
|
||||
if (isset($address['index'])) {
|
||||
$this->assertEquals($address['index'], $wcCustomer->get_billing_postcode());
|
||||
}
|
||||
|
||||
if (isset($address['country'])) {
|
||||
$this->assertEquals($address['country'], $wcCustomer->get_billing_country());
|
||||
}
|
||||
|
||||
if (isset($address['city'])) {
|
||||
$this->assertEquals($address['city'], $wcCustomer->get_billing_city());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public function customerData()
|
||||
{
|
||||
return array(
|
||||
array(
|
||||
'customer' => array(
|
||||
'type' => 'customer',
|
||||
'id' => 4228,
|
||||
'externalId' => '2',
|
||||
)
|
||||
),
|
||||
array(
|
||||
'customer' => array(
|
||||
'type' => 'customer',
|
||||
'id' => 4228,
|
||||
'externalId' => '2',
|
||||
'isContact' => false,
|
||||
'createdAt' => '2020-06-01 15:31:46',
|
||||
'managerId' => 27,
|
||||
'vip' => false,
|
||||
'bad' => false,
|
||||
'site' => 'bitrix-test',
|
||||
'contragent' => array(
|
||||
'contragentType' => 'individual',
|
||||
),
|
||||
'tags' => array(),
|
||||
'marginSumm' => 9412,
|
||||
'totalSumm' => 9412,
|
||||
'averageSumm' => 9412,
|
||||
'ordersCount' => 1,
|
||||
'costSumm' => 0,
|
||||
'customFields' => array(),
|
||||
'personalDiscount' => 0,
|
||||
'cumulativeDiscount' => 0,
|
||||
'address' => array(
|
||||
'id' => 3132,
|
||||
'text' => 'ул. Пушкина дом Колотушкина',
|
||||
),
|
||||
'segments' => array(),
|
||||
'firstName' => 'tester001',
|
||||
'lastName' => 'tester001',
|
||||
'email' => 'tester001@example.com',
|
||||
'emailMarketingUnsubscribedAt' => '2020-06-01 15:34:23',
|
||||
'phones' => array(array('number' => '2354708915097'))
|
||||
)
|
||||
)
|
||||
);
|
||||
}
|
||||
}
|
|
@ -6,11 +6,9 @@
|
|||
class WC_Retailcrm_Test_Case_Helper extends WC_Unit_Test_Case
|
||||
{
|
||||
/**
|
||||
* @param string $apiVersion
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
protected function setOptions($apiVersion = 'v5')
|
||||
protected function setOptions()
|
||||
{
|
||||
$options = array(
|
||||
'api_url' => 'https://example.retailcrm.ru',
|
||||
|
|
45
tests/models/test-wc-retailcrm-customer-switcher-result.php
Normal file
45
tests/models/test-wc-retailcrm-customer-switcher-result.php
Normal file
|
@ -0,0 +1,45 @@
|
|||
<?php
|
||||
/**
|
||||
* PHP version 5.3
|
||||
*
|
||||
* @category Integration
|
||||
* @author RetailCRM <integration@retailcrm.ru>
|
||||
* @license http://retailcrm.ru Proprietary
|
||||
* @link http://retailcrm.ru
|
||||
* @see http://help.retailcrm.ru
|
||||
*/
|
||||
|
||||
class WC_Retailcrm_Customer_Switcher_Result_Test extends WC_Retailcrm_Test_Case_Helper
|
||||
{
|
||||
public function test_invalid_both()
|
||||
{
|
||||
$this->expectException(InvalidArgumentException::class);
|
||||
new WC_Retailcrm_Customer_Switcher_Result(new stdClass(), new stdClass());
|
||||
}
|
||||
|
||||
public function test_invalid_customer()
|
||||
{
|
||||
$this->expectException(InvalidArgumentException::class);
|
||||
new WC_Retailcrm_Customer_Switcher_Result(new stdClass(), new WC_Order());
|
||||
}
|
||||
|
||||
public function test_invalid_order()
|
||||
{
|
||||
$this->expectException(InvalidArgumentException::class);
|
||||
new WC_Retailcrm_Customer_Switcher_Result(new WC_Customer(), new stdClass());
|
||||
}
|
||||
|
||||
public function test_valid()
|
||||
{
|
||||
$result = new WC_Retailcrm_Customer_Switcher_Result(new WC_Customer(), new WC_Order());
|
||||
$this->assertInstanceOf(WC_Customer::class, $result->getWcCustomer());
|
||||
$this->assertInstanceOf(WC_Order::class, $result->getWcOrder());
|
||||
}
|
||||
|
||||
public function test_valid_no_customer()
|
||||
{
|
||||
$result = new WC_Retailcrm_Customer_Switcher_Result(null, new WC_Order());
|
||||
$this->assertEmpty($result->getWcCustomer())
|
||||
; $this->assertInstanceOf(WC_Order::class, $result->getWcOrder());
|
||||
}
|
||||
}
|
|
@ -45,7 +45,6 @@ class WC_Retailcrm_Base_Test extends WC_Retailcrm_Test_Case_Helper
|
|||
$this->assertInternalType('array', $this->unit->form_fields);
|
||||
$this->assertArrayHasKey('api_url', $this->unit->form_fields);
|
||||
$this->assertArrayHasKey('api_key', $this->unit->form_fields);
|
||||
$this->assertArrayHasKey('api_version', $this->unit->form_fields);
|
||||
|
||||
foreach (get_post_statuses() as $key => $status) {
|
||||
$this->assertArrayHasKey('p_' . $key, $this->unit->form_fields);
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -28,12 +28,11 @@ class WC_Retailcrm_Orders_Test extends WC_Retailcrm_Test_Case_Helper
|
|||
|
||||
/**
|
||||
* @param $retailcrm
|
||||
* @param $apiVersion
|
||||
* @dataProvider dataProviderRetailcrm
|
||||
*/
|
||||
public function test_order_upload($retailcrm, $apiVersion)
|
||||
public function test_order_upload($retailcrm)
|
||||
{
|
||||
$this->options = $this->setOptions($apiVersion);
|
||||
$this->options = $this->setOptions();
|
||||
$retailcrm_orders = $this->getRetailcrmOrders($retailcrm);
|
||||
$upload_orders = $retailcrm_orders->ordersUpload();
|
||||
|
||||
|
@ -46,10 +45,9 @@ class WC_Retailcrm_Orders_Test extends WC_Retailcrm_Test_Case_Helper
|
|||
|
||||
/**
|
||||
* @param $retailcrm
|
||||
* @param $apiVersion
|
||||
* @dataProvider dataProviderRetailcrm
|
||||
*/
|
||||
public function test_order_create($retailcrm, $apiVersion)
|
||||
public function test_order_create($retailcrm)
|
||||
{
|
||||
if ($retailcrm) {
|
||||
$responseMock = $this->getMockBuilder('\WC_Retailcrm_Response_Helper')
|
||||
|
@ -82,7 +80,7 @@ class WC_Retailcrm_Orders_Test extends WC_Retailcrm_Test_Case_Helper
|
|||
}
|
||||
|
||||
$this->createTestOrder();
|
||||
$this->options = $this->setOptions($apiVersion);
|
||||
$this->options = $this->setOptions();
|
||||
$retailcrm_orders = $this->getRetailcrmOrders($retailcrm);
|
||||
$order = $retailcrm_orders->orderCreate($this->order->get_id());
|
||||
$order_send = $retailcrm_orders->getOrder();
|
||||
|
@ -127,15 +125,15 @@ class WC_Retailcrm_Orders_Test extends WC_Retailcrm_Test_Case_Helper
|
|||
/**
|
||||
* @param $isSuccessful
|
||||
* @param $retailcrm
|
||||
* @param $apiVersion
|
||||
|
||||
* @dataProvider dataProviderUpdateOrder
|
||||
*/
|
||||
public function test_update_order($isSuccessful, $retailcrm, $apiVersion)
|
||||
public function test_update_order($isSuccessful, $retailcrm)
|
||||
{
|
||||
$this->createTestOrder();
|
||||
$this->options = $this->setOptions($apiVersion);
|
||||
$this->options = $this->setOptions();
|
||||
|
||||
if ($retailcrm && $apiVersion == 'v5') {
|
||||
if ($retailcrm) {
|
||||
$responseMock = $this->getMockBuilder('\WC_Retailcrm_Response_Helper')
|
||||
->disableOriginalConstructor()
|
||||
->setMethods(array(
|
||||
|
@ -222,23 +220,19 @@ class WC_Retailcrm_Orders_Test extends WC_Retailcrm_Test_Case_Helper
|
|||
return array(
|
||||
array(
|
||||
'is_successful' => true,
|
||||
'retailcrm' => $this->apiMock,
|
||||
'api_version' => 'v5'
|
||||
'retailcrm' => $this->apiMock
|
||||
),
|
||||
array(
|
||||
'is_successful' => true,
|
||||
'retailcrm' => false,
|
||||
'api_version' => 'v5'
|
||||
'retailcrm' => false
|
||||
),
|
||||
array(
|
||||
'is_successful' => false,
|
||||
'retailcrm' => false,
|
||||
'api_version' => 'v5'
|
||||
'retailcrm' => false
|
||||
),
|
||||
array(
|
||||
'is_successful' => false,
|
||||
'retailcrm' => $this->apiMock,
|
||||
'api_version' => 'v5'
|
||||
'retailcrm' => $this->apiMock
|
||||
)
|
||||
);
|
||||
}
|
||||
|
@ -249,12 +243,10 @@ class WC_Retailcrm_Orders_Test extends WC_Retailcrm_Test_Case_Helper
|
|||
|
||||
return array(
|
||||
array(
|
||||
'retailcrm' => $this->apiMock,
|
||||
'api_version' => 'v5'
|
||||
'retailcrm' => $this->apiMock
|
||||
),
|
||||
array(
|
||||
'retailcrm' => false,
|
||||
'api_version' => 'v5'
|
||||
'retailcrm' => false
|
||||
)
|
||||
);
|
||||
}
|
||||
|
|
|
@ -26,14 +26,13 @@ class WC_Retailcrm_Plugin_Test extends WC_Retailcrm_Test_Case_Helper
|
|||
/**
|
||||
* @param $retailcrm
|
||||
* @param $response
|
||||
* @param $apiVersion
|
||||
*
|
||||
* @dataProvider dataProviderIntegrationModule
|
||||
*/
|
||||
public function test_integration_module($retailcrm,$response, $apiVersion)
|
||||
public function test_integration_module($retailcrm, $response)
|
||||
{
|
||||
$client_id = uniqid();
|
||||
$result = WC_Retailcrm_Plugin::integration_module($retailcrm, $client_id, $apiVersion);
|
||||
$result = WC_Retailcrm_Plugin::integration_module($retailcrm, $client_id);
|
||||
|
||||
if (!$retailcrm || $response['success'] == false) {
|
||||
$this->assertEquals(false, $result);
|
||||
|
@ -58,22 +57,12 @@ class WC_Retailcrm_Plugin_Test extends WC_Retailcrm_Test_Case_Helper
|
|||
private function getResponseData()
|
||||
{
|
||||
return array(
|
||||
'v4' => array(
|
||||
"true" => array(
|
||||
"success" => true
|
||||
),
|
||||
"false" => array(
|
||||
"success" => false
|
||||
)
|
||||
"true" => array(
|
||||
"success" => true
|
||||
),
|
||||
'v5' => array(
|
||||
"true" => array(
|
||||
"success" => true
|
||||
),
|
||||
"false" => array(
|
||||
"success" => false,
|
||||
"errorMsg" => "Forbidden"
|
||||
)
|
||||
"false" => array(
|
||||
"success" => false,
|
||||
"errorMsg" => "Forbidden"
|
||||
)
|
||||
);
|
||||
}
|
||||
|
@ -84,61 +73,25 @@ class WC_Retailcrm_Plugin_Test extends WC_Retailcrm_Test_Case_Helper
|
|||
|
||||
return array(
|
||||
array(
|
||||
'retailcrm' => $this->getApiMock(
|
||||
'v4',
|
||||
$this->getResponseData['v4']['true']
|
||||
),
|
||||
'response' => $this->getResponseData['v4']['true'],
|
||||
'apiVersion' => 'v4'
|
||||
'retailcrm' => $this->getApiMock($this->getResponseData()['true']),
|
||||
'response' => $this->getResponseData()['true']
|
||||
),
|
||||
array(
|
||||
'retailcrm' => false,
|
||||
'response' => $this->getResponseData['v4']['true'],
|
||||
'apiVersion' => 'v4'
|
||||
'response' => $this->getResponseData()['true']
|
||||
),
|
||||
array(
|
||||
'retailcrm' => $this->getApiMock(
|
||||
'v4',
|
||||
$this->getResponseData['v4']['false']
|
||||
),
|
||||
'response' => $this->getResponseData['v4']['false'],
|
||||
'apiVersion' => 'v4'
|
||||
'retailcrm' => $this->getApiMock($this->getResponseData()['false']),
|
||||
'response' => $this->getResponseData()['false']
|
||||
),
|
||||
array(
|
||||
'retailcrm' => false,
|
||||
'response' => $this->getResponseData['v4']['false'],
|
||||
'apiVersion' => 'v4'
|
||||
),
|
||||
array(
|
||||
'retailcrm' => $this->getApiMock(
|
||||
'v5',
|
||||
$this->getResponseData['v5']['true']
|
||||
),
|
||||
'response' => $this->getResponseData['v5']['true'],
|
||||
'apiVersion' => 'v5'
|
||||
),
|
||||
array(
|
||||
'retailcrm' => false,
|
||||
'response' => $this->getResponseData['v5']['true'],
|
||||
'apiVersion' => 'v5'
|
||||
),
|
||||
array(
|
||||
'retailcrm' => $this->getApiMock(
|
||||
'v5',
|
||||
$this->getResponseData['v5']['false']
|
||||
),
|
||||
'response' => $this->getResponseData['v5']['false'],
|
||||
'apiVersion' => 'v5'
|
||||
),
|
||||
array(
|
||||
'retailcrm' => false,
|
||||
'response' => $this->getResponseData['v5']['false'],
|
||||
'apiVersion' => 'v5'
|
||||
'response' => $this->getResponseData()['false']
|
||||
)
|
||||
);
|
||||
}
|
||||
|
||||
private function getApiMock($apiVersion, $response)
|
||||
private function getApiMock($response)
|
||||
{
|
||||
$responseMock = $this->getMockBuilder('\WC_Retailcrm_Response_Helper')
|
||||
->disableOriginalConstructor()
|
||||
|
@ -159,29 +112,16 @@ class WC_Retailcrm_Plugin_Test extends WC_Retailcrm_Test_Case_Helper
|
|||
|
||||
$responseMock->setResponse($response);
|
||||
|
||||
if ($apiVersion == 'v4') {
|
||||
$apiMock = $this->getMockBuilder('\WC_Retailcrm_Proxy')
|
||||
->disableOriginalConstructor()
|
||||
->setMethods(array(
|
||||
'marketplaceSettingsEdit'
|
||||
))
|
||||
->getMock();
|
||||
|
||||
$apiMock->expects($this->any())
|
||||
->method('marketplaceSettingsEdit')
|
||||
->willReturn($responseMock);
|
||||
} else {
|
||||
$apiMock = $this->getMockBuilder('\WC_Retailcrm_Proxy')
|
||||
$apiMock = $this->getMockBuilder('\WC_Retailcrm_Proxy')
|
||||
->disableOriginalConstructor()
|
||||
->setMethods(array(
|
||||
'integrationModulesEdit'
|
||||
))
|
||||
->getMock();
|
||||
|
||||
$apiMock->expects($this->any())
|
||||
->method('integrationModulesEdit')
|
||||
->willReturn($responseMock);
|
||||
}
|
||||
$apiMock->expects($this->any())
|
||||
->method('integrationModulesEdit')
|
||||
->willReturn($responseMock);
|
||||
|
||||
return $apiMock;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue