You are here

function UserAccountFormFieldsTest::testInstallConfigureForm in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/user/src/Tests/UserAccountFormFieldsTest.php \Drupal\user\Tests\UserAccountFormFieldsTest::testInstallConfigureForm()

Tests the root user account form section in the "Configure site" form.

File

core/modules/user/src/Tests/UserAccountFormFieldsTest.php, line 31
Contains \Drupal\user\Tests\UserAccountFormFieldsTest.

Class

UserAccountFormFieldsTest
Verifies that the field order in user account forms is compatible with password managers of web browsers.

Namespace

Drupal\user\Tests

Code

function testInstallConfigureForm() {
  require_once \Drupal::root() . '/core/includes/install.core.inc';
  require_once \Drupal::root() . '/core/includes/install.inc';
  $install_state = install_state_defaults();
  $form_state = new FormState();
  $form_state
    ->addBuildInfo('args', [
    &$install_state,
  ]);
  $form = $this->container
    ->get('form_builder')
    ->buildForm('Drupal\\Core\\Installer\\Form\\SiteConfigureForm', $form_state);

  // Verify name and pass field order.
  $this
    ->assertFieldOrder($form['admin_account']['account']);

  // Verify that web browsers may autocomplete the email value and
  // autofill/prefill the name and pass values.
  foreach (array(
    'mail',
    'name',
    'pass',
  ) as $key) {
    $this
      ->assertFalse(isset($form['account'][$key]['#attributes']['autocomplete']), "'{$key}' field: 'autocomplete' attribute not found.");
  }
}