View source
<?php
namespace Drupal\Tests\migrate_plus\Unit\process;
use Drupal\Tests\migrate\Unit\process\MigrateProcessTestCase;
use Drupal\migrate_plus\Plugin\migrate\process\ArrayPop;
use Drupal\migrate\MigrateException;
class ArrayPopTest extends MigrateProcessTestCase {
protected function setUp() {
$this->plugin = new ArrayPop([], 'array_pop', []);
parent::setUp();
}
public function arrayPopDataProvider() {
return [
'indexed array' => [
'input' => [
'v1',
'v2',
'v3',
],
'expected_output' => 'v3',
],
'associative array' => [
'input' => [
'i1' => 'v1',
'i2' => 'v2',
'i3' => 'v3',
],
'expected_output' => 'v3',
],
'empty array' => [
'input' => [],
'expected_output' => NULL,
],
];
}
public function testArrayPop(array $input, $expected_output) {
$output = $this->plugin
->transform($input, $this->migrateExecutable, $this->row, 'destinationproperty');
$this
->assertSame($output, $expected_output);
}
public function testArrayPopFromString() {
$this
->setExpectedException(MigrateException::class, 'Input should be an array.');
$this->plugin
->transform('foo', $this->migrateExecutable, $this->row, 'destinationproperty');
}
}