class ArrayBuildTest

Same name and namespace in other branches
  1. 11.x core/modules/migrate/tests/src/Unit/process/ArrayBuildTest.php \Drupal\Tests\migrate\Unit\process\ArrayBuildTest
  2. 10 core/modules/migrate/tests/src/Unit/process/ArrayBuildTest.php \Drupal\Tests\migrate\Unit\process\ArrayBuildTest
  3. 8.9.x core/modules/migrate/tests/src/Unit/process/ArrayBuildTest.php \Drupal\Tests\migrate\Unit\process\ArrayBuildTest

@coversDefaultClass \Drupal\migrate\Plugin\migrate\process\ArrayBuild
@group migrate

Hierarchy

Expanded class hierarchy of ArrayBuildTest

File

core/modules/migrate/tests/src/Unit/process/ArrayBuildTest.php, line 12

Namespace

Drupal\Tests\migrate\Unit\process
View source
class ArrayBuildTest extends MigrateProcessTestCase {
  
  /**
   * {@inheritdoc}
   */
  protected function setUp() : void {
    $configuration = [
      'key' => 'foo',
      'value' => 'bar',
    ];
    $this->plugin = new ArrayBuild($configuration, 'map', []);
    parent::setUp();
  }
  
  /**
   * Tests successful transformation.
   */
  public function testTransform() {
    $source = [
      [
        'foo' => 'Foo',
        'bar' => 'Bar',
      ],
      [
        'foo' => 'foo bar',
        'bar' => 'bar foo',
      ],
    ];
    $expected = [
      'Foo' => 'Bar',
      'foo bar' => 'bar foo',
    ];
    $value = $this->plugin
      ->transform($source, $this->migrateExecutable, $this->row, 'destination_property');
    $this->assertSame($value, $expected);
  }
  
  /**
   * Tests non-existent key for the key configuration.
   */
  public function testNonExistentKey() {
    $source = [
      [
        'bar' => 'foo',
      ],
    ];
    $this->expectException(MigrateException::class);
    $this->expectExceptionMessage("The key 'foo' does not exist");
    $this->plugin
      ->transform($source, $this->migrateExecutable, $this->row, 'destination_property');
  }
  
  /**
   * Tests non-existent key for the value configuration.
   */
  public function testNonExistentValue() {
    $source = [
      [
        'foo' => 'bar',
      ],
    ];
    $this->expectException(MigrateException::class);
    $this->expectExceptionMessage("The key 'bar' does not exist");
    $this->plugin
      ->transform($source, $this->migrateExecutable, $this->row, 'destination_property');
  }
  
  /**
   * Tests one-dimensional array input.
   */
  public function testOneDimensionalArrayInput() {
    $source = [
      'foo' => 'bar',
    ];
    $this->expectException(MigrateException::class);
    $this->expectExceptionMessage('The input should be an array of arrays');
    $this->plugin
      ->transform($source, $this->migrateExecutable, $this->row, 'destination_property');
  }
  
  /**
   * Tests string input.
   */
  public function testStringInput() {
    $source = 'foo';
    $this->expectException(MigrateException::class);
    $this->expectExceptionMessage('The input should be an array of arrays');
    $this->plugin
      ->transform($source, $this->migrateExecutable, $this->row, 'destination_property');
  }

}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.