ref #91532 создание тестов
This commit is contained in:
parent
c6363f9a78
commit
37e11f5871
1 changed files with 41 additions and 0 deletions
41
tests/lib/service/CustomerServiceTest.php
Normal file
41
tests/lib/service/CustomerServiceTest.php
Normal file
|
@ -0,0 +1,41 @@
|
|||
<?php
|
||||
|
||||
use Intaro\RetailCrm\Service\CustomerService;
|
||||
|
||||
/**
|
||||
* Class CustomerService
|
||||
*/
|
||||
class CustomerServiceTest extends BitrixTestCase
|
||||
{
|
||||
private $customerService;
|
||||
|
||||
public function setUp(): void
|
||||
{
|
||||
parent::setUp();
|
||||
|
||||
COption::SetOptionString('intaro.retailcrm', 'api_version', 'v5');
|
||||
CModule::IncludeModule('intaro.retailcrm');
|
||||
|
||||
$this->customerService = new CustomerService();
|
||||
}
|
||||
|
||||
public function testCreateModel()
|
||||
{
|
||||
$user = new CUser;
|
||||
$arUser = $user->Register(
|
||||
'TestLogin',
|
||||
'TestName',
|
||||
'TestLastName',
|
||||
'TestPassword',
|
||||
'TestPassword',
|
||||
'testemail@gmail.com'
|
||||
);
|
||||
|
||||
$customer = $this->customerService->createModel($arUser['ID']);
|
||||
$fields = CUser::GetByID($arUser['ID'])->Fetch();
|
||||
$dateRegister = new DateTimeImmutable($fields['DATE_REGISTER']);
|
||||
|
||||
self::assertEquals($dateRegister->getTimestamp(), $customer->createdAt->getTimestamp());
|
||||
CUser::Delete($arUser['ID']);
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue