You are here

public function DedupeEntityTest::testDedupeEntityInvalidStart in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/migrate/tests/src/Unit/process/DedupeEntityTest.php \Drupal\Tests\migrate\Unit\process\DedupeEntityTest::testDedupeEntityInvalidStart()

Tests that invalid start position throws an exception.

File

core/modules/migrate/tests/src/Unit/process/DedupeEntityTest.php, line 85
Contains \Drupal\Tests\migrate\Unit\process\DedupeEntityTest.

Class

DedupeEntityTest
@coversDefaultClass \Drupal\migrate\Plugin\migrate\process\DedupeEntity @group migrate

Namespace

Drupal\Tests\migrate\Unit\process

Code

public function testDedupeEntityInvalidStart() {
  $configuration = array(
    'entity_type' => 'test_entity_type',
    'field' => 'test_field',
    'start' => 'foobar',
  );
  $plugin = new DedupeEntity($configuration, 'dedupe_entity', array(), $this
    ->getMigration(), $this->entityQueryFactory);
  $this
    ->setExpectedException('Drupal\\migrate\\MigrateException', 'The start position configuration key should be an integer. Omit this key to capture from the beginning of the string.');
  $plugin
    ->transform('test_start', $this->migrateExecutable, $this->row, 'testproperty');
}