mirror of
https://github.com/retailcrm/opencart-module.git
synced 2024-11-22 13:16:07 +03:00
refactoring and tests
This commit is contained in:
parent
caf55f67ad
commit
434ec7b431
@ -37,9 +37,7 @@ class ModelExtensionRetailcrmOrder extends Model {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (!isset($order['customer']['externalId']) && !isset($order['customer']['id'])) {
|
if (!isset($order['customer']['externalId']) && !isset($order['customer']['id'])) {
|
||||||
$new_customer = $this->createCustomer($data);
|
$res = $this->createCustomer($data, $retailcrmApiClient);
|
||||||
$res = $retailcrmApiClient->customersCreate($new_customer);
|
|
||||||
|
|
||||||
if ($res->isSuccessful() && isset($res['id'])) {
|
if ($res->isSuccessful() && isset($res['id'])) {
|
||||||
$order['customer']['id'] = $res['id'];
|
$order['customer']['id'] = $res['id'];
|
||||||
}
|
}
|
||||||
@ -49,8 +47,12 @@ class ModelExtensionRetailcrmOrder extends Model {
|
|||||||
$order = self::filterRecursive($order);
|
$order = self::filterRecursive($order);
|
||||||
$response = $retailcrmApiClient->ordersCreate($order);
|
$response = $retailcrmApiClient->ordersCreate($order);
|
||||||
if (isset($response['errors']['customer.externalId'])) {
|
if (isset($response['errors']['customer.externalId'])) {
|
||||||
$order['customer'] = $this->createCustomer($data);
|
$res = $this->createCustomer($data, $retailcrmApiClient);
|
||||||
$response = $retailcrmApiClient->ordersCreate($order);
|
if ($res->isSuccessful() && isset($res['id'])) {
|
||||||
|
$order['customer']['id'] = $res['id'];
|
||||||
|
}
|
||||||
|
|
||||||
|
$retailcrmApiClient->ordersCreate($order);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
$order_payment = reset($order['payments']);
|
$order_payment = reset($order['payments']);
|
||||||
@ -58,7 +60,11 @@ class ModelExtensionRetailcrmOrder extends Model {
|
|||||||
$order = self::filterRecursive($order);
|
$order = self::filterRecursive($order);
|
||||||
$response = $retailcrmApiClient->ordersEdit($order);
|
$response = $retailcrmApiClient->ordersEdit($order);
|
||||||
if (isset($response['errors']['customer.externalId'])) {
|
if (isset($response['errors']['customer.externalId'])) {
|
||||||
$order['customer'] = $this->createCustomer($data);
|
$res = $this->createCustomer($data, $retailcrmApiClient);
|
||||||
|
if ($res->isSuccessful() && isset($res['id'])) {
|
||||||
|
$order['customer']['id'] = $res['id'];
|
||||||
|
}
|
||||||
|
|
||||||
$response = $retailcrmApiClient->ordersEdit($order);
|
$response = $retailcrmApiClient->ordersEdit($order);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -413,10 +419,11 @@ class ModelExtensionRetailcrmOrder extends Model {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @param array $data
|
* @param array $data
|
||||||
|
* @param \RetailcrmProxy $retailcrmApiClient
|
||||||
*
|
*
|
||||||
* @return array $customer
|
* @return ApiResponse
|
||||||
*/
|
*/
|
||||||
private function createCustomer($data)
|
private function createCustomer($data, $retailcrmApiClient)
|
||||||
{
|
{
|
||||||
$customer = array(
|
$customer = array(
|
||||||
'firstName' => $data['firstname'],
|
'firstName' => $data['firstname'],
|
||||||
@ -440,6 +447,6 @@ class ModelExtensionRetailcrmOrder extends Model {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
return $customer;
|
return $retailcrmApiClient->customersCreate($customer);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -71,6 +71,32 @@ class ModelRetailcrmOrderCatalogTest extends TestCase
|
|||||||
}
|
}
|
||||||
|
|
||||||
$orderProcess = $this->orderModel->processOrder($order);
|
$orderProcess = $this->orderModel->processOrder($order);
|
||||||
|
$successResponse = new \RetailcrmApiResponse(
|
||||||
|
200,
|
||||||
|
json_encode(
|
||||||
|
array(
|
||||||
|
'success' => true,
|
||||||
|
'id' => 1,
|
||||||
|
)
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
$orderCreateErrorResponse = new \RetailcrmApiResponse(
|
||||||
|
400,
|
||||||
|
json_encode(
|
||||||
|
array(
|
||||||
|
'errors' => array (
|
||||||
|
'customer.externalId' => "Customer with externalId=1 not found.",
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
$this->apiClientMock->expects($this->any())->method('customersCreate')->willReturn($successResponse);
|
||||||
|
$this->apiClientMock->expects($this->any())->method('ordersCreate')->will(
|
||||||
|
$this->onConsecutiveCalls($orderCreateErrorResponse, $successResponse)
|
||||||
|
);
|
||||||
|
|
||||||
$orderSend = $this->orderModel->sendToCrm($orderProcess, $this->apiClientMock, $order);
|
$orderSend = $this->orderModel->sendToCrm($orderProcess, $this->apiClientMock, $order);
|
||||||
|
|
||||||
$this->assertArrayHasKey('status', $orderSend);
|
$this->assertArrayHasKey('status', $orderSend);
|
||||||
@ -103,6 +129,7 @@ class ModelRetailcrmOrderCatalogTest extends TestCase
|
|||||||
$this->assertArrayHasKey('customer', $orderSend);
|
$this->assertArrayHasKey('customer', $orderSend);
|
||||||
$this->assertArrayHasKey('externalId', $orderSend['customer']);
|
$this->assertArrayHasKey('externalId', $orderSend['customer']);
|
||||||
$this->assertEquals(self::CUSTOMER_ID, $orderSend['customer']['externalId']);
|
$this->assertEquals(self::CUSTOMER_ID, $orderSend['customer']['externalId']);
|
||||||
|
$this->assertEquals(1, $orderSend['customer']['id']);
|
||||||
$this->assertArrayHasKey('payments', $orderSend);
|
$this->assertArrayHasKey('payments', $orderSend);
|
||||||
$this->assertEquals('cod', $orderSend['payments'][0]['type']);
|
$this->assertEquals('cod', $orderSend['payments'][0]['type']);
|
||||||
$this->assertNotEmpty($orderSend['payments']);
|
$this->assertNotEmpty($orderSend['payments']);
|
||||||
@ -145,9 +172,23 @@ class ModelRetailcrmOrderCatalogTest extends TestCase
|
|||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
$this->apiClientMock->expects($this->any())->method('ordersEdit')->willReturn($orderEditResponse);
|
$orderEditErrorResponse = new \RetailcrmApiResponse(
|
||||||
|
400,
|
||||||
|
json_encode(
|
||||||
|
array(
|
||||||
|
'errors' => array (
|
||||||
|
'customer.externalId' => "Customer with externalId=1 not found.",
|
||||||
|
)
|
||||||
|
)
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
$this->apiClientMock->expects($this->any())->method('ordersGet')->willReturn($ordersGetResponse);
|
$this->apiClientMock->expects($this->any())->method('ordersGet')->willReturn($ordersGetResponse);
|
||||||
$this->apiClientMock->expects($this->any())->method('customersCreate')->willReturn($orderEditResponse);
|
$this->apiClientMock->expects($this->any())->method('customersCreate')->willReturn($orderEditResponse);
|
||||||
|
$this->apiClientMock->expects($this->any())->method('ordersEdit')->will(
|
||||||
|
$this->onConsecutiveCalls($orderEditErrorResponse, $orderEditResponse)
|
||||||
|
);
|
||||||
|
|
||||||
$orderProcess = $this->orderModel->processOrder($order);
|
$orderProcess = $this->orderModel->processOrder($order);
|
||||||
$orderSend = $this->orderModel->sendToCrm($orderProcess, $this->apiClientMock, $order, false);
|
$orderSend = $this->orderModel->sendToCrm($orderProcess, $this->apiClientMock, $order, false);
|
||||||
|
|
||||||
@ -171,6 +212,7 @@ class ModelRetailcrmOrderCatalogTest extends TestCase
|
|||||||
$this->assertEquals('Rostov-na-Donu', $orderSend['delivery']['address']['region']);
|
$this->assertEquals('Rostov-na-Donu', $orderSend['delivery']['address']['region']);
|
||||||
$this->assertEquals('111111', $orderSend['delivery']['address']['index']);
|
$this->assertEquals('111111', $orderSend['delivery']['address']['index']);
|
||||||
$this->assertArrayHasKey('items', $orderSend);
|
$this->assertArrayHasKey('items', $orderSend);
|
||||||
|
$this->assertEquals(1, $orderSend['customer']['id']);
|
||||||
|
|
||||||
foreach($orderSend['items'] as $item) {
|
foreach($orderSend['items'] as $item) {
|
||||||
$this->assertArrayHasKey('priceType', $item);
|
$this->assertArrayHasKey('priceType', $item);
|
||||||
@ -209,12 +251,12 @@ class ModelRetailcrmOrderCatalogTest extends TestCase
|
|||||||
array(
|
array(
|
||||||
'success' => true,
|
'success' => true,
|
||||||
"pagination"=> [
|
"pagination"=> [
|
||||||
"limit"=>20,
|
"limit"=>20,
|
||||||
"totalCount"=> 0,
|
"totalCount"=> 0,
|
||||||
"currentPage"=> 1,
|
"currentPage"=> 1,
|
||||||
"totalPageCount"=> 0
|
"totalPageCount"=> 0
|
||||||
],
|
],
|
||||||
"customers"=> []
|
"customers"=> []
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
Loading…
Reference in New Issue
Block a user