1
0
Fork 0
mirror of synced 2025-04-03 22:03:34 +03:00

Adding and testing new cart API methods

This commit is contained in:
Ivan Chaplygin 2023-02-27 10:45:25 +03:00
parent d929a1fd5f
commit 74145e3ea0
2 changed files with 152 additions and 0 deletions

View file

@ -70,6 +70,90 @@ class WC_Retailcrm_Client_V5
return $this->unversionedClient->makeRequest('/credentials', WC_Retailcrm_Request::METHOD_GET);
}
/**
* Clearing current customer bucket
* @param array $cart
* @param string $site
*
* @return WC_Retailcrm_Response
*
* @throws InvalidArgumentException
* @throws WC_Retailcrm_Exception_Curl
* @throws WC_Retailcrm_Exception_Json
*/
public function cartClear(array $cart, string $site)
{
if (empty($site)) {
throw new InvalidArgumentException(
'Site must be set'
);
}
return $this->client->makeRequest(
sprintf('/customer-interaction/%s/cart/clear', $site),
WC_Retailcrm_Request::METHOD_POST,
['cart' => json_encode($cart)]
);
}
/**
* Create or update cart
*
* @param array $cart
* @param string $site
*
* @return WC_Retailcrm_Response
*
* @throws InvalidArgumentException
* @throws WC_Retailcrm_Exception_Curl
* @throws WC_Retailcrm_Exception_Json
*/
public function cartSet(array $cart, string $site)
{
if (empty($site)) {
throw new InvalidArgumentException(
'Site must be set'
);
}
return $this->client->makeRequest(
sprintf('/customer-interaction/%s/cart/set', $site),
WC_Retailcrm_Request::METHOD_POST,
['cart' => json_encode($cart)]
);
}
/**
* Get cart by id or externalId
*
* @param $customerId
* @param string $site
* @param $by (default: 'externalId')
*
* @return WC_Retailcrm_Response
*
* @throws InvalidArgumentException
* @throws WC_Retailcrm_Exception_Curl
* @throws WC_Retailcrm_Exception_Json
*/
public function cartGet($customerId, string $site, $by = 'externalId')
{
$this->checkIdParameter($by);
if (empty($site)) {
throw new InvalidArgumentException(
'Site must be set'
);
}
return $this->client->makeRequest(
sprintf('/customer-interaction/%s/cart/%s', $site, $customerId),
WC_Retailcrm_Request::METHOD_GET,
['by' => $by]
);
}
/**
* Returns filtered corporate customers list
*

View file

@ -0,0 +1,68 @@
<?php
use datasets\DataBaseRetailCrm;
/**
* PHP version 7.0
*
* Class WC_Retailcrm_client_v5_Test - Testing WC_Retailcrm_client_v5
*
* @category Integration
* @author RetailCRM <integration@retailcrm.ru>
* @license http://retailcrm.ru Proprietary
* @link http://retailcrm.ru
* @see http://help.retailcrm.ru
*/
class WC_Retailcrm_client_V5 extends WC_Retailcrm_Test_Case_Helper
{
protected $apiClientMock;
protected $responseMock;
public function setUp()
{
$this->responseMock = $this->getMockBuilder('\WC_Retailcrm_Response_Helper')
->disableOriginalConstructor()
->setMethods([
'isSuccessful',
'offsetExists'
])
->getMock();
$this->responseMock->setResponse(['id' => 1]);
$this->apiClientMock = $this->getMockBuilder('\WC_Retailcrm_Client_V5')
->disableOriginalConstructor()
->setMethods([
'cartGet',
'cartSet',
'cartClear'
])
->getMock();
$this->setMockResponse($this->responseMock, 'isSuccessful', true);
$this->setMockResponse($this->responseMock, 'offsetExists', true);
$this->setMockResponse($this->apiClientMock, 'cartGet',$this->responseMock);
$this->setMockResponse($this->apiClientMock, 'cartSet', $this->responseMock);
$this->setMockResponse($this->apiClientMock, 'cartClear', $this->responseMock);
}
public function testSetCart()
{
$response = $this->apiClientMock->cartSet(array(), 'test-site');
$this->assertEquals(1,$response->__get('id'));
}
public function testGetCart()
{
$response = $this->apiClientMock->cartGet(1, 'test-site');
$this->assertEquals(1, $response->__get('id'));
}
public function testClearCart()
{
$response = $this->apiClientMock->cartClear(array(), 'test-site');
$this->assertEquals(1, $response->__get('id'));
}
}