You are here

TextFieldTest.php in Drupal 9

File

core/modules/text/tests/src/Unit/Plugin/migrate/field/d7/TextFieldTest.php
View source
<?php

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 {
    $this->plugin = new TextField([], 'text', []);
  }

  /**
   * Data provider for getFieldFormatterType().
   */
  public function getFieldFormatterTypeProvider() {
    return [
      [
        'text',
        'text_plain',
        'string',
      ],
      [
        'text_long',
        'text_default',
        'basic_string',
      ],
    ];
  }

  /**
   * @covers ::getFieldFormatterType
   * @covers ::getFieldType
   * @dataProvider getFieldFormatterTypeProvider
   */
  public function testGetFieldType($type, $formatter_type, $expected) {
    $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));
  }

}

Classes

Namesort descending Description
TextFieldTest @coversDefaultClass \Drupal\text\Plugin\migrate\field\d7\TextField @group text