ConcatTest.php in Zircon Profile 8.0
File
core/modules/migrate/tests/src/Unit/process/ConcatTest.php
View source
<?php
namespace Drupal\Tests\migrate\Unit\process;
use Drupal\migrate\Plugin\migrate\process\Concat;
class ConcatTest extends MigrateProcessTestCase {
protected function setUp() {
$this->plugin = new TestConcat();
parent::setUp();
}
public function testConcatWithoutDelimiter() {
$value = $this->plugin
->transform(array(
'foo',
'bar',
), $this->migrateExecutable, $this->row, 'destinationproperty');
$this
->assertSame($value, 'foobar');
}
public function testConcatWithNonArray() {
$this->plugin
->transform('foo', $this->migrateExecutable, $this->row, 'destinationproperty');
}
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() {
}
public function setDelimiter($delimiter) {
$this->configuration['delimiter'] = $delimiter;
}
}