function MigrateUserSettingsTest::testMigration

Same name and namespace in other branches
  1. 9 core/modules/user/tests/src/Kernel/Migrate/d7/MigrateUserSettingsTest.php \Drupal\Tests\user\Kernel\Migrate\d7\MigrateUserSettingsTest::testMigration()
  2. 11.x core/modules/user/tests/src/Kernel/Migrate/d7/MigrateUserSettingsTest.php \Drupal\Tests\user\Kernel\Migrate\d7\MigrateUserSettingsTest::testMigration()

Tests the migration.

File

core/modules/user/tests/src/Kernel/Migrate/d7/MigrateUserSettingsTest.php, line 33

Class

MigrateUserSettingsTest
Tests migration of user settings.

Namespace

Drupal\Tests\user\Kernel\Migrate\d7

Code

public function testMigration() : void {
  $config = $this->config('user.settings');
  $this->assertTrue($config->get('notify.status_blocked'));
  $this->assertTrue($config->get('notify.status_activated'));
  $this->assertTrue($config->get('verify_mail'));
  $this->assertSame(UserInterface::REGISTER_VISITORS_ADMINISTRATIVE_APPROVAL, $config->get('register'));
  $this->assertSame('Anonymous', $config->get('anonymous'));
  // Tests migration of user_register using the AccountSettingsForm.
  // Map source values to destination values.
  $user_register_map = [
    [
      0,
      UserInterface::REGISTER_ADMINISTRATORS_ONLY,
    ],
    [
      1,
      UserInterface::REGISTER_VISITORS,
    ],
    [
      2,
      UserInterface::REGISTER_VISITORS_ADMINISTRATIVE_APPROVAL,
    ],
  ];
  foreach ($user_register_map as $map) {
    // Tests migration of user_register = 1.
    Database::getConnection('default', 'migrate')->update('variable')
      ->fields([
      'value' => serialize($map[0]),
    ])
      ->condition('name', 'user_register')
      ->execute();
    /** @var \Drupal\migrate\Plugin\MigrationInterface $migration */
    $migration = $this->getMigration('d7_user_settings');
    // Indicate we're rerunning a migration that's already run.
    $migration->getIdMap()
      ->prepareUpdate();
    $this->executeMigration($migration);
    $form = $this->container
      ->get('form_builder')
      ->getForm(AccountSettingsForm::create($this->container));
    $this->assertSame($map[1], $form['registration_cancellation']['user_register']['#value']);
  }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.