Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / config_translation / tests / src / Kernel / Migrate / d7 / MigrateUserConfigsTranslationTest.php
diff --git a/web/core/modules/config_translation/tests/src/Kernel/Migrate/d7/MigrateUserConfigsTranslationTest.php b/web/core/modules/config_translation/tests/src/Kernel/Migrate/d7/MigrateUserConfigsTranslationTest.php
new file mode 100644 (file)
index 0000000..85d6867
--- /dev/null
@@ -0,0 +1,74 @@
+<?php
+
+namespace Drupal\Tests\config_translation\Kernel\Migrate\d7;
+
+use Drupal\Tests\SchemaCheckTestTrait;
+use Drupal\Tests\migrate_drupal\Kernel\d7\MigrateDrupal7TestBase;
+
+/**
+ * Test migration of i18n user variables.
+ *
+ * @group migrate_drupal_7
+ */
+class MigrateUserConfigsTranslationTest extends MigrateDrupal7TestBase {
+
+  use SchemaCheckTestTrait;
+
+  /**
+   * {@inheritdoc}
+   */
+  public static $modules = [
+    'language',
+    'locale',
+    'config_translation',
+    // Required for translation migrations.
+    'migrate_drupal_multilingual',
+  ];
+
+  /**
+   * {@inheritdoc}
+   */
+  protected function setUp() {
+    parent::setUp();
+    $this->installSchema('locale', [
+      'locales_source',
+      'locales_target',
+      'locales_location',
+    ]);
+    $this->executeMigrations([
+      'd7_user_mail_translation',
+      'd7_user_settings_translation',
+    ]);
+  }
+
+  /**
+   * Tests migration of i18n user variables to user.mail and user.settings.
+   */
+  public function testUserConfig() {
+    // Tests migration of i18n user variables to user.mail.yml.
+    $language_manager = \Drupal::service('language_manager');
+    $config = $language_manager->getLanguageConfigOverride('is', 'user.mail');
+    $this->assertSame('is - Are you sure?', $config->get('cancel_confirm.subject'));
+    $this->assertSame('is - A little birdie said you wanted to cancel your account.', $config->get('cancel_confirm.body'));
+    $this->assertSame('is - Fix your password', $config->get('password_reset.subject'));
+    $this->assertSame("is - Nope! You're locked out forever.", $config->get('password_reset.body'));
+    $this->assertSame('is - Gawd made you an account', $config->get('register_admin_created.subject'));
+    $this->assertSame("is - ...and she could take it away.\r\n[site:name], [site:url]", $config->get('register_admin_created.body'));
+    $this->assertSame('is - Welcome!', $config->get('register_no_approval_required.subject'));
+    $this->assertSame('is - You can now log in if you can figure out how to use Drupal!', $config->get('register_no_approval_required.body'));
+    $this->assertSame('is - Soon...', $config->get('register_pending_approval.subject'));
+    $this->assertSame('is - ...you will join our Circle. Let the Drupal flow through you.', $config->get('register_pending_approval.body'));
+    $this->assertSame('is - Your account is approved!', $config->get('status_activated.subject'));
+    $this->assertSame('is - Your account was activated, and there was much rejoicing.', $config->get('status_activated.body'));
+    $this->assertSame('is - BEGONE!', $config->get('status_blocked.subject'));
+    $this->assertSame('is - You no longer please the robot overlords. Go to your room and chill out.', $config->get('status_blocked.body'));
+    $this->assertSame('is - So long, bub', $config->get('status_canceled.subject'));
+    $this->assertSame('is - The gates of Drupal are closed to you. Now you will work in the salt mines.', $config->get('status_canceled.body'));
+    $this->assertConfigSchema(\Drupal::service('config.typed'), 'user.mail', $config->get());
+
+    // Tests migration of i18n user variables to user.settings.yml.
+    $config = $language_manager->getLanguageConfigOverride('is', 'user.settings');
+    $this->assertSame('is - anonymous', $config->get('anonymous'));
+  }
+
+}