function TextFieldTest::_testTextfieldWidgetsFormatted in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/modules/text/src/Tests/TextFieldTest.php \Drupal\text\Tests\TextFieldTest::_testTextfieldWidgetsFormatted()
Helper function for testTextfieldWidgetsFormatted().
1 call to TextFieldTest::_testTextfieldWidgetsFormatted()
- TextFieldTest::testTextfieldWidgetsFormatted in core/
modules/ text/ src/ Tests/ TextFieldTest.php - Test widgets + 'formatted_text' setting.
File
- core/
modules/ text/ src/ Tests/ TextFieldTest.php, line 148 - Contains \Drupal\text\Tests\TextFieldTest.
Class
- TextFieldTest
- Tests the creation of text fields.
Namespace
Drupal\text\TestsCode
function _testTextfieldWidgetsFormatted($field_type, $widget_type) {
/** @var \Drupal\Core\Render\RendererInterface $renderer */
$renderer = $this->container
->get('renderer');
// Create a field.
$field_name = Unicode::strtolower($this
->randomMachineName());
$field_storage = entity_create('field_storage_config', array(
'field_name' => $field_name,
'entity_type' => 'entity_test',
'type' => $field_type,
));
$field_storage
->save();
entity_create('field_config', array(
'field_storage' => $field_storage,
'bundle' => 'entity_test',
'label' => $this
->randomMachineName() . '_label',
))
->save();
entity_get_form_display('entity_test', 'entity_test', 'default')
->setComponent($field_name, array(
'type' => $widget_type,
))
->save();
entity_get_display('entity_test', 'entity_test', 'full')
->setComponent($field_name)
->save();
// Disable all text formats besides the plain text fallback format.
$this
->drupalLogin($this->adminUser);
foreach (filter_formats() as $format) {
if (!$format
->isFallbackFormat()) {
$this
->drupalPostForm('admin/config/content/formats/manage/' . $format
->id() . '/disable', array(), t('Disable'));
}
}
$this
->drupalLogin($this->webUser);
// Display the creation form. Since the user only has access to one format,
// no format selector will be displayed.
$this
->drupalGet('entity_test/add');
$this
->assertFieldByName("{$field_name}[0][value]", '', 'Widget is displayed');
$this
->assertNoFieldByName("{$field_name}[0][format]", '', 'Format selector is not displayed');
// Submit with data that should be filtered.
$value = '<em>' . $this
->randomMachineName() . '</em>';
$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,
)), 'Entity was created');
// Display the entity.
$entity = entity_load('entity_test', $id);
$display = entity_get_display($entity
->getEntityTypeId(), $entity
->bundle(), 'full');
$content = $display
->build($entity);
$this
->setRawContent($renderer
->renderRoot($content));
$this
->assertNoRaw($value, 'HTML tags are not displayed.');
$this
->assertEscaped($value, 'Escaped HTML is displayed correctly.');
// Create a new text format that does not escape HTML, and grant the user
// access to it.
$this
->drupalLogin($this->adminUser);
$edit = array(
'format' => Unicode::strtolower($this
->randomMachineName()),
'name' => $this
->randomMachineName(),
);
$this
->drupalPostForm('admin/config/content/formats/add', $edit, t('Save configuration'));
filter_formats_reset();
$format = entity_load('filter_format', $edit['format']);
$format_id = $format
->id();
$permission = $format
->getPermissionName();
$roles = $this->webUser
->getRoles();
$rid = $roles[0];
user_role_grant_permissions($rid, array(
$permission,
));
$this
->drupalLogin($this->webUser);
// Display edition form.
// We should now have a 'text format' selector.
$this
->drupalGet('entity_test/manage/' . $id . '/edit');
$this
->assertFieldByName("{$field_name}[0][value]", NULL, 'Widget is displayed');
$this
->assertFieldByName("{$field_name}[0][format]", NULL, 'Format selector is displayed');
// Edit and change the text format to the new one that was created.
$edit = array(
"{$field_name}[0][format]" => $format_id,
);
$this
->drupalPostForm(NULL, $edit, t('Save'));
$this
->assertText(t('entity_test @id has been updated.', array(
'@id' => $id,
)), 'Entity was updated');
// Display the entity.
$this->container
->get('entity.manager')
->getStorage('entity_test')
->resetCache(array(
$id,
));
$entity = entity_load('entity_test', $id);
$display = entity_get_display($entity
->getEntityTypeId(), $entity
->bundle(), 'full');
$content = $display
->build($entity);
$this
->setRawContent($renderer
->renderRoot($content));
$this
->assertRaw($value, 'Value is displayed unfiltered');
}