View source
<?php
namespace Drupal\Tests\file\Unit\Plugin\migrate\field\d6;
use Drupal\migrate\Plugin\MigrationInterface;
use Drupal\migrate\Row;
use Drupal\Tests\UnitTestCase;
use Drupal\file\Plugin\migrate\field\d6\FileField;
use Prophecy\Argument;
class FileFieldTest extends UnitTestCase {
protected $plugin;
protected $migration;
protected function setUp() : void {
$this->plugin = new FileField([], 'file', []);
$migration = $this
->prophesize(MigrationInterface::class);
$migration
->mergeProcessOfProperty(Argument::type('string'), Argument::type('array'))
->will(function ($arguments) use ($migration) {
$migration
->getProcess()
->willReturn($arguments[1]);
});
$this->migration = $migration
->reveal();
}
public function testDefineValueProcessPipeline($method = 'defineValueProcessPipeline') {
$this->plugin
->{$method}($this->migration, 'field_name', []);
$expected = [
'plugin' => 'd6_field_file',
'source' => 'field_name',
];
$this
->assertSame($expected, $this->migration
->getProcess());
}
public function getFieldTypeProvider() {
return [
[
'image',
'imagefield_widget',
],
[
'file',
'filefield_widget',
],
[
'file',
'x_widget',
],
];
}
public function testGetFieldType($expected_type, $widget_type, array $settings = []) {
$row = new Row();
$row
->setSourceProperty('widget_type', $widget_type);
$row
->setSourceProperty('global_settings', $settings);
$this
->assertSame($expected_type, $this->plugin
->getFieldType($row));
}
}