Test deleting a style and choosing a replacement style.
function testStyleReplacement() {
// Create a new style.
$style_name = strtolower($this
->randomName(10));
$style_label = $this
->randomString();
$style = entity_create('image_style', array(
'name' => $style_name,
'label' => $style_label,
));
$style
->save();
$style_path = 'admin/config/media/image-styles/manage/';
// Create an image field that uses the new style.
$field_name = strtolower($this
->randomName(10));
$this
->createImageField($field_name, 'article');
entity_get_display('node', 'article', 'default')
->setComponent($field_name, array(
'type' => 'image',
'settings' => array(
'image_style' => $style_name,
),
))
->save();
// Create a new node with an image attached.
$test_image = current($this
->drupalGetTestFiles('image'));
$nid = $this
->uploadNodeImage($test_image, $field_name, 'article');
$node = node_load($nid);
// Test that image is displayed using newly created style.
$this
->drupalGet('node/' . $nid);
$this
->assertRaw(image_style_url($style_name, file_load($node->{$field_name}[Language::LANGCODE_NOT_SPECIFIED][0]['fid'])->uri), format_string('Image displayed using style @style.', array(
'@style' => $style_name,
)));
// Rename the style and make sure the image field is updated.
$new_style_name = strtolower($this
->randomName(10));
$new_style_label = $this
->randomString();
$edit = array(
'name' => $new_style_name,
'label' => $new_style_label,
);
$this
->drupalPost($style_path . $style_name, $edit, t('Update style'));
$this
->assertText(t('Changes to the style have been saved.'), format_string('Style %name was renamed to %new_name.', array(
'%name' => $style_name,
'%new_name' => $new_style_name,
)));
$this
->drupalGet('node/' . $nid);
$this
->assertRaw(image_style_url($new_style_name, file_load($node->{$field_name}[Language::LANGCODE_NOT_SPECIFIED][0]['fid'])->uri), 'Image displayed using style replacement style.');
// Delete the style and choose a replacement style.
$edit = array(
'replacement' => 'thumbnail',
);
$this
->drupalPost($style_path . $new_style_name . '/delete', $edit, t('Delete'));
$message = t('Style %name was deleted.', array(
'%name' => $new_style_label,
));
$this
->assertRaw($message);
$this
->drupalGet('node/' . $nid);
$this
->assertRaw(image_style_url('thumbnail', file_load($node->{$field_name}[Language::LANGCODE_NOT_SPECIFIED][0]['fid'])->uri), 'Image displayed using style replacement style.');
}