Skip to content
Snippets Groups Projects
Commit 4d9ce53b authored by Angie Byron's avatar Angie Byron
Browse files

Issue #2590105 by webflo, phenaproxima, snehi, alexpott: Fix undefined...

Issue #2590105 by webflo, phenaproxima, snehi, alexpott: Fix undefined variable in d6_field migration
parent 6a3f1271
No related branches found
No related tags found
No related merge requests found
......@@ -44,6 +44,7 @@ public function transform($value, MigrateExecutableInterface $migrate_executable
public function getSettings($field_type, $global_settings) {
$max_length = isset($global_settings['max_length']) ? $global_settings['max_length'] : '';
$max_length = empty($max_length) ? 255 : $max_length;
$allowed_values = [];
if (isset($global_settings['allowed_values'])) {
$list = explode("\n", $global_settings['allowed_values']);
$list = array_map('trim', $list);
......@@ -62,9 +63,6 @@ public function getSettings($field_type, $global_settings) {
$allowed_values = $list;
}
}
else {
$allowed_values = '';
}
$settings = array(
'text' => array(
......
<?php
/**
* @file
* Contains \Drupal\Tests\field\Unit\Plugin\migrate\process\d6\FieldSettingsTest.
*/
namespace Drupal\Tests\field\Unit\Plugin\migrate\process\d6;
use Drupal\field\Plugin\migrate\process\d6\FieldSettings;
use Drupal\migrate\Entity\MigrationInterface;
use Drupal\migrate\MigrateExecutableInterface;
use Drupal\migrate\Row;
use Drupal\Tests\UnitTestCase;
/**
* @coversDefaultClass \Drupal\field\Plugin\migrate\process\d6\FieldSettings
* @group field
*/
class FieldSettingsTest extends UnitTestCase {
/**
* @covers ::getSettings
*
* @dataProvider getSettingsProvider
*/
public function testGetSettings($field_type, $field_settings, $allowed_values) {
$migration = $this->getMock(MigrationInterface::class);
$plugin = new FieldSettings([], 'd6_field_settings', [], $migration);
$executable = $this->getMock(MigrateExecutableInterface::class);
$row = $this->getMockBuilder(Row::class)
->disableOriginalConstructor()
->getMock();
$result = $plugin->transform([$field_type, $field_settings], $executable, $row, 'foo');
$this->assertSame($allowed_values, $result['allowed_values']);
}
/**
* Provides field settings for testGetSettings().
*/
public function getSettingsProvider() {
return array(
array(
'list_integer',
array('allowed_values' => "1|One\n2|Two\n3"),
array(
'1' => 'One',
'2' => 'Two',
'3' => '3',
),
),
array(
'list_string',
array('allowed_values' => NULL),
array(),
),
array(
'list_float',
array('allowed_values' => ""),
array(),
),
array(
'boolean',
array(),
array(),
),
);
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment