function EmailFieldTest::testEmailField

Tests e-mail field.

File

drupal/core/modules/field/modules/email/lib/Drupal/email/Tests/EmailFieldTest.php, line 46
Definition of Drupal\email\Tests\EmailFieldTest.

Class

EmailFieldTest
Tests e-mail field functionality.

Namespace

Drupal\email\Tests

Code

function testEmailField() {

  // Create a field with settings to validate.
  $this->field = array(
    'field_name' => drupal_strtolower($this
      ->randomName()),
    'type' => 'email',
  );
  field_create_field($this->field);
  $this->instance = array(
    'field_name' => $this->field['field_name'],
    'entity_type' => 'test_entity',
    'bundle' => 'test_bundle',
    'widget' => array(
      'type' => 'email_default',
      'settings' => array(
        'placeholder' => 'example@example.com',
      ),
    ),
    'display' => array(
      'full' => array(
        'type' => 'email_mailto',
      ),
    ),
  );
  field_create_instance($this->instance);

  // Display creation form.
  $this
    ->drupalGet('test-entity/add/test_bundle');
  $langcode = LANGUAGE_NOT_SPECIFIED;
  $this
    ->assertFieldByName("{$this->field['field_name']}[{$langcode}][0][value]", '', 'Widget found.');
  $this
    ->assertRaw('placeholder="example@example.com"');

  // Submit a valid e-mail address and ensure it is accepted.
  $value = 'test@example.com';
  $edit = array(
    "{$this->field['field_name']}[{$langcode}][0][value]" => $value,
  );
  $this
    ->drupalPost(NULL, $edit, t('Save'));
  preg_match('|test-entity/manage/(\\d+)/edit|', $this->url, $match);
  $id = $match[1];
  $this
    ->assertRaw(t('test_entity @id has been created.', array(
    '@id' => $id,
  )));
  $this
    ->assertRaw($value);

  // Verify that a mailto link is displayed.
  $entity = field_test_entity_test_load($id);
  $entity->content = field_attach_view('test_entity', $entity, 'full');
  $this
    ->drupalSetContent(drupal_render($entity->content));
  $this
    ->assertLinkByHref('mailto:test@example.com');
}