function EmailFieldTest::testEmailField in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/modules/field/src/Tests/Email/EmailFieldTest.php \Drupal\field\Tests\Email\EmailFieldTest::testEmailField()
Tests email field.
File
- core/
modules/ field/ src/ Tests/ Email/ EmailFieldTest.php, line 54 - Contains \Drupal\field\Tests\Email\EmailFieldTest.
Class
- EmailFieldTest
- Tests email field functionality.
Namespace
Drupal\field\Tests\EmailCode
function testEmailField() {
// Create a field with settings to validate.
$field_name = Unicode::strtolower($this
->randomMachineName());
$this->fieldStorage = entity_create('field_storage_config', array(
'field_name' => $field_name,
'entity_type' => 'entity_test',
'type' => 'email',
));
$this->fieldStorage
->save();
$this->field = entity_create('field_config', array(
'field_storage' => $this->fieldStorage,
'bundle' => 'entity_test',
));
$this->field
->save();
// Create a form display for the default form mode.
entity_get_form_display('entity_test', 'entity_test', 'default')
->setComponent($field_name, array(
'type' => 'email_default',
'settings' => array(
'placeholder' => 'example@example.com',
),
))
->save();
// Create a display for the full view mode.
entity_get_display('entity_test', 'entity_test', 'full')
->setComponent($field_name, array(
'type' => 'email_mailto',
))
->save();
// Display creation form.
$this
->drupalGet('entity_test/add');
$this
->assertFieldByName("{$field_name}[0][value]", '', 'Widget found.');
$this
->assertRaw('placeholder="example@example.com"');
// Submit a valid email address and ensure it is accepted.
$value = 'test@example.com';
$edit = array(
"{$field_name}[0][value]" => $value,
);
$this
->drupalPostForm(NULL, $edit, t('Save'));
preg_match('|entity_test/manage/(\\d+)|', $this->url, $match);
$id = $match[1];
$this
->assertText(t('entity_test @id has been created.', array(
'@id' => $id,
)));
$this
->assertRaw($value);
// Verify that a mailto link is displayed.
$entity = entity_load('entity_test', $id);
$display = entity_get_display($entity
->getEntityTypeId(), $entity
->bundle(), 'full');
$content = $display
->build($entity);
$this
->setRawContent(\Drupal::service('renderer')
->renderRoot($content));
$this
->assertLinkByHref('mailto:test@example.com');
}