You are here

MigrateCommentFieldInstanceTest.php in Drupal 9

File

core/modules/comment/tests/src/Kernel/Migrate/d7/MigrateCommentFieldInstanceTest.php
View source
<?php

namespace Drupal\Tests\comment\Kernel\Migrate\d7;

use Drupal\field\Entity\FieldConfig;
use Drupal\Tests\migrate_drupal\Kernel\d7\MigrateDrupal7TestBase;

/**
 * Tests the migration of comment field instances from Drupal 7.
 *
 * @group comment
 * @group migrate_drupal_7
 */
class MigrateCommentFieldInstanceTest extends MigrateDrupal7TestBase {

  /**
   * {@inheritdoc}
   */
  protected static $modules = [
    'node',
    'comment',
    'text',
    'menu_ui',
  ];

  /**
   * {@inheritdoc}
   */
  protected function setUp() : void {
    parent::setUp();
    $this
      ->migrateContentTypes();
    $this
      ->migrateCommentTypes();
    $this
      ->executeMigrations([
      'd7_comment_field',
      'd7_comment_field_instance',
    ]);
  }

  /**
   * Asserts a comment field instance entity.
   *
   * @param string $bundle
   *   The bundle ID.
   * @param string $field_name
   *   The field name.
   * @param int $default_value
   *   The field's default_value setting.
   * @param int $default_mode
   *   The field's default_mode setting.
   * @param int $per_page
   *   The field's per_page setting.
   * @param bool $anonymous
   *   The field's anonymous setting.
   * @param int $form_location
   *   The field's form_location setting.
   * @param bool $preview
   *   The field's preview setting.
   */
  protected function assertEntity($bundle, $field_name, $default_value, $default_mode, $per_page, $anonymous, $form_location, $preview) {
    $entity = FieldConfig::load("node.{$bundle}.{$field_name}");
    $this
      ->assertInstanceOf(FieldConfig::class, $entity);
    $this
      ->assertSame('node', $entity
      ->getTargetEntityTypeId());
    $this
      ->assertSame('Comments', $entity
      ->label());
    $this
      ->assertTrue($entity
      ->isRequired());
    $this
      ->assertSame($bundle, $entity
      ->getTargetBundle());
    $this
      ->assertSame($field_name, $entity
      ->getFieldStorageDefinition()
      ->getName());
    $this
      ->assertSame($default_value, $entity
      ->get('default_value')[0]['status']);
    $this
      ->assertSame($default_mode, $entity
      ->getSetting('default_mode'));
    $this
      ->assertSame($per_page, $entity
      ->getSetting('per_page'));
    $this
      ->assertSame($anonymous, $entity
      ->getSetting('anonymous'));
    $this
      ->assertSame($form_location, $entity
      ->getSetting('form_location'));
    $this
      ->assertSame($preview, $entity
      ->getSetting('preview'));
  }

  /**
   * Tests the migrated fields.
   */
  public function testMigration() {
    $this
      ->assertEntity('page', 'comment_node_page', 0, 1, 50, 0, TRUE, 1);
    $this
      ->assertEntity('article', 'comment_node_article', 2, 1, 50, 0, TRUE, 1);
    $this
      ->assertEntity('blog', 'comment_node_blog', 2, 1, 50, 0, TRUE, 1);
    $this
      ->assertEntity('book', 'comment_node_book', 2, 1, 50, 0, TRUE, 1);
    $this
      ->assertEntity('forum', 'comment_forum', 2, 1, 50, 0, TRUE, 1);
    $this
      ->assertEntity('test_content_type', 'comment_node_test_content_type', 2, 1, 30, 0, TRUE, 1);
    $this
      ->assertEntity('et', 'comment_node_et', 2, 1, 50, 0, FALSE, 1);
  }

}

Classes

Namesort descending Description
MigrateCommentFieldInstanceTest Tests the migration of comment field instances from Drupal 7.