fix tests

This commit is contained in:
Ruslan Efanov 2021-07-06 16:46:08 +03:00
parent 8428f19421
commit 07603934ba
2 changed files with 29 additions and 3 deletions

View file

@ -172,10 +172,15 @@ class OrderManager {
}
}
private function checkExistCustomer(string $customerExternalId): bool
/**
* @param $customerExternalId
*
* @return bool
*/
private function checkExistCustomer($customerExternalId)
{
$result = $this->api->customersGet($customerExternalId);
return $result && $result->isSuccessful() && $result->offsetExists('customers');
return $result && $result->isSuccessful() && $result->offsetExists('customer');
}
}

View file

@ -10,11 +10,32 @@ class OrderManagerTest extends TestCase {
public function testCreateOrderWithCustomer() {
$proxy = $this->getMockBuilder(\RetailcrmProxy::class)
->disableOriginalConstructor()
->setMethods(['ordersCreate'])
->setMethods(['ordersCreate','customersGet'])
->getMock();
$proxy->expects($this->once())->method('ordersCreate');
$proxy->expects($this->once())
->method('customersGet')
->willReturn(new \RetailcrmApiResponse(
200,
json_encode(
[
'success' => true,
'pagination' => [
'limit'=> 20,
'totalCount' => 0,
'currentPage' => 1,
'totalPageCount' => 0
],
'customer' => [
'id' => 1,
'externalId' => 1
]
]
)
));
$order_manager = $this->getOrderManager($proxy);
$orderCheckoutModel = $this->loadModel('checkout/order');