View source
<?php
namespace Drupal\Tests\salesforce_mapping\Unit;
use Drupal\Core\DependencyInjection\ContainerBuilder;
use Drupal\Core\Entity\ContentEntityInterface;
use Drupal\Core\Entity\EntityTypeInterface;
use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\Field\FieldItemListInterface;
use Drupal\salesforce\Exception;
use Drupal\salesforce_mapping\Entity\MappedObject;
use Drupal\salesforce_mapping\Entity\SalesforceMappingInterface;
use Drupal\salesforce\Rest\RestClientInterface;
use Drupal\salesforce\SFID;
use Drupal\salesforce\SObject;
use Drupal\Tests\UnitTestCase;
use Drupal\Component\Datetime\TimeInterface;
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
class MappedObjectTest extends UnitTestCase {
protected static $modules = [
'salesforce_mapping',
];
protected function setUp() : void {
parent::setUp();
$this->entityTypeId = $this
->randomMachineName();
$this->bundle = $this
->randomMachineName();
$this->mapped_object_id = 1;
$this->salesforce_id = '1234567890abcdeAAA';
$this->mapping_id = 1;
$this->entity_id = 1;
$this->sf_object = new SObject([
'id' => $this->salesforce_id,
'attributes' => [
'type' => $this
->randomMachineName(),
],
'foo' => 'bar',
]);
$this->sfid = $this
->getMockBuilder(SFID::CLASS)
->setConstructorArgs([
$this->salesforce_id,
])
->getMock();
$this->sfid
->expects($this
->any())
->method('__toString')
->willReturn($this->salesforce_id);
$this->entityType = $this
->getMockBuilder(EntityTypeInterface::class)
->getMock();
$this->entityType
->expects($this
->any())
->method('getKeys')
->will($this
->returnValue([
'id' => 'id',
'uuid' => 'uuid',
]));
$this->etm = $this
->getMockBuilder(EntityTypeManagerInterface::class)
->getMock();
$this->etm
->expects($this
->any())
->method('getDefinition')
->with($this->entityTypeId)
->will($this
->returnValue($this->entityType));
$this->mappedObjectEntityType = $this
->getMockBuilder(EntityTypeInterface::class)
->getMock();
$this->mappedObjectEntityType
->expects($this
->any())
->method('getKeys')
->will($this
->returnValue([
'id' => 'id',
'entity_id' => 'entity_id',
'salesforce_id' => 'salesforce_id',
]));
$this->etm
->expects($this
->any())
->method('getDefinition')
->with('salesforce_mapped_object')
->will($this
->returnValue($this->mappedObjectEntityType));
$this->event_dispatcher = $this
->getMockBuilder(EventDispatcherInterface::class)
->getMock();
$this->client = $this
->getMockBuilder(RestClientInterface::CLASS)
->getMock();
$this->fieldTypePluginManager = $this
->getMockBuilder('\\Drupal\\Core\\Field\\FieldTypePluginManager')
->disableOriginalConstructor()
->getMock();
$this->fieldTypePluginManager
->expects($this
->any())
->method('getDefaultStorageSettings')
->will($this
->returnValue([]));
$this->fieldTypePluginManager
->expects($this
->any())
->method('getDefaultFieldSettings')
->will($this
->returnValue([]));
$this->fieldTypePluginManager
->expects($this
->any())
->method('createFieldItemList')
->will($this
->returnValue($this
->getMockBuilder(FieldItemListInterface::class)
->getMock()));
$this->time = $this
->getMockBuilder(TimeInterface::CLASS)
->getMock();
$container = new ContainerBuilder();
$container
->set('entity_type.manager', $this->etm);
$container
->set('salesforce.client', $this->client);
$container
->set('event_dispatcher', $this->event_dispatcher);
$container
->set('plugin.manager.field.field_type', $this->fieldTypePluginManager);
$container
->set('datetime.time', $this->time);
\Drupal::setContainer($container);
$this->entity = $this
->getMockBuilder(ContentEntityInterface::class)
->getMock();
$this->entity
->expects($this
->any())
->method('id')
->willReturn($this->entity_id);
$this->entity
->expects($this
->any())
->method('isTranslatable')
->willReturn(FALSE);
$this->mapping = $this
->getMockBuilder(SalesforceMappingInterface::CLASS)
->getMock();
$this->mapping
->expects($this
->any())
->method('getFieldMappings')
->willReturn([]);
$this->mapping
->expects($this
->any())
->method('getPullFields')
->willReturn([]);
$this->mapping
->expects($this
->any())
->method('getSalesforceObjectType')
->willReturn('dummy_sf_object_type');
$this->mapped_object = $this
->getMockBuilder(MappedObject::CLASS)
->disableOriginalConstructor()
->setMethods([
'getMappedEntity',
'getMapping',
'getEntityType',
'sfid',
'set',
'save',
'setNewRevision',
'client',
])
->getMock();
$this->mapped_object
->expects($this
->any())
->method('getMappedEntity')
->willReturn($this->entity);
$this->mapped_object
->expects($this
->any())
->method('getMapping')
->willReturn($this->mapping);
$this->mapped_object
->expects($this
->any())
->method('getEntityType')
->willReturn($this->mappedObjectEntityType);
$this->mapped_object
->expects($this
->any())
->method('set')
->willReturn($this->mapped_object);
$this->mapped_object
->expects($this
->any())
->method('client')
->willReturn($this->client);
}
public function testPushUpsert() {
$this->mapped_object
->expects($this
->any())
->method('sfid')
->willReturn(NULL);
$this->mapping
->expects($this
->any())
->method('alwaysUpsert')
->willReturn(FALSE);
$this->mapping
->expects($this
->any())
->method('hasKey')
->will($this
->returnValue(TRUE));
$this->client
->expects($this
->once())
->method('objectUpsert')
->willReturn(NULL);
$this
->assertNull($this->mapped_object
->push());
}
public function testPushUpdate() {
$this->mapped_object
->expects($this
->any())
->method('sfid')
->willReturn($this->sfid);
$this->mapping
->expects($this
->any())
->method('alwaysUpsert')
->willReturn(FALSE);
$this->client
->expects($this
->once())
->method('objectUpdate')
->willReturn(NULL);
$this
->assertNull($this->mapped_object
->push());
}
public function testPushCreate() {
$this->mapping
->expects($this
->once())
->method('hasKey')
->will($this
->returnValue(FALSE));
$this->mapped_object
->expects($this
->any())
->method('sfid')
->willReturn(FALSE);
$this->mapping
->expects($this
->any())
->method('alwaysUpsert')
->willReturn(FALSE);
$this->client
->expects($this
->once())
->method('objectCreate')
->willReturn($this->sfid);
$result = $this->mapped_object
->push();
$this
->assertTrue($result instanceof SFID);
$this
->assertEquals($this->salesforce_id, (string) $result);
}
public function testAlwaysUpsert() {
$this->mapped_object
->expects($this
->any())
->method('sfid')
->willReturn($this->sfid);
$this->mapping
->expects($this
->any())
->method('alwaysUpsert')
->willReturn(TRUE);
$this->mapping
->expects($this
->once())
->method('hasKey')
->will($this
->returnValue(TRUE));
$this->client
->expects($this
->once())
->method('objectUpsert')
->willReturn(NULL);
$this
->assertNull($this->mapped_object
->push());
}
public function testPushDelete() {
$this->client
->expects($this
->once())
->method('objectDelete')
->willReturn(NULL);
$this
->assertEquals($this->mapped_object, $this->mapped_object
->pushDelete());
}
public function testPullException() {
$this->mapped_object
->expects($this
->any())
->method('sfid')
->willReturn(FALSE);
$this->mapping
->expects($this
->any())
->method('hasKey')
->willReturn(FALSE);
$this
->expectException(Exception::class);
$this->mapped_object
->pull();
}
public function testPullExisting() {
$this->mapped_object
->expects($this
->any())
->method('sfid')
->willReturn($this->sfid);
$this->client
->expects($this
->once())
->method('objectRead')
->willReturn($this->sf_object);
$this
->assertNull($this->mapped_object
->getSalesforceRecord());
$this->mapped_object
->pull();
$this
->assertEquals($this->sf_object, $this->mapped_object
->getSalesforceRecord());
}
public function testPull() {
$this->mapped_object
->setSalesforceRecord($this->sf_object);
$this
->assertEquals($this->mapped_object, $this->mapped_object
->pull());
}
}