You are here

public function MappedObjectTest::testPushUpsert in Salesforce Suite 8.3

Same name and namespace in other branches
  1. 8.4 modules/salesforce_mapping/tests/src/Unit/MappedObjectTest.php \Drupal\Tests\salesforce_mapping\Unit\MappedObjectTest::testPushUpsert()
  2. 5.0.x modules/salesforce_mapping/tests/src/Unit/MappedObjectTest.php \Drupal\Tests\salesforce_mapping\Unit\MappedObjectTest::testPushUpsert()

@covers ::push

File

modules/salesforce_mapping/tests/src/Unit/MappedObjectTest.php, line 164

Class

MappedObjectTest
Test Mapped Object instantitation.

Namespace

Drupal\Tests\salesforce_mapping\Unit

Code

public function testPushUpsert() {

  // First pass: test upsert.
  $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());
}