mirror of
https://github.com/retailcrm/opencart-module.git
synced 2025-04-04 05:43:37 +03:00
fix tests
This commit is contained in:
parent
8428f19421
commit
07603934ba
2 changed files with 29 additions and 3 deletions
|
@ -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');
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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');
|
||||
|
|
Loading…
Add table
Reference in a new issue