prestashop-module/tests/RetailcrmOrderBuilderTest.php

401 lines
13 KiB
PHP
Raw Permalink Normal View History

2020-11-11 10:31:20 +03:00
<?php
/**
* MIT License
*
* Copyright (c) 2021 DIGITAL RETAIL TECHNOLOGIES SL
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
* @author DIGITAL RETAIL TECHNOLOGIES SL <mail@simlachat.com>
* @copyright 2021 DIGITAL RETAIL TECHNOLOGIES SL
* @license https://opensource.org/licenses/MIT The MIT License
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/
2020-11-11 10:31:20 +03:00
class RetailcrmOrderBuilderTest extends RetailcrmTestCase
{
2022-03-20 12:25:55 +03:00
/**
* @var RetailcrmProxy
*/
private $apiMock;
2021-11-03 16:19:39 +07:00
protected function setUp()
2020-11-11 10:31:20 +03:00
{
parent::setUp();
2022-03-20 12:25:55 +03:00
$this->apiMock = $this->getApiMock(
[
'method',
'credentials',
'customersCorporateAddresses',
'customersCorporateAddressesEdit',
'customersCorporateAddressesCreate',
]
);
2020-11-11 10:31:20 +03:00
}
public function testInitialPriceZero()
{
$item = $this->getDataItemInitialPriceZero();
$resultItem = RetailcrmTools::clearArray($item);
$this->assertTrue(isset($resultItem['initialPrice']));
$this->assertEquals(0, $resultItem['initialPrice']);
}
2022-03-20 12:25:55 +03:00
/**
* @dataProvider buildCrmCustomerAddresses
*/
public function testBuildCrmCustomer($address, $isCorp)
{
$customer = new Customer(1);
$crmCustomer = RetailcrmOrderBuilder::buildCrmCustomer($customer, $address);
$this->assertEquals($isCorp, $crmCustomer['isContact']);
$this->assertNotEmpty($crmCustomer['email']);
}
/**
* @dataProvider appendAdditionalAddressToCorporateAddresses
*/
public function testAppendAdditionalAddressToCorporate($address, $method)
{
$this->apiClientMock->expects($this->any())
->method('credentials')
->willReturn(
new RetailcrmApiResponse(
'200',
json_encode(
[
'success' => true,
]
)
)
)
;
$this->apiClientMock->expects($this->once())
->method('customersCorporateAddresses')
->willReturn(
new RetailcrmApiResponse(
'200',
json_encode(
[
'pagination' => [
'totalPageCount' => 1,
'currentPage' => 1,
],
'addresses' => $this->getCorpAddresses(),
]
)
)
)
;
$this->apiClientMock->expects($this->once())
->method($method)
->willReturn(
new RetailcrmApiResponse(
'200',
json_encode(
[
'pagination' => [
'totalPageCount' => 1,
'currentPage' => 1,
],
'addresses' => $this->getCorpAddresses(),
]
)
)
)
;
$orderBuilder = new RetailcrmOrderBuilder();
$orderBuilder->setApi($this->apiMock);
$class = new ReflectionClass($orderBuilder);
$property = $class->getProperty('invoiceAddress');
$property->setAccessible(true);
$property->setValue($orderBuilder, $this->convertAddress($address));
$method = $class->getMethod('appendAdditionalAddressToCorporate');
$method->setAccessible(true);
$method->invoke($orderBuilder, 0);
}
public function testBuildCrmOrder()
{
$order = new Order(1);
$order->reference = 'test_n';
$order->current_state = 0;
Configuration::updateValue(RetailCRM::DELIVERY, '{"1":"test_delivery"}');
Configuration::updateValue(RetailCRM::STATUS, '{"1":"test_status"}');
Configuration::updateValue(RetailCRM::ENABLE_ORDER_NUMBER_SENDING, false);
$crmOrder = RetailcrmOrderBuilder::buildCrmOrder($order);
$this->assertArrayNotHasKey('number', $crmOrder);
Configuration::updateValue(RetailCRM::ENABLE_ORDER_NUMBER_SENDING, true);
$crmOrder = RetailcrmOrderBuilder::buildCrmOrder($order);
$this->assertEquals($order->reference, $crmOrder['number']);
}
2022-03-20 12:25:55 +03:00
private function convertAddress($crmAddress)
{
$address = new Address();
$address->address1 = $crmAddress['text'];
$address->alias = $crmAddress['name'];
$address->city = $crmAddress['city'];
$address->id_country = Country::getByIso($crmAddress['countryIso']);
$address->country = Country::getNameById((int) Configuration::get('PS_LANG_DEFAULT'), $address->id_country);
$address->postcode = $crmAddress['index'];
$address->company = $crmAddress['name'];
$address->id = isset($crmAddress['externalId']) ? $crmAddress['externalId'] : null;
return $address;
}
public function appendAdditionalAddressToCorporateAddresses()
{
return [
[
$this->getCorpAddresses()[0],
'customersCorporateAddressesEdit',
],
[
$this->getCorpAddresses()[1],
'customersCorporateAddressesEdit',
],
[
[
'id' => '3',
'externalId' => '30',
'index' => '423120',
'city' => 'Kazan',
'countryIso' => 'RU',
'text' => 'ul. Fuchika, d. 129',
'notes' => 'Building under the big tree',
'region' => 'Republic of Tatarstan',
'company' => 'MyCompany',
'name' => 'Home',
],
'customersCorporateAddressesCreate',
],
];
}
2020-11-11 10:31:20 +03:00
/**
* @return array
*/
private function getDataItemInitialPriceZero()
{
2021-11-03 16:19:39 +07:00
return [
2020-11-11 10:31:20 +03:00
'id' => 160,
'initialPrice' => 0,
'createdAt' => '2018-01-01 00:00:00',
'quantity' => 1,
'status' => 'new',
2021-11-03 16:19:39 +07:00
'offer' => [
2020-11-11 10:31:20 +03:00
'id' => 1,
'externalId' => 1,
'xmlId' => '1',
'name' => 'Test name',
2021-11-03 16:19:39 +07:00
'vatRate' => 'none',
],
'properties' => [],
'purchasePrice' => 50,
];
2020-11-11 10:31:20 +03:00
}
2022-03-20 12:25:55 +03:00
public function buildCrmCustomerAddresses()
{
return [
[
'Address' => [
'company' => 'RetailCRM',
],
'Is corporate address?' => true,
],
[
'Address' => [],
'Is corporate address?' => false,
],
];
}
2020-11-11 10:31:20 +03:00
/**
* @return array
*/
private function getDataOrder()
{
2021-11-03 16:19:39 +07:00
$order = [
2020-11-11 10:31:20 +03:00
'slug' => 1,
'id' => 1,
'number' => '1C',
'orderType' => 'eshop-individual',
'orderMethod' => 'phone',
'countryIso' => 'RU',
'createdAt' => '2018-01-01 00:00:00',
'statusUpdatedAt' => '2018-01-01 00:00:00',
'summ' => 100,
'totalSumm' => 100,
'prepaySum' => 0,
'purchaseSumm' => 50,
'markDatetime' => '2018-01-01 00:00:00',
'firstName' => 'Test',
'lastName' => 'Test',
'phone' => '80000000000',
'call' => false,
'expired' => false,
2021-11-03 16:19:39 +07:00
'customer' => [
'segments' => [],
2020-11-11 10:31:20 +03:00
'id' => 1,
'externalId' => '777',
'type' => 'customer',
'firstName' => 'Test',
'lastName' => 'Test',
'email' => 'email@test.ru',
2021-11-03 16:19:39 +07:00
'phones' => [
[
'number' => '111111111111111',
],
[
'number' => '+7111111111',
],
],
'address' => [
2020-11-11 10:31:20 +03:00
'id_customer' => 2222,
'index' => '111111',
'countryIso' => 'RU',
'region' => 'Test region',
'city' => 'Test',
2021-11-03 16:19:39 +07:00
'text' => 'Test text address',
],
2020-11-11 10:31:20 +03:00
'createdAt' => '2018-01-01 00:00:00',
'managerId' => 1,
'vip' => false,
'bad' => false,
'site' => 'test-com',
2021-11-03 16:19:39 +07:00
'contragent' => [
'contragentType' => 'individual',
],
2020-11-11 10:31:20 +03:00
'personalDiscount' => 0,
'cumulativeDiscount' => 0,
'marginSumm' => 58654,
'totalSumm' => 61549,
'averageSumm' => 15387.25,
'ordersCount' => 4,
'costSumm' => 101,
2021-11-03 16:19:39 +07:00
'customFields' => [
'custom' => 'test',
],
],
'contragent' => [],
'delivery' => [
2020-11-11 10:31:20 +03:00
'code' => 'delivery',
'cost' => 100,
'netCost' => 0,
2021-11-03 16:19:39 +07:00
'address' => [
2020-11-11 10:31:20 +03:00
'id_customer' => 2222,
'index' => '111111',
'countryIso' => 'RU',
'region' => 'Test region',
'city' => 'Test',
2021-11-03 16:19:39 +07:00
'text' => 'Test text address',
],
],
2020-11-11 10:31:20 +03:00
'site' => 'test-com',
'status' => 'new',
2021-11-03 16:19:39 +07:00
'items' => [
[
2020-11-11 10:31:20 +03:00
'id' => 160,
'initialPrice' => 100,
'createdAt' => '2018-01-01 00:00:00',
'quantity' => 1,
'status' => 'new',
2021-11-03 16:19:39 +07:00
'offer' => [
2020-11-11 10:31:20 +03:00
'id' => 1,
'externalId' => 1,
'xmlId' => '1',
'name' => 'Test name',
2021-11-03 16:19:39 +07:00
'vatRate' => 'none',
],
'properties' => [],
'purchasePrice' => 50,
],
],
2020-11-11 10:31:20 +03:00
'fromApi' => false,
'length' => 0,
'width' => 0,
'height' => 0,
'shipmentStore' => 'main',
'shipped' => false,
2021-11-03 16:19:39 +07:00
'customFields' => [],
'uploadedToExternalStoreSystem' => false,
];
2020-11-11 10:31:20 +03:00
2021-11-03 16:19:39 +07:00
$order['payments'][] = [
2020-11-11 10:31:20 +03:00
'id' => 97,
'type' => 'cheque',
2021-11-03 16:19:39 +07:00
'amount' => 210,
];
2020-11-11 10:31:20 +03:00
return $order;
}
2022-03-20 12:25:55 +03:00
private function getCorpAddresses()
{
return [
[
'id' => '1',
'externalId' => '10',
'index' => '452320',
'city' => 'Dyurtyuli',
'countryIso' => 'RU',
'text' => 'ul. Matrosova, d. 8',
'notes' => 'from 12:00 to 15:00',
'region' => 'Republic of Bashkortostan',
'company' => 'MyCompany',
'name' => 'Office',
],
[
'id' => '2',
'externalId' => '90',
'index' => '760021',
'city' => 'Cali',
'countryIso' => 'CO',
'text' => 'Av 6 A NORTE No. 28 N-10, C.P 76001',
'notes' => 'Red door next to the road',
'region' => 'Cali',
'company' => 'MyCompany',
'name' => 'Warehouse',
],
];
}
2020-11-11 10:31:20 +03:00
}