You are here

ConcatTest.php in Zircon Profile 8

File

core/modules/migrate/tests/src/Unit/process/ConcatTest.php
View source
<?php

/**
 * @file
 * Contains \Drupal\Tests\migrate\Unit\process\ConcatTest.
 */
namespace Drupal\Tests\migrate\Unit\process;

use Drupal\migrate\Plugin\migrate\process\Concat;

/**
 * Tests the concat process plugin.
 *
 * @group migrate
 */
class ConcatTest extends MigrateProcessTestCase {

  /**
   * {@inheritdoc}
   */
  protected function setUp() {
    $this->plugin = new TestConcat();
    parent::setUp();
  }

  /**
   * Test concat works without a delimiter.
   */
  public function testConcatWithoutDelimiter() {
    $value = $this->plugin
      ->transform(array(
      'foo',
      'bar',
    ), $this->migrateExecutable, $this->row, 'destinationproperty');
    $this
      ->assertSame($value, 'foobar');
  }

  /**
   * Test concat fails properly on non-arrays.
   *
   * @expectedException \Drupal\migrate\MigrateException
   */
  public function testConcatWithNonArray() {
    $this->plugin
      ->transform('foo', $this->migrateExecutable, $this->row, 'destinationproperty');
  }

  /**
   * Test concat works without a delimiter.
   */
  public function testConcatWithDelimiter() {
    $this->plugin
      ->setDelimiter('_');
    $value = $this->plugin
      ->transform(array(
      'foo',
      'bar',
    ), $this->migrateExecutable, $this->row, 'destinationproperty');
    $this
      ->assertSame($value, 'foo_bar');
  }

}
class TestConcat extends Concat {
  public function __construct() {
  }

  /**
   * Set the delimiter.
   *
   * @param string $delimiter
   *   The new delimiter.
   */
  public function setDelimiter($delimiter) {
    $this->configuration['delimiter'] = $delimiter;
  }

}

Classes

Namesort descending Description
ConcatTest Tests the concat process plugin.
TestConcat