
| Current Path : /var/www/html/strat/web/core/modules/text/tests/src/Unit/Plugin/migrate/field/d7/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/strat/web/core/modules/text/tests/src/Unit/Plugin/migrate/field/d7/TextFieldTest.php |
<?php
declare(strict_types=1);
namespace Drupal\Tests\text\Unit\Plugin\migrate\field\d7;
use Drupal\migrate\Row;
use Drupal\Tests\UnitTestCase;
use Drupal\text\Plugin\migrate\field\d7\TextField;
/**
* @coversDefaultClass \Drupal\text\Plugin\migrate\field\d7\TextField
* @group text
*/
class TextFieldTest extends UnitTestCase {
/**
* @var \Drupal\migrate_drupal\Plugin\MigrateFieldInterface
*/
protected $plugin;
/**
* {@inheritdoc}
*/
protected function setUp(): void {
parent::setUp();
$this->plugin = new TextField([], 'text', []);
}
/**
* Data provider for testGetFieldFormatterType().
*/
public static function getFieldFormatterTypeProvider() {
return [
['text', 'text_plain', 'string'],
['text_long', 'text_default', 'basic_string'],
['text_long', 'text_plain', 'basic_string'],
];
}
/**
* @covers ::getFieldFormatterType
* @covers ::getFieldType
* @dataProvider getFieldFormatterTypeProvider
*/
public function testGetFieldFormatterType($type, $formatter_type, $expected): void {
$row = new Row();
$row->setSourceProperty('type', $type);
$row->setSourceProperty('formatter/type', $formatter_type);
$row->setSourceProperty('instances', [
[
'data' => serialize([
'settings' => [
'text_processing' => '0',
],
]),
],
]);
$this->assertEquals($expected, $this->plugin->getFieldFormatterType($row));
}
}