UserCreateTest.php

Same filename and directory in other branches
  1. 9 core/modules/user/tests/src/Functional/UserCreateTest.php
  2. 10 core/modules/user/tests/src/Functional/UserCreateTest.php
  3. 11.x core/modules/user/tests/src/Functional/UserCreateTest.php

Namespace

Drupal\Tests\user\Functional

File

core/modules/user/tests/src/Functional/UserCreateTest.php

View source
<?php

namespace Drupal\Tests\user\Functional;

use Drupal\Core\Test\AssertMailTrait;
use Drupal\field\Entity\FieldConfig;
use Drupal\field\Entity\FieldStorageConfig;
use Drupal\Tests\BrowserTestBase;

/**
 * Tests the create user administration page.
 *
 * @group user
 */
class UserCreateTest extends BrowserTestBase {
    use AssertMailTrait {
        getMails as drupalGetMails;
    }
    
    /**
     * Modules to enable.
     *
     * @var array
     */
    public static $modules = [
        'image',
    ];
    
    /**
     * {@inheritdoc}
     */
    protected $defaultTheme = 'stark';
    
    /**
     * Create a user through the administration interface and ensure that it
     * displays in the user list.
     */
    public function testUserAdd() {
        $user = $this->drupalCreateUser([
            'administer users',
        ]);
        $this->drupalLogin($user);
        $this->assertEqual($user->getCreatedTime(), REQUEST_TIME, 'Creating a user sets default "created" timestamp.');
        $this->assertEqual($user->getChangedTime(), REQUEST_TIME, 'Creating a user sets default "changed" timestamp.');
        // Create a field.
        $field_name = 'test_field';
        FieldStorageConfig::create([
            'field_name' => $field_name,
            'entity_type' => 'user',
            'module' => 'image',
            'type' => 'image',
            'cardinality' => 1,
            'locked' => FALSE,
            'indexes' => [
                'target_id' => [
                    'target_id',
                ],
            ],
            'settings' => [
                'uri_scheme' => 'public',
            ],
        ])->save();
        FieldConfig::create([
            'field_name' => $field_name,
            'entity_type' => 'user',
            'label' => 'Picture',
            'bundle' => 'user',
            'description' => t('Your virtual face or picture.'),
            'required' => FALSE,
            'settings' => [
                'file_extensions' => 'png gif jpg jpeg',
                'file_directory' => 'pictures',
                'max_filesize' => '30 KB',
                'alt_field' => 0,
                'title_field' => 0,
                'max_resolution' => '85x85',
                'min_resolution' => '',
            ],
        ])->save();
        // Test user creation page for valid fields.
        $this->drupalGet('admin/people/create');
        $this->assertFieldbyId('edit-status-0', 0, 'The user status option Blocked exists.', 'User login');
        $this->assertFieldbyId('edit-status-1', 1, 'The user status option Active exists.', 'User login');
        $this->assertFieldByXPath('//input[@type="radio" and @id="edit-status-1" and @checked="checked"]', NULL, 'Default setting for user status is active.');
        // Test that browser autocomplete behavior does not occur.
        $this->assertNoRaw('data-user-info-from-browser', 'Ensure form attribute, data-user-info-from-browser, does not exist.');
        // Test that the password strength indicator displays.
        $config = $this->config('user.settings');
        $config->set('password_strength', TRUE)
            ->save();
        $this->drupalGet('admin/people/create');
        $this->assertRaw(t('Password strength:'), 'The password strength indicator is displayed.');
        $config->set('password_strength', FALSE)
            ->save();
        $this->drupalGet('admin/people/create');
        $this->assertNoRaw(t('Password strength:'), 'The password strength indicator is not displayed.');
        // We create two users, notifying one and not notifying the other, to
        // ensure that the tests work in both cases.
        foreach ([
            FALSE,
            TRUE,
        ] as $notify) {
            $name = $this->randomMachineName();
            $edit = [
                'name' => $name,
                'mail' => $this->randomMachineName() . '@example.com',
                'pass[pass1]' => $pass = $this->randomString(),
                'pass[pass2]' => $pass,
                'notify' => $notify,
            ];
            $this->drupalPostForm('admin/people/create', $edit, t('Create new account'));
            if ($notify) {
                $this->assertText(t('A welcome message with further instructions has been emailed to the new user @name.', [
                    '@name' => $edit['name'],
                ]), 'User created');
                $this->assertCount(1, $this->drupalGetMails(), 'Notification email sent');
            }
            else {
                $this->assertText(t('Created a new user account for @name. No email has been sent.', [
                    '@name' => $edit['name'],
                ]), 'User created');
                $this->assertCount(0, $this->drupalGetMails(), 'Notification email not sent');
            }
            $this->drupalGet('admin/people');
            $this->assertText($edit['name'], 'User found in list of users');
            $user = user_load_by_name($name);
            $this->assertTrue($user->isActive(), 'User is not blocked');
        }
        // Test that the password '0' is considered a password.
        // @see https://www.drupal.org/node/2563751.
        $name = $this->randomMachineName();
        $edit = [
            'name' => $name,
            'mail' => $this->randomMachineName() . '@example.com',
            'pass[pass1]' => 0,
            'pass[pass2]' => 0,
            'notify' => FALSE,
        ];
        $this->drupalPostForm('admin/people/create', $edit, t('Create new account'));
        $this->assertText("Created a new user account for {$name}. No email has been sent");
        $this->assertNoText('Password field is required');
    }

}

Classes

Title Deprecated Summary
UserCreateTest Tests the create user administration page.

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