You are here

function ArbitraryRebuildTest::testUserRegistrationMultipleField in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/system/src/Tests/Form/ArbitraryRebuildTest.php \Drupal\system\Tests\Form\ArbitraryRebuildTest::testUserRegistrationMultipleField()

Tests a rebuild caused by a multiple value field.

File

core/modules/system/src/Tests/Form/ArbitraryRebuildTest.php, line 68
Contains \Drupal\system\Tests\Form\ArbitraryRebuildTest.

Class

ArbitraryRebuildTest
Tests altering forms to be rebuilt so there are multiple steps.

Namespace

Drupal\system\Tests\Form

Code

function testUserRegistrationMultipleField() {
  $edit = array(
    'name' => 'foo',
    'mail' => 'bar@example.com',
  );
  $this
    ->drupalPostForm('user/register', $edit, t('Add another item'));
  $this
    ->assertText('Test a multiple valued field', 'Form has been rebuilt.');
  $this
    ->assertFieldByName('name', 'foo', 'Entered username has been kept.');
  $this
    ->assertFieldByName('mail', 'bar@example.com', 'Entered mail address has been kept.');
}