class UserLanguageCreationTest in Drupal 10
Same name and namespace in other branches
- 8 core/modules/user/tests/src/Functional/UserLanguageCreationTest.php \Drupal\Tests\user\Functional\UserLanguageCreationTest
- 9 core/modules/user/tests/src/Functional/UserLanguageCreationTest.php \Drupal\Tests\user\Functional\UserLanguageCreationTest
Tests whether proper language is stored for new users and access to language selector.
@group user
Hierarchy
- class \Drupal\Tests\BrowserTestBase extends \PHPUnit\Framework\TestCase uses \Drupal\Tests\PhpUnitCompatibilityTrait, \Symfony\Bridge\PhpUnit\ExpectDeprecationTrait, FunctionalTestSetupTrait, TestSetupTrait, BlockCreationTrait, ConfigTestTrait, ExtensionListTestTrait, ContentTypeCreationTrait, NodeCreationTrait, RandomGeneratorTrait, TestRequirementsTrait, PhpUnitWarnings, UiHelperTrait, UserCreationTrait, XdebugRequestTrait- class \Drupal\Tests\user\Functional\UserLanguageCreationTest
 
Expanded class hierarchy of UserLanguageCreationTest
File
- core/modules/ user/ tests/ src/ Functional/ UserLanguageCreationTest.php, line 14 
Namespace
Drupal\Tests\user\FunctionalView source
class UserLanguageCreationTest extends BrowserTestBase {
  /**
   * Modules to enable.
   *
   * @var array
   */
  protected static $modules = [
    'user',
    'language',
  ];
  /**
   * {@inheritdoc}
   */
  protected $defaultTheme = 'stark';
  /**
   * Functional test for language handling during user creation.
   */
  public function testLocalUserCreation() {
    // User to add and remove language and create new users.
    $admin_user = $this
      ->drupalCreateUser([
      'administer languages',
      'access administration pages',
      'administer users',
    ]);
    $this
      ->drupalLogin($admin_user);
    // Add predefined language.
    $langcode = 'fr';
    ConfigurableLanguage::createFromLangcode($langcode)
      ->save();
    // Set language negotiation.
    $edit = [
      'language_interface[enabled][language-url]' => TRUE,
    ];
    $this
      ->drupalGet('admin/config/regional/language/detection');
    $this
      ->submitForm($edit, 'Save settings');
    $this
      ->assertSession()
      ->pageTextContains('Language detection configuration saved.');
    // Check if the language selector is available on admin/people/create and
    // set to the currently active language.
    $this
      ->drupalGet($langcode . '/admin/people/create');
    $this
      ->assertTrue($this
      ->assertSession()
      ->optionExists("edit-preferred-langcode", $langcode)
      ->isSelected());
    // Create a user with the admin/people/create form and check if the correct
    // language is set.
    $username = $this
      ->randomMachineName(10);
    $edit = [
      'name' => $username,
      'mail' => $this
        ->randomMachineName(4) . '@example.com',
      'pass[pass1]' => $username,
      'pass[pass2]' => $username,
    ];
    $this
      ->drupalGet($langcode . '/admin/people/create');
    $this
      ->submitForm($edit, 'Create new account');
    $user = user_load_by_name($username);
    $this
      ->assertEquals($langcode, $user
      ->getPreferredLangcode(), 'New user has correct preferred language set.');
    $this
      ->assertEquals($langcode, $user
      ->language()
      ->getId(), 'New user has correct profile language set.');
    // Register a new user and check if the language selector is hidden.
    $this
      ->drupalLogout();
    $this
      ->drupalGet($langcode . '/user/register');
    $this
      ->assertSession()
      ->fieldNotExists('language[fr]');
    $username = $this
      ->randomMachineName(10);
    $edit = [
      'name' => $username,
      'mail' => $this
        ->randomMachineName(4) . '@example.com',
    ];
    $this
      ->drupalGet($langcode . '/user/register');
    $this
      ->submitForm($edit, 'Create new account');
    $user = user_load_by_name($username);
    $this
      ->assertEquals($langcode, $user
      ->getPreferredLangcode(), 'New user has correct preferred language set.');
    $this
      ->assertEquals($langcode, $user
      ->language()
      ->getId(), 'New user has correct profile language set.');
    // Test that the admin can use the language selector and if the correct
    // language is saved.
    $user_edit = $langcode . '/user/' . $user
      ->id() . '/edit';
    $this
      ->drupalLogin($admin_user);
    $this
      ->drupalGet($user_edit);
    $this
      ->assertTrue($this
      ->assertSession()
      ->optionExists("edit-preferred-langcode", $langcode)
      ->isSelected());
    // Set passRaw so we can log in the new user.
    $user->passRaw = $this
      ->randomMachineName(10);
    $edit = [
      'pass[pass1]' => $user->passRaw,
      'pass[pass2]' => $user->passRaw,
    ];
    $this
      ->drupalGet($user_edit);
    $this
      ->submitForm($edit, 'Save');
    $this
      ->drupalLogin($user);
    $this
      ->drupalGet($user_edit);
    $this
      ->assertTrue($this
      ->assertSession()
      ->optionExists("edit-preferred-langcode", $langcode)
      ->isSelected());
  }
}