prestashop-module/tests/RetailcrmCustomerBuilderTest.php

166 lines
5.3 KiB
PHP
Raw Normal View History

2020-07-08 16:09:45 +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-07-08 16:09:45 +03:00
class RetailcrmCustomerBuilderTest extends RetailcrmTestCase
{
protected $customer;
2021-11-03 16:19:39 +07:00
protected function setUp()
2020-07-08 16:09:45 +03:00
{
parent::setUp();
}
public function testBuild()
{
$this->customer = new RetailcrmCustomerBuilder();
$this->customer
->setDataCrm($this->getDataCrm())
2021-11-03 16:19:39 +07:00
->build()
;
2020-07-08 16:09:45 +03:00
$result = new RetailcrmCustomerBuilderResult(null, null);
$this->assertInstanceOf(get_class($result), $this->customer->getData());
}
public function testSetCustomer()
{
$this->customer = new RetailcrmCustomerBuilder();
$this->customer
->setCustomer(new Customer(9719))
2021-11-03 16:19:39 +07:00
->build()
;
2020-07-08 16:09:45 +03:00
$this->assertNotEmpty($this->customer->getData());
}
public function testGetData()
{
$this->customer = new RetailcrmCustomerBuilder();
$this->customer
->setDataCrm($this->getDataCrm())
2021-11-03 16:19:39 +07:00
->build()
;
2020-07-08 16:09:45 +03:00
$builtCustomer = $this->customer->getData()->getCustomer();
$builtAddress = $this->customer->getData()->getCustomerAddress();
$this->assertTrue($builtCustomer instanceof Customer
|| $builtCustomer instanceof CustomerCore);
$this->assertTrue($builtAddress instanceof Address
|| $builtAddress instanceof AddressCore);
}
public function testBuildAddress()
{
$this->customer = new RetailcrmCustomerBuilder();
$this->customer->buildAddress();
2021-11-03 16:19:39 +07:00
$this->assertNull($this->customer->getData()->getCustomerAddress());
2020-07-08 16:09:45 +03:00
}
public function testCorrectDataCustomer()
{
$this->customer = new RetailcrmCustomerBuilder();
$this->customer
->setDataCrm($this->getDataCrm())
2021-11-03 16:19:39 +07:00
->build()
;
2020-07-08 16:09:45 +03:00
$customerResult = $this->customer->getData()->getCustomer();
$this->assertEquals('April', $customerResult->firstname);
$this->assertEquals('Iphone', $customerResult->lastname);
2021-11-03 16:19:39 +07:00
$this->assertFalse($customerResult->newsletter);
2020-07-08 16:09:45 +03:00
$this->assertEquals('1997-04-09', $customerResult->birthday);
$this->assertEquals(2, $customerResult->id_gender);
$this->assertEquals('hello@world.ru', $customerResult->email);
$addressResult = $this->customer->getData()->getCustomerAddress();
$this->assertEquals(Country::getByIso('RU'), $addressResult->id_country);
$this->assertEquals('г. Москва', $addressResult->city);
}
2021-11-03 16:19:39 +07:00
private function getDataCrm()
{
return [
2020-07-08 16:09:45 +03:00
'type' => 'customer',
'id' => 9000,
'externalId' => '1777754',
'isContact' => false,
'createdAt' => '2020-04-09 16:55:59',
'vip' => true,
'bad' => true,
'site' => '127-0-0-1-8080',
2021-11-03 16:19:39 +07:00
'contragent' => [
'contragentType' => 'individual',
],
'subscribed' => false,
'tags' => [],
2020-07-08 16:09:45 +03:00
'marginSumm' => 0,
'totalSumm' => 0,
'averageSumm' => 0,
'ordersCount' => 0,
'costSumm' => 0,
2021-11-03 16:19:39 +07:00
'customFields' => [],
2020-07-08 16:09:45 +03:00
'personalDiscount' => 0,
2021-11-03 16:19:39 +07:00
'address' => [
2020-07-08 16:09:45 +03:00
'id' => 9718,
'countryIso' => 'RU',
'region' => 'Moscow',
'city' => 'г. Москва',
'index' => '344004',
2021-11-03 16:19:39 +07:00
'text' => 'MAY',
],
'segments' => [],
2020-07-08 16:09:45 +03:00
'firstName' => 'April',
'lastName' => 'Iphone',
'email' => 'hello@world.ru',
'sex' => 'female',
2021-11-03 16:19:39 +07:00
'birthday' => '1997-04-09',
];
2020-07-08 16:09:45 +03:00
}
}