Skip to content
Snippets Groups Projects
Commit 26d0796b authored by Aaron Bauman's avatar Aaron Bauman
Browse files

Merge branch '8.x-3.x' of bitbucket.org:messageagency/sf into 8.x-4.x

parents 336fc49f ba64ea9a
No related branches found
No related tags found
No related merge requests found
...@@ -3,7 +3,6 @@ ...@@ -3,7 +3,6 @@
namespace Drupal\Tests\salesforce_pull\Unit; namespace Drupal\Tests\salesforce_pull\Unit;
use Drupal\Component\EventDispatcher\ContainerAwareEventDispatcher; use Drupal\Component\EventDispatcher\ContainerAwareEventDispatcher;
use Drupal\Core\Entity\EntityBase;
use Drupal\Core\Entity\EntityStorageBase; use Drupal\Core\Entity\EntityStorageBase;
use Drupal\Core\Entity\EntityTypeManagerInterface; use Drupal\Core\Entity\EntityTypeManagerInterface;
use Drupal\Core\State\StateInterface; use Drupal\Core\State\StateInterface;
...@@ -15,6 +14,7 @@ use Drupal\salesforce_mapping\SalesforceMappingStorage; ...@@ -15,6 +14,7 @@ use Drupal\salesforce_mapping\SalesforceMappingStorage;
use Drupal\salesforce_pull\DeleteHandler; use Drupal\salesforce_pull\DeleteHandler;
use Drupal\salesforce\Rest\RestClientInterface; use Drupal\salesforce\Rest\RestClientInterface;
use Drupal\Tests\UnitTestCase; use Drupal\Tests\UnitTestCase;
use Drupal\user\Entity\User;
use Prophecy\Argument; use Prophecy\Argument;
/** /**
...@@ -47,8 +47,8 @@ class DeleteHandlerTest extends UnitTestCase { ...@@ -47,8 +47,8 @@ class DeleteHandlerTest extends UnitTestCase {
->willReturn($result); ->willReturn($result);
$this->sfapi = $prophecy->reveal(); $this->sfapi = $prophecy->reveal();
// Mock Drupal entity. // Mock an atribtary Drupal entity.
$prophecy = $this->prophesize(EntityBase::CLASS); $prophecy = $this->prophesize(User::CLASS);
$prophecy->delete()->willReturn(TRUE); $prophecy->delete()->willReturn(TRUE);
$prophecy->id()->willReturn(1); $prophecy->id()->willReturn(1);
$prophecy->label()->willReturn('foo'); $prophecy->label()->willReturn('foo');
......
No preview for this file type
This diff is collapsed.
[
{
"activateable": false,
"createable": true,
"custom": false,
"customSetting": false,
"deletable": true,
"deprecatedAndHidden": false,
"feedEnabled": false,
"hasSubtypes": false,
"isSubtype": false,
"keyPrefix": "001",
"label": "Account",
"labelPlural": "Accounts",
"layoutable": true,
"mergeable": true,
"mruEnabled": true,
"name": "Account",
"queryable": true,
"replicateable": true,
"retrieveable": true,
"searchable": true,
"triggerable": true,
"undeletable": true,
"updateable": true,
"urls": {
"compactLayouts": "\\/services\\/data\\/v40.0\\/sobjects\\/Account\\/describe\\/compactLayouts",
"rowTemplate": "\\/services\\/data\\/v40.0\\/sobjects\\/Account\\/{ID}",
"approvalLayouts": "\\/services\\/data\\/v40.0\\/sobjects\\/Account\\/describe\\/approvalLayouts",
"defaultValues": "\\/services\\/data\\/v40.0\\/sobjects\\/Account\\/defaultValues?recordTypeId&fields",
"listviews": "\\/services\\/data\\/v40.0\\/sobjects\\/Account\\/listviews",
"describe": "\\/services\\/data\\/v40.0\\/sobjects\\/Account\\/describe",
"quickActions": "\\/services\\/data\\/v40.0\\/sobjects\\/Account\\/quickActions",
"layouts": "\\/services\\/data\\/v40.0\\/sobjects\\/Account\\/describe\\/layouts",
"sobject": "\\/services\\/data\\/v40.0\\/sobjects\\/Account"
}
},
{
"activateable": false,
"createable": true,
"custom": false,
"customSetting": false,
"deletable": true,
"deprecatedAndHidden": false,
"feedEnabled": false,
"hasSubtypes": false,
"isSubtype": false,
"keyPrefix": "003",
"label": "Contact",
"labelPlural": "Contacts",
"layoutable": true,
"mergeable": true,
"mruEnabled": true,
"name": "Contact",
"queryable": true,
"replicateable": true,
"retrieveable": true,
"searchable": true,
"triggerable": true,
"undeletable": true,
"updateable": true,
"urls": {
"compactLayouts": "\\/services\\/data\\/v40.0\\/sobjects\\/Contact\\/describe\\/compactLayouts",
"rowTemplate": "\\/services\\/data\\/v40.0\\/sobjects\\/Contact\\/{ID}",
"approvalLayouts": "\\/services\\/data\\/v40.0\\/sobjects\\/Contact\\/describe\\/approvalLayouts",
"defaultValues": "\\/services\\/data\\/v40.0\\/sobjects\\/Contact\\/defaultValues?recordTypeId&fields",
"listviews": "\\/services\\/data\\/v40.0\\/sobjects\\/Contact\\/listviews",
"describe": "\\/services\\/data\\/v40.0\\/sobjects\\/Contact\\/describe",
"quickActions": "\\/services\\/data\\/v40.0\\/sobjects\\/Contact\\/quickActions",
"layouts": "\\/services\\/data\\/v40.0\\/sobjects\\/Contact\\/describe\\/layouts",
"sobject": "\\/services\\/data\\/v40.0\\/sobjects\\/Contact"
}
}
]
\ No newline at end of file
{
"totalSize": 2,
"done": true,
"records": [
{
"attributes": {
"type": "RecordType",
"url": "\\/services\\/data\\/v45.0\\/sobjects\\/RecordType\\/012i0000001B15mAAC"
},
"Id": "012i0000001B15mAAC",
"Name": "Contact Type 1",
"DeveloperName": "Contact_Type_1",
"SobjectType": "Contact"
},
{
"attributes": {
"type": "RecordType",
"url": "\\/services\\/data\\/v45.0\\/sobjects\\/RecordType\\/012i0000001B15rAAC"
},
"Id": "012i0000001B15rAAC",
"Name": "Contact Type 2",
"DeveloperName": "Contact_Type_2",
"SobjectType": "Contact"
}
]
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment