You are here

MigrateContactSettingsTest.php in Drupal 9

File

core/modules/contact/tests/src/Kernel/Migrate/d6/MigrateContactSettingsTest.php
View source
<?php

namespace Drupal\Tests\contact\Kernel\Migrate\d6;

use Drupal\Tests\SchemaCheckTestTrait;
use Drupal\Tests\migrate_drupal\Kernel\d6\MigrateDrupal6TestBase;

/**
 * Upgrade variables to contact.settings.yml.
 *
 * @group migrate_drupal_6
 */
class MigrateContactSettingsTest extends MigrateDrupal6TestBase {
  use SchemaCheckTestTrait;

  /**
   * {@inheritdoc}
   */
  protected static $modules = [
    'contact',
  ];

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

  /**
   * Tests migration of contact variables to contact.settings.yml.
   */
  public function testContactSettings() {
    $config = $this
      ->config('contact.settings');
    $this
      ->assertTrue($config
      ->get('user_default_enabled'));
    $this
      ->assertSame(3, $config
      ->get('flood.limit'));
    $this
      ->assertSame('some_other_category', $config
      ->get('default_form'));
    $this
      ->assertConfigSchema(\Drupal::service('config.typed'), 'contact.settings', $config
      ->get());
  }

}

Classes

Namesort descending Description
MigrateContactSettingsTest Upgrade variables to contact.settings.yml.