FieldSettingsTest.php in Zircon Profile 8
File
core/modules/field/tests/src/Unit/Plugin/migrate/process/d7/FieldSettingsTest.php
View source
<?php
namespace Drupal\Tests\field\Unit\Plugin\migrate\process\d7;
use Drupal\field\Plugin\migrate\process\d7\FieldSettings;
use Drupal\migrate\Entity\MigrationInterface;
use Drupal\migrate\MigrateExecutableInterface;
use Drupal\migrate\Row;
use Drupal\Tests\migrate\Unit\MigrateTestCase;
class FieldSettingsTest extends MigrateTestCase {
public function testTransformImageSettings() {
$migration = $this
->getMock(MigrationInterface::class);
$plugin = new FieldSettings([], 'd7_field_settings', [], $migration);
$executable = $this
->getMock(MigrateExecutableInterface::class);
$row = $this
->getMockBuilder(Row::class)
->disableOriginalConstructor()
->getMock();
$row
->expects($this
->atLeastOnce())
->method('getSourceProperty')
->willReturnMap([
[
'settings',
[
'default_image' => NULL,
],
],
[
'type',
'image',
],
]);
$value = $plugin
->transform([], $executable, $row, 'foo');
$this
->assertInternalType('array', $value);
$this
->assertSame('', $value['default_image']['uuid']);
}
}