function TextCckTest::testProcessFilteredTextFieldValues
Same name in this branch
- 8.9.x core/modules/text/tests/src/Unit/Migrate/TextCckTest.php \Drupal\Tests\text\Unit\Migrate\TextCckTest::testProcessFilteredTextFieldValues()
@covers ::processCckFieldValues
File
-
core/
modules/ text/ tests/ src/ Unit/ Plugin/ migrate/ cckfield/ TextCckTest.php, line 51
Class
- TextCckTest
- @coversDefaultClass \Drupal\text\Plugin\migrate\cckfield\TextField @group text @group legacy
Namespace
Drupal\Tests\text\Unit\Plugin\migrate\cckfieldCode
public function testProcessFilteredTextFieldValues() {
$field_info = [
'widget_type' => 'text_textfield',
];
$this->plugin
->processCckFieldValues($this->migration, 'body', $field_info);
$process = $this->migration
->getProcess();
$this->assertSame('sub_process', $process['plugin']);
$this->assertSame('body', $process['source']);
$this->assertSame('value', $process['process']['value']);
// Ensure that filter format IDs will be looked up in the filter format
// migrations.
$lookup = $process['process']['format'][2];
$this->assertSame('migration', $lookup['plugin']);
$this->assertContains('d6_filter_format', $lookup['migration']);
$this->assertContains('d7_filter_format', $lookup['migration']);
$this->assertSame('format', $lookup['source']);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.