MigrateUserMailTest.php

Same filename and directory in other branches
  1. 9 core/modules/user/tests/src/Kernel/Migrate/d7/MigrateUserMailTest.php
  2. 8.9.x core/modules/user/tests/src/Kernel/Migrate/d7/MigrateUserMailTest.php
  3. 10 core/modules/user/tests/src/Kernel/Migrate/d7/MigrateUserMailTest.php

Namespace

Drupal\Tests\user\Kernel\Migrate\d7

File

core/modules/user/tests/src/Kernel/Migrate/d7/MigrateUserMailTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\user\Kernel\Migrate\d7;

use Drupal\Tests\migrate_drupal\Kernel\d7\MigrateDrupal7TestBase;

/**
 * Migrates user mail configuration.
 *
 * @group user
 */
class MigrateUserMailTest extends MigrateDrupal7TestBase {
    
    /**
     * {@inheritdoc}
     */
    protected function setUp() : void {
        parent::setUp();
        $this->installConfig([
            'user',
        ]);
        $this->executeMigration('d7_user_mail');
    }
    
    /**
     * Tests the migration.
     */
    public function testMigration() : void {
        $config = $this->config('user.mail');
        $this->assertSame('Your account is approved!', $config->get('status_activated.subject'));
        $this->assertSame('Your account was activated, and there was much rejoicing.', $config->get('status_activated.body'));
        $this->assertSame('Fix your password', $config->get('password_reset.subject'));
        $this->assertSame("Nope! You're locked out forever.", $config->get('password_reset.body'));
        $this->assertSame('So long, bub', $config->get('cancel_confirm.subject'));
        $this->assertSame('The gates of Drupal are closed to you. Now you will work in the salt mines.', $config->get('cancel_confirm.body'));
        $this->assertSame('Gawd made you an account', $config->get('register_admin_created.subject'));
        $this->assertSame('...and it could be taken away.', $config->get('register_admin_created.body'));
        $this->assertSame('Welcome!', $config->get('register_no_approval_required.subject'));
        $this->assertSame('You can now log in if you can figure out how to use Drupal!', $config->get('register_no_approval_required.body'));
        $this->assertSame('Soon...', $config->get('register_pending_approval.subject'));
        $this->assertSame('...you will join our Circle. Let the Drupal flow through you.', $config->get('register_pending_approval.body'));
        $this->assertSame('BEGONE!', $config->get('status_blocked.subject'));
        $this->assertSame('You no longer please the robot overlords. Go to your room and chill out.', $config->get('status_blocked.body'));
    }

}

Classes

Title Deprecated Summary
MigrateUserMailTest Migrates user mail configuration.

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