mirror of
https://github.com/espocrm/espocrm.git
synced 2026-07-01 08:26:04 +00:00
360 lines
11 KiB
PHP
360 lines
11 KiB
PHP
<?php
|
||
/************************************************************************
|
||
* This file is part of EspoCRM.
|
||
*
|
||
* EspoCRM – Open Source CRM application.
|
||
* Copyright (C) 2014-2026 EspoCRM, Inc.
|
||
* Website: https://www.espocrm.com
|
||
*
|
||
* This program is free software: you can redistribute it and/or modify
|
||
* it under the terms of the GNU Affero General Public License as published by
|
||
* the Free Software Foundation, either version 3 of the License, or
|
||
* (at your option) any later version.
|
||
*
|
||
* This program is distributed in the hope that it will be useful,
|
||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
* GNU Affero General Public License for more details.
|
||
*
|
||
* You should have received a copy of the GNU Affero General Public License
|
||
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||
*
|
||
* The interactive user interfaces in modified source and object code versions
|
||
* of this program must display Appropriate Legal Notices, as required under
|
||
* Section 5 of the GNU Affero General Public License version 3.
|
||
*
|
||
* In accordance with Section 7(b) of the GNU Affero General Public License version 3,
|
||
* these Appropriate Legal Notices must retain the display of the "EspoCRM" word.
|
||
************************************************************************/
|
||
|
||
namespace tests\integration\Espo\Core\Field;
|
||
|
||
use Espo\Core\Field\Address;
|
||
use Espo\Core\Field\Currency;
|
||
use Espo\Core\Field\Date;
|
||
use Espo\Core\Field\DateTime;
|
||
use Espo\Core\Field\DateTimeOptional;
|
||
use Espo\Core\Field\EmailAddress;
|
||
use Espo\Core\Field\EmailAddressGroup;
|
||
use Espo\Core\Field\Link;
|
||
use Espo\Core\Field\LinkMultiple;
|
||
use Espo\Core\Field\LinkMultipleItem;
|
||
use Espo\Core\Field\LinkParent;
|
||
use Espo\Core\Field\PhoneNumber;
|
||
use Espo\Core\Field\PhoneNumberGroup;
|
||
use Espo\Modules\Crm\Entities\Meeting;
|
||
use Espo\ORM\EntityManager;
|
||
use tests\integration\Core\BaseTestCase;
|
||
|
||
class ValueObjectTest extends BaseTestCase
|
||
{
|
||
public function testAddress()
|
||
{
|
||
$entityManager = $this->getContainer()->getByClass(EntityManager::class);
|
||
|
||
$entity = $entityManager->getNewEntity('Account');
|
||
|
||
$address = Address
|
||
::create()
|
||
->withCity('Test')
|
||
->withCountry('United States');
|
||
|
||
$entity->setBillingAddress($address);
|
||
|
||
$entityManager->saveEntity($entity);
|
||
|
||
$entity = $entityManager->getEntityById('Account', $entity->getId());
|
||
|
||
$address = $entity->getBillingAddress();
|
||
|
||
$this->assertNotNull($address);
|
||
|
||
$this->assertEquals('Test', $address->getCity());
|
||
|
||
$entity->setValueObject('billingAddress', null);
|
||
|
||
$address = $entity->getValueObject('billingAddress');
|
||
|
||
$this->assertNotNull($address);
|
||
|
||
$this->assertEquals(null, $address->getCity());
|
||
}
|
||
|
||
public function testCurrency()
|
||
{
|
||
$entityManager = $this->getContainer()->getByClass(EntityManager::class);
|
||
|
||
$opportunity = $entityManager->getNewEntity('Opportunity');
|
||
|
||
$opportunity->set('name', 'opp-1');
|
||
|
||
$opportunity->setAmount(new Currency(1000.0, 'USD'));
|
||
|
||
$entityManager->saveEntity($opportunity);
|
||
|
||
$opportunity = $entityManager->getEntityById('Opportunity', $opportunity->getId());
|
||
|
||
$currency = $opportunity->getAmount();
|
||
|
||
$this->assertNotNull($currency);
|
||
|
||
$this->assertEquals(1000.0, $currency->getAmount());
|
||
$this->assertEquals('USD', $currency->getCode());
|
||
}
|
||
|
||
public function testDate()
|
||
{
|
||
$entityManager = $this->getContainer()->getByClass(EntityManager::class);
|
||
|
||
$opportunity = $entityManager->getNewEntity('Opportunity');
|
||
|
||
$opportunity->set('name', 'opp-1');
|
||
|
||
$opportunity->setCloseDate(Date::fromString('2021-05-01'));
|
||
|
||
$entityManager->saveEntity($opportunity);
|
||
|
||
$opportunity = $entityManager->getEntityById('Opportunity', $opportunity->getId());
|
||
|
||
$closeDate = $opportunity->getCloseDate();
|
||
|
||
$this->assertNotNull($closeDate);
|
||
|
||
$this->assertEquals('2021-05-01', $closeDate->getString());
|
||
|
||
$opportunity->setValueObject('closeDate', null);
|
||
|
||
$entityManager->saveEntity($opportunity);
|
||
|
||
$opportunity = $entityManager->getEntityById('Opportunity', $opportunity->getId());
|
||
|
||
$closeDate = $opportunity->getValueObject('closeDate');
|
||
|
||
$this->assertNull($closeDate);
|
||
}
|
||
|
||
public function testDateTime()
|
||
{
|
||
$entityManager = $this->getContainer()->getByClass(EntityManager::class);
|
||
|
||
$call = $entityManager->getNewEntity('Call');
|
||
|
||
$call->set('name', 'call-1');
|
||
|
||
$call->setValueObject('dateStart', DateTime::fromString('2021-05-01 10:00:00'));
|
||
|
||
$entityManager->saveEntity($call);
|
||
|
||
$call = $entityManager->getEntityById('Call', $call->getId());
|
||
|
||
$dateStart = $call->getValueObject('dateStart');
|
||
|
||
$this->assertNotNull($dateStart);
|
||
|
||
$this->assertEquals('2021-05-01 10:00:00', $dateStart->getString());
|
||
|
||
$call->setValueObject('dateStart', null);
|
||
|
||
$entityManager->saveEntity($call);
|
||
|
||
$call = $entityManager->getEntityById('Call', $call->getId());
|
||
|
||
$dateStart = $call->getValueObject('dateStart');
|
||
|
||
$this->assertNull($dateStart);
|
||
}
|
||
|
||
public function testDateTimeOptional()
|
||
{
|
||
$entityManager = $this->getContainer()->getByClass(EntityManager::class);
|
||
|
||
$meeting = $entityManager->getRepositoryByClass(Meeting::class)->getNew();
|
||
|
||
$meeting->set('name', 'meeting-1');
|
||
|
||
$meeting->setDateStart(DateTimeOptional::fromString('2021-05-01 10:00:00'));
|
||
|
||
$entityManager->saveEntity($meeting);
|
||
|
||
$entityManager->refreshEntity($meeting);
|
||
|
||
$dateStart = $meeting->getDateStart();
|
||
|
||
$this->assertNotNull($dateStart);
|
||
|
||
$this->assertEquals('2021-05-01 10:00:00', $dateStart->getString());
|
||
|
||
$meeting->setValueObject('dateStart', null);
|
||
|
||
$entityManager->saveEntity($meeting);
|
||
|
||
$entityManager->refreshEntity($meeting);
|
||
|
||
$dateStart = $meeting->getValueObject('dateStart');
|
||
|
||
$this->assertNull($dateStart);
|
||
|
||
$meeting->setIsAllDay(true);
|
||
$meeting->setValueObject('dateStart', DateTimeOptional::fromString('2021-05-01'));
|
||
|
||
$entityManager->saveEntity($meeting);
|
||
|
||
$entityManager->refreshEntity($meeting);
|
||
|
||
$dateStart = $meeting->getValueObject('dateStart');
|
||
|
||
$this->assertNotNull($dateStart);
|
||
|
||
$this->assertEquals('2021-05-01', $dateStart->getString());
|
||
}
|
||
|
||
public function testEmailAddress()
|
||
{
|
||
$entityManager = $this->getContainer()->getByClass(EntityManager::class);
|
||
|
||
$entity = $entityManager->getNewEntity('Account');
|
||
|
||
$group = EmailAddressGroup::create([
|
||
EmailAddress::create('one@test.com'),
|
||
EmailAddress::create('two@test.com')->optedOut(),
|
||
EmailAddress::create('three@test.com')->invalid(),
|
||
]);
|
||
|
||
$entity->setEmailAddressGroup($group);
|
||
|
||
$entityManager->saveEntity($entity);
|
||
|
||
$entity = $entityManager->getEntityById('Account', $entity->getId());
|
||
|
||
$group = $entity->getEmailAddressGroup();
|
||
|
||
$this->assertEquals('one@test.com', $group->getPrimary()->getAddress());
|
||
|
||
$this->assertTrue($group->getList()[1]->isOptedOut() || $group->getList()[2]->isOptedOut());
|
||
|
||
$this->assertTrue($group->getList()[1]->isInvalid() || $group->getList()[2]->isInvalid());
|
||
}
|
||
|
||
public function testPhoneNumber()
|
||
{
|
||
$entityManager = $this->getContainer()->getByClass(EntityManager::class);
|
||
|
||
$entity = $entityManager->getNewEntity('Account');
|
||
|
||
$group = PhoneNumberGroup::create([
|
||
PhoneNumber::create('1')->withType('Office'),
|
||
PhoneNumber::create('2')->optedOut(),
|
||
PhoneNumber::create('3')->invalid(),
|
||
]);
|
||
|
||
$entity->setPhoneNumberGroup($group);
|
||
|
||
$entityManager->saveEntity($entity);
|
||
|
||
$entity = $entityManager->getEntityById('Account', $entity->getId());
|
||
|
||
$group = $entity->getPhoneNumberGroup();
|
||
|
||
$this->assertEquals('1', $group->getPrimary()->getNumber());
|
||
$this->assertEquals('Office', $group->getPrimary()->getType());
|
||
|
||
$this->assertTrue($group->getList()[1]->isOptedOut() || $group->getList()[2]->isOptedOut());
|
||
|
||
$this->assertTrue($group->getList()[1]->isInvalid() || $group->getList()[2]->isInvalid());
|
||
}
|
||
|
||
public function testLink()
|
||
{
|
||
$entityManager = $this->getContainer()->getByClass(EntityManager::class);
|
||
|
||
$entity = $entityManager->getNewEntity('Account');
|
||
|
||
$entity->setValueObject('assignedUser', Link::create('1'));
|
||
|
||
$link = $entity->getValueObject('assignedUser');
|
||
|
||
$this->assertEquals('1', $link->getId());
|
||
|
||
$entity->setValueObject('assignedUser', null);
|
||
|
||
$this->assertNull($entity->getValueObject('assignedUser'));
|
||
}
|
||
|
||
public function testLinkParent()
|
||
{
|
||
$entityManager = $this->getContainer()->getByClass(EntityManager::class);
|
||
|
||
$entity = $entityManager->getNewEntity('Task');
|
||
|
||
$entity->setValueObject('parent', LinkParent::create('Account', 'test-id'));
|
||
|
||
$link = $entity->getValueObject('parent');
|
||
|
||
$this->assertEquals('test-id', $link->getId());
|
||
$this->assertEquals('Account', $link->getEntityType());
|
||
|
||
$entity->setValueObject('parent', null);
|
||
|
||
$this->assertNull($entity->getValueObject('parent'));
|
||
}
|
||
|
||
public function testLinkMultiple1(): void
|
||
{
|
||
$entityManager = $this->getContainer()->getByClass(EntityManager::class);
|
||
|
||
$c1 = $entityManager->createEntity('Contact', []);
|
||
$c2 = $entityManager->createEntity('Contact', []);
|
||
|
||
$entity = $entityManager->getNewEntity('Opportunity');
|
||
|
||
$link = LinkMultiple::create([
|
||
LinkMultipleItem::create($c1->getId())->withColumnValue('role', 'Decision Maker'),
|
||
LinkMultipleItem::create($c2->getId()),
|
||
]);
|
||
|
||
$entity->setValueObject('contacts', $link);
|
||
|
||
$entityManager->saveEntity($entity);
|
||
|
||
$entity = $entityManager->getEntityById('Opportunity', $entity->getId());
|
||
|
||
/** @var LinkMultiple */
|
||
$link = $entity->getValueObject('contacts');
|
||
|
||
$this->assertEquals(2, $link->getCount());
|
||
|
||
$this->assertEquals('Decision Maker', $link->getById($c1->getId())->getColumnValue('role'));
|
||
$this->assertEquals(null, $link->getById($c2->getId())->getColumnValue('role'));
|
||
}
|
||
|
||
public function testLinkMultiple2()
|
||
{
|
||
$entityManager = $this->getContainer()->getByClass(EntityManager::class);
|
||
|
||
$c1 = $entityManager->createEntity('Contact', []);
|
||
$c2 = $entityManager->createEntity('Contact', []);
|
||
|
||
$entity = $entityManager->getNewEntity('Opportunity');
|
||
|
||
$link = LinkMultiple::create([
|
||
LinkMultipleItem::create($c1->getId())->withColumnValue('role', 'Decision Maker'),
|
||
LinkMultipleItem::create($c2->getId()),
|
||
]);
|
||
|
||
$entity->setValueObject('contacts', $link);
|
||
|
||
$entityManager->saveEntity($entity);
|
||
|
||
$entity = $entityManager->getEntityById('Opportunity', $entity->getId());
|
||
|
||
$entity->loadLinkMultipleField('contacts');
|
||
|
||
/** @var LinkMultiple */
|
||
$link = $entity->getValueObject('contacts');
|
||
|
||
$this->assertEquals(2, $link->getCount());
|
||
|
||
$this->assertEquals('Decision Maker', $link->getById($c1->getId())->getColumnValue('role'));
|
||
}
|
||
}
|