Skip to content
Snippets Groups Projects
Commit 33143c7c authored by catch's avatar catch
Browse files

Issue #3447286 by narendraR, smustgrave: Add validation constraints to image.style.*

parent 2e96edba
No related branches found
No related tags found
30 merge requests!11131[10.4.x-only-DO-NOT-MERGE]: Issue ##2842525 Ajax attached to Views exposed filter form does not trigger callbacks,!9470[10.3.x-only-DO-NOT-MERGE]: #3331771 Fix file_get_contents(): Passing null to parameter,!8736Update the Documention As per the Function uses.,!8540Issue #3457061: Bootstrap Modal dialog Not closing after 10.3.0 Update,!8528Issue #3456871 by Tim Bozeman: Support NULL services,!8513Issue #3453786: DefaultSelection should document why values for target_bundles NULL and [] behave as they do,!8373Issue #3427374 by danflanagan8, Vighneshh: taxonomy_tid ViewsArgumentDefault...,!8256Issue #3445896 by mstrelan, mondrake: PHPUnit\Runner\ErrorHandler::__construct...,!8126Added escape fucntionality on admintoolbar close icon,!7927Issue #3445425: \Drupal\Core\Template\Attribute should implement Countable interface,!3878Removed unused condition head title for views,!3818Issue #2140179: $entity->original gets stale between updates,!3742Issue #3328429: Create item list field formatter for displaying ordered and unordered lists,!3731Claro: role=button on status report items,!3651Issue #3347736: Create new SDC component for Olivero (header-search),!3531Issue #3336994: StringFormatter always displays links to entity even if the user in context does not have access,!3355Issue #3209129: Scrolling problems when adding a block via layout builder,!3154Fixes #2987987 - CSRF token validation broken on routes with optional parameters.,!3133core/modules/system/css/components/hidden.module.css,!2964Issue #2865710 : Dependencies from only one instance of a widget are used in display modes,!2812Issue #3312049: [Followup] Fix Drupal.Commenting.FunctionComment.MissingReturnType returns for NULL,!2378Issue #2875033: Optimize joins and table selection in SQL entity query implementation,!2062Issue #3246454: Add weekly granularity to views date sort,!1105Issue #3025039: New non translatable field on translatable content throws error,!10223132456: Fix issue where views instances are emptied before an ajax request is complete,!877Issue #2708101: Default value for link text is not saved,!617Issue #3043725: Provide a Entity Handler for user cancelation,!579Issue #2230909: Simple decimals fail to pass validation,!560Move callback classRemove outside of the loop,!555Issue #3202493
Pipeline #184108 canceled
Pipeline: drupal

#184109

    ...@@ -105,4 +105,19 @@ public function getAvailableToolkits() { ...@@ -105,4 +105,19 @@ public function getAvailableToolkits() {
    return $output; return $output;
    } }
    /**
    * Returns all valid extensions.
    *
    * @return string[]
    * All possible valid extensions.
    *
    * @see \Drupal\image\Plugin\ImageEffect\ConvertImageEffect::buildConfigurationForm()
    *
    * @internal
    * @todo Revisit in https://www.drupal.org/node/3446364
    */
    public static function getAllValidExtensions(): array {
    return \Drupal::service('image.toolkit.manager')->getDefaultToolkit()->getSupportedExtensions();
    }
    } }
    ...@@ -2,13 +2,23 @@ ...@@ -2,13 +2,23 @@
    image_size: image_size:
    type: mapping type: mapping
    constraints:
    FullyValidatable: ~
    mapping: mapping:
    width: width:
    type: integer type: integer
    label: 'Width' label: 'Width'
    nullable: true
    constraints:
    NotBlank:
    allowNull: true
    height: height:
    type: integer type: integer
    label: 'Height' label: 'Height'
    nullable: true
    constraints:
    NotBlank:
    allowNull: true
    field_default_image: field_default_image:
    type: mapping type: mapping
    ......
    ...@@ -3,6 +3,8 @@ ...@@ -3,6 +3,8 @@
    image.style.*: image.style.*:
    type: config_entity type: config_entity
    label: 'Image style' label: 'Image style'
    constraints:
    FullyValidatable: ~
    mapping: mapping:
    name: name:
    type: machine_name type: machine_name
    ...@@ -46,6 +48,9 @@ image.effect.image_convert: ...@@ -46,6 +48,9 @@ image.effect.image_convert:
    extension: extension:
    label: 'Extension' label: 'Extension'
    type: string type: string
    constraints:
    Choice:
    callback: 'Drupal\Core\ImageToolkit\ImageToolkitManager::getAllValidExtensions'
    image.effect.image_resize: image.effect.image_resize:
    type: image_size type: image_size
    ......
    ...@@ -37,6 +37,7 @@ public function testConvertFileInRoot() { ...@@ -37,6 +37,7 @@ public function testConvertFileInRoot() {
    $this->assertEquals(SAVED_NEW, $image_style->save()); $this->assertEquals(SAVED_NEW, $image_style->save());
    $image_style->addImageEffect([ $image_style->addImageEffect([
    'id' => 'image_convert', 'id' => 'image_convert',
    'weight' => 0,
    'data' => [ 'data' => [
    'extension' => 'jpeg', 'extension' => 'jpeg',
    ], ],
    ......
    ...@@ -229,7 +229,7 @@ public function testEffectFormValidationErrors() { ...@@ -229,7 +229,7 @@ public function testEffectFormValidationErrors() {
    'name' => 'foo', 'name' => 'foo',
    'label' => 'Foo', 'label' => 'Foo',
    ]); ]);
    $effect_id = $image_style->addImageEffect(['id' => 'image_scale']); $effect_id = $image_style->addImageEffect(['id' => 'image_scale', 'weight' => 0]);
    $image_style->save(); $image_style->save();
    $form = new ImageEffectEditForm(); $form = new ImageEffectEditForm();
    ......
    ...@@ -28,8 +28,8 @@ public function testImport() { ...@@ -28,8 +28,8 @@ public function testImport() {
    'label' => 'Test', 'label' => 'Test',
    ]); ]);
    $style->addImageEffect(['id' => 'image_module_test_null']); $style->addImageEffect(['id' => 'image_module_test_null', 'weight' => 0]);
    $style->addImageEffect(['id' => 'image_module_test_null']); $style->addImageEffect(['id' => 'image_module_test_null', 'weight' => 1]);
    $style->save(); $style->save();
    $this->assertCount(2, $style->getEffects()); $this->assertCount(2, $style->getEffects());
    ...@@ -38,6 +38,7 @@ public function testImport() { ...@@ -38,6 +38,7 @@ public function testImport() {
    $style->set('effects', [ $style->set('effects', [
    $uuid => [ $uuid => [
    'id' => 'image_module_test_null', 'id' => 'image_module_test_null',
    'weight' => 0,
    ], ],
    ]); ]);
    $style->save(); $style->save();
    ......
    ...@@ -15,7 +15,7 @@ class SettingsConfigValidationTest extends KernelTestBase { ...@@ -15,7 +15,7 @@ class SettingsConfigValidationTest extends KernelTestBase {
    /** /**
    * {@inheritdoc} * {@inheritdoc}
    */ */
    protected static $modules = ['image']; protected static $modules = ['image', 'system'];
    /** /**
    * Tests that the preview_image setting must be an existing image file. * Tests that the preview_image setting must be an existing image file.
    ......
    ...@@ -430,6 +430,7 @@ public function testResponsiveImageFieldFormattersMultipleSources() { ...@@ -430,6 +430,7 @@ public function testResponsiveImageFieldFormattersMultipleSources() {
    assert($large_style instanceof ImageStyleInterface); assert($large_style instanceof ImageStyleInterface);
    $large_style->addImageEffect([ $large_style->addImageEffect([
    'id' => 'image_resize', 'id' => 'image_resize',
    'weight' => 0,
    'data' => [ 'data' => [
    'width' => '480', 'width' => '480',
    'height' => '480', 'height' => '480',
    ...@@ -440,6 +441,7 @@ public function testResponsiveImageFieldFormattersMultipleSources() { ...@@ -440,6 +441,7 @@ public function testResponsiveImageFieldFormattersMultipleSources() {
    assert($medium_style instanceof ImageStyleInterface); assert($medium_style instanceof ImageStyleInterface);
    $medium_style->addImageEffect([ $medium_style->addImageEffect([
    'id' => 'image_resize', 'id' => 'image_resize',
    'weight' => 0,
    'data' => [ 'data' => [
    'width' => '220', 'width' => '220',
    'height' => '220', 'height' => '220',
    ......
    ...@@ -227,7 +227,10 @@ public function testSchemaMapping() { ...@@ -227,7 +227,10 @@ public function testSchemaMapping() {
    $expected['mapping']['_core']['type'] = '_core_config_info'; $expected['mapping']['_core']['type'] = '_core_config_info';
    $expected['mapping']['_core']['requiredKey'] = FALSE; $expected['mapping']['_core']['requiredKey'] = FALSE;
    $expected['type'] = 'image.style.*'; $expected['type'] = 'image.style.*';
    $expected['constraints'] = ['ValidKeys' => '<infer>']; $expected['constraints'] = [
    'ValidKeys' => '<infer>',
    'FullyValidatable' => NULL,
    ];
    $this->assertEquals($expected, $definition); $this->assertEquals($expected, $definition);
    ...@@ -241,12 +244,19 @@ public function testSchemaMapping() { ...@@ -241,12 +244,19 @@ public function testSchemaMapping() {
    $expected['unwrap_for_canonical_representation'] = TRUE; $expected['unwrap_for_canonical_representation'] = TRUE;
    $expected['mapping']['width']['type'] = 'integer'; $expected['mapping']['width']['type'] = 'integer';
    $expected['mapping']['width']['label'] = 'Width'; $expected['mapping']['width']['label'] = 'Width';
    $expected['mapping']['width']['nullable'] = TRUE;
    $expected['mapping']['width']['constraints'] = ['NotBlank' => ['allowNull' => TRUE]];
    $expected['mapping']['height']['type'] = 'integer'; $expected['mapping']['height']['type'] = 'integer';
    $expected['mapping']['height']['label'] = 'Height'; $expected['mapping']['height']['label'] = 'Height';
    $expected['mapping']['height']['nullable'] = TRUE;
    $expected['mapping']['height']['constraints'] = ['NotBlank' => ['allowNull' => TRUE]];
    $expected['mapping']['upscale']['type'] = 'boolean'; $expected['mapping']['upscale']['type'] = 'boolean';
    $expected['mapping']['upscale']['label'] = 'Upscale'; $expected['mapping']['upscale']['label'] = 'Upscale';
    $expected['type'] = 'image.effect.image_scale'; $expected['type'] = 'image.effect.image_scale';
    $expected['constraints'] = ['ValidKeys' => '<infer>']; $expected['constraints'] = [
    'ValidKeys' => '<infer>',
    'FullyValidatable' => NULL,
    ];
    $this->assertEquals($expected, $definition, 'Retrieved the right metadata for image.effect.image_scale'); $this->assertEquals($expected, $definition, 'Retrieved the right metadata for image.effect.image_scale');
    ...@@ -259,6 +269,7 @@ public function testSchemaMapping() { ...@@ -259,6 +269,7 @@ public function testSchemaMapping() {
    $expected['mapping']['height']['requiredKey'] = TRUE; $expected['mapping']['height']['requiredKey'] = TRUE;
    $expected['mapping']['upscale']['requiredKey'] = TRUE; $expected['mapping']['upscale']['requiredKey'] = TRUE;
    $expected['requiredKey'] = TRUE; $expected['requiredKey'] = TRUE;
    $expected['required'] = TRUE;
    $this->assertEquals($expected, $definition, 'Retrieved the right metadata for the first effect of image.style.medium'); $this->assertEquals($expected, $definition, 'Retrieved the right metadata for the first effect of image.style.medium');
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Finish editing this message first!
    Please register or to comment