Skip to content
Snippets Groups Projects
Verified Commit 7ca3f9e2 authored by Alex Pott's avatar Alex Pott
Browse files

Issue #3411419 by catch, lauriii, larowlan, kevinquillen: Regression from...

Issue #3411419 by catch, lauriii, larowlan, kevinquillen: Regression from #2521800: using machine name element for ListStringItem breaks with existing data
parent 39fb7eb7
No related branches found
No related tags found
32 merge requests!8528Issue #3456871 by Tim Bozeman: Support NULL services,!8323Fix source code editing and in place front page site studio editing.,!6278Issue #3187770 by godotislate, smustgrave, catch, quietone: Views Rendered...,!3878Removed unused condition head title for views,!38582585169-10.1.x,!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,!3668Resolve #3347842 "Deprecate the trusted",!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,!3226Issue #2987537: Custom menu link entity type should not declare "bundle" entity key,!3154Fixes #2987987 - CSRF token validation broken on routes with optional parameters.,!3147Issue #3328457: Replace most substr($a, $i) where $i is negative with str_ends_with(),!3146Issue #3328456: Replace substr($a, 0, $i) with str_starts_with(),!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,!2614Issue #2981326: Replace non-test usages of \Drupal::logger() with IoC injection,!2378Issue #2875033: Optimize joins and table selection in SQL entity query implementation,!2334Issue #3228209: Add hasRole() method to AccountInterface,!2062Issue #3246454: Add weekly granularity to views date sort,!1105Issue #3025039: New non translatable field on translatable content throws error,!1073issue #3191727: Focus states on mobile second level navigation items fixed,!10223132456: Fix issue where views instances are emptied before an ajax request is complete,!877Issue #2708101: Default value for link text is not saved,!844Resolve #3036010 "Updaters",!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 #69936 passed
Pipeline: drupal

#69939

    ......@@ -100,6 +100,10 @@ public function storageSettingsForm(array &$form, FormStateInterface $form_state
    // Workaround for https://drupal.org/i/1300290#comment-12873635.
    \Drupal::service('plugin.manager.element_info')->getInfoProperty('machine_name', '#process', []),
    );
    // Remove #element_validate from the machine name so that any value can be
    // used as a key, while keeping the widget's behavior for generating
    // defaults the same.
    $element['allowed_values']['table'][$delta]['item']['key']['#element_validate'] = [];
    }
    return $element;
    ......@@ -113,6 +117,14 @@ public static function processAllowedValuesKey(array &$element): array {
    array_pop($parents);
    $parents[] = 'label';
    $element['#machine_name']['source'] = $parents;
    // Override the default description which is not applicable to this use of
    // the machine name element given that it allows users to manually enter
    // characters usually not allowed in machine names.
    if (!isset($element['#description'])) {
    $element['#description'] = '';
    }
    return $element;
    }
    ......
    ......@@ -306,14 +306,15 @@ public function testOptionsAllowedValuesText() {
    $field_storage = FieldStorageConfig::loadByName('node', $this->fieldName);
    $this->assertSame($field_storage->getSetting('allowed_values'), ['zero' => 'Zero']);
    // Check that string values with dots can not be used.
    // Check that string values with special characters can be used.
    $input = [
    'field_storage[subform][settings][allowed_values][table][0][item][key]' => 'zero',
    'field_storage[subform][settings][allowed_values][table][0][item][label]' => 'Zero',
    'field_storage[subform][settings][allowed_values][table][1][item][key]' => 'example.com',
    'field_storage[subform][settings][allowed_values][table][1][item][key]' => '.example #example',
    'field_storage[subform][settings][allowed_values][table][1][item][label]' => 'Example',
    ];
    $this->assertAllowedValuesInput($input, 'The machine-readable name must contain only lowercase letters, numbers, and underscores.', 'String value with dot is not supported.');
    $array = ['zero' => 'Zero', '.example #example' => 'Example'];
    $this->assertAllowedValuesInput($input, $array, '');
    // Check that the same key can only be used once.
    $input = [
    ......
    ......@@ -375,6 +375,37 @@ public function providerTestOptionsAllowedValues() {
    return $test_cases;
    }
    /**
    * Tests `list_string` machine name with special characters.
    */
    public function testMachineNameSpecialCharacters() {
    $this->fieldName = 'field_options_text';
    $this->createOptionsField('list_string');
    $this->drupalGet($this->adminPath);
    $label_element_name = "field_storage[subform][settings][allowed_values][table][0][item][label]";
    $this->getSession()->getPage()->fillField($label_element_name, 'Hello world');
    $this->assertSession()->assertWaitOnAjaxRequest();
    $this->exposeOptionMachineName(1);
    $key_element_name = "field_storage[subform][settings][allowed_values][table][0][item][key]";
    // Ensure that the machine name was generated correctly.
    $this->assertSession()->fieldValueEquals($key_element_name, 'hello_world');
    // Ensure that the machine name can be overridden with a value that includes
    // special characters.
    $this->getSession()->getPage()->fillField($key_element_name, '.hello #world');
    $this->assertSession()->assertWaitOnAjaxRequest();
    $this->getSession()->getPage()->pressButton('Save settings');
    $this->assertSession()->statusMessageContains("Saved {$this->fieldName} configuration.");
    // Ensure that the machine name was saved correctly.
    $allowed_values = FieldStorageConfig::loadByName('node', $this->fieldName)
    ->getSetting('allowed_values');
    $this->assertSame(['.hello #world'], array_keys($allowed_values));
    }
    /**
    * Assert the count of the allowed values rows.
    *
    ......
    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