You are here

public function GetTest::testTransformSourceArrayAt in Zircon Profile 8.0

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

Tests the Get plugin when source is an array pointing to destination.

File

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

Class

GetTest
Tests the get process plugin.

Namespace

Drupal\Tests\migrate\Unit\process

Code

public function testTransformSourceArrayAt() {
  $map = array(
    'test1' => 'source_value1',
    '@test2' => 'source_value2',
    '@test3' => 'source_value3',
    'test4' => 'source_value4',
  );
  $this->plugin
    ->setSource(array(
    'test1',
    '@@test2',
    '@@test3',
    'test4',
  ));
  $this->row
    ->expects($this
    ->exactly(4))
    ->method('getSourceProperty')
    ->will($this
    ->returnCallback(function ($argument) use ($map) {
    return $map[$argument];
  }));
  $value = $this->plugin
    ->transform(NULL, $this->migrateExecutable, $this->row, 'destinationproperty');
  $this
    ->assertSame($value, array(
    'source_value1',
    'source_value2',
    'source_value3',
    'source_value4',
  ));
}