Helper function for testTextfieldWidgetsFormatted().
function _testTextfieldWidgetsFormatted($field_type, $widget_type) {
// Setup a field and instance
$this->field_name = drupal_strtolower($this
->randomName());
$this->field = array(
'field_name' => $this->field_name,
'type' => $field_type,
);
field_create_field($this->field);
$this->instance = array(
'field_name' => $this->field_name,
'entity_type' => 'entity_test',
'bundle' => 'entity_test',
'label' => $this
->randomName() . '_label',
'settings' => array(
'text_processing' => TRUE,
),
);
field_create_instance($this->instance);
entity_get_form_display('entity_test', 'entity_test', 'default')
->setComponent($this->field_name, array(
'type' => $widget_type,
))
->save();
entity_get_display('entity_test', 'entity_test', 'full')
->setComponent($this->field_name)
->save();
$langcode = Language::LANGCODE_NOT_SPECIFIED;
// Disable all text formats besides the plain text fallback format.
$this
->drupalLogin($this->admin_user);
foreach (filter_formats() as $format) {
if ($format->format != filter_fallback_format()) {
$this
->drupalPost('admin/config/content/formats/' . $format->format . '/disable', array(), t('Disable'));
}
}
$this
->drupalLogin($this->web_user);
// 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("{$this->field_name}[{$langcode}][0][value]", '', 'Widget is displayed');
$this
->assertNoFieldByName("{$this->field_name}[{$langcode}][0][format]", '', 'Format selector is not displayed');
// Submit with data that should be filtered.
$value = '<em>' . $this
->randomName() . '</em>';
$edit = array(
'user_id' => 1,
'name' => $this
->randomName(),
"{$this->field_name}[{$langcode}][0][value]" => $value,
);
$this
->drupalPost(NULL, $edit, t('Save'));
preg_match('|entity_test/manage/(\\d+)/edit|', $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
->entityType(), $entity
->bundle(), 'full');
$entity->content = field_attach_view($entity, $display);
$this->content = drupal_render($entity->content);
$this
->assertNoRaw($value, 'HTML tags are not displayed.');
$this
->assertRaw(check_plain($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->admin_user);
$edit = array(
'format' => drupal_strtolower($this
->randomName()),
'name' => $this
->randomName(),
);
$this
->drupalPost('admin/config/content/formats/add', $edit, t('Save configuration'));
filter_formats_reset();
$this
->checkPermissions(array(), TRUE);
$format = filter_format_load($edit['format']);
$format_id = $format->format;
$permission = filter_permission_name($format);
$rid = $this->web_user->roles[0];
user_role_grant_permissions($rid, array(
$permission,
));
$this
->drupalLogin($this->web_user);
// Display edition form.
// We should now have a 'text format' selector.
$this
->drupalGet('entity_test/manage/' . $id . '/edit');
$this
->assertFieldByName("{$this->field_name}[{$langcode}][0][value]", NULL, 'Widget is displayed');
$this
->assertFieldByName("{$this->field_name}[{$langcode}][0][format]", NULL, 'Format selector is displayed');
// Edit and change the text format to the new one that was created.
$edit = array(
'user_id' => 1,
'name' => $this
->randomName(),
"{$this->field_name}[{$langcode}][0][format]" => $format_id,
);
$this
->drupalPost(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('plugin.manager.entity')
->getStorageController('entity_test')
->resetCache(array(
$id,
));
$entity = entity_load('entity_test', $id);
$display = entity_get_display($entity
->entityType(), $entity
->bundle(), 'full');
$entity->content = field_attach_view($entity, $display);
$this->content = drupal_render($entity->content);
$this
->assertRaw($value, 'Value is displayed unfiltered');
}