Skip to content
Snippets Groups Projects
Commit 8df2251a authored by catch's avatar catch
Browse files

Issue #3422398 by Wim Leers, phenaproxima: Allow specifying a prefix for...

Issue #3422398 by Wim Leers, phenaproxima: Allow specifying a prefix for ConfigExistsConstraint, to enable using it for references to config entities

(cherry picked from commit 7a286515)
parent 02ca3176
No related branches found
No related tags found
26 merge requests!11185Issue #3477324 by andypost, alexpott: Fix usage of str_getcsv() and fgetcsv() for PHP 8.4,!10602Issue #3438769 by vinmayiswamy, antonnavi, michelle, amateescu: Sub workspace does not clear,!10301Issue #3469309 by mstrelan, smustgrave, moshe weitzman: Use one-time login...,!10187Issue #3487488 by dakwamine: ExtensionMimeTypeGuesser::guessMimeType must support file names with "0" (zero) like foo.0.zip,!9944Issue #3483353: Consider making the createCopy config action optionally fail...,!9929Issue #3445469 by pooja_sharma, smustgrave: Add additional test coverage for...,!9787Resolve issue 3479427 - bootstrap barrio issue under Windows,!9742Issue #3463908 by catch, quietone: Split OptionsFieldUiTest into two,!9526Issue #3458177 by mondrake, catch, quietone, godotislate, longwave, larowlan,...,!8738Issue #3424162 by camilledavis, dineshkumarbollu, smustgrave: Claro...,!8704Make greek characters available in ckeditor5,!8597Draft: Issue #3442259 by catch, quietone, dww: Reduce time of Migrate Upgrade tests...,!8533Issue #3446962 by kim.pepper: Remove incorrectly added...,!8517Issue #3443748 by NexusNovaz, smustgrave: Testcase creates false positive,!8325Update file Sort.php,!8095Expose document root on install,!7930Resolve #3427374 "Taxonomytid viewsargumentdefault plugin",!7627Issue #3439440 by nicxvan, Binoli Lalani, longwave: Remove country support from DateFormatter,!7445Issue #3440169: When using drupalGet(), provide an associative array for $headers,!7401#3271894 Fix documented StreamWrapperInterface return types for realpath() and dirname(),!7384Add constraints to system.advisories,!7078Issue #3320569 by Spokje, mondrake, smustgrave, longwave, quietone, Lendude,...,!6622Issue #2559833 by piggito, mohit_aghera, larowlan, guptahemant, vakulrai,...,!6502Draft: Resolve #2938524 "Plach testing issue",!38582585169-10.1.x,!3226Issue #2987537: Custom menu link entity type should not declare "bundle" entity key
Pipeline #104159 passed
Pipeline: drupal

#104172

    Pipeline: drupal

    #104170

      Pipeline: drupal

      #104166

        +1
        ...@@ -23,4 +23,15 @@ class ConfigExistsConstraint extends Constraint { ...@@ -23,4 +23,15 @@ class ConfigExistsConstraint extends Constraint {
        */ */
        public string $message = "The '@name' config does not exist."; public string $message = "The '@name' config does not exist.";
        /**
        * Optional prefix, to be specified when this contains a config entity ID.
        *
        * Every config entity type can have multiple instances, all with unique IDs
        * but the same config prefix. When config refers to a config entity,
        * typically only the ID is stored, not the prefix.
        *
        * @var string
        */
        public string $prefix = '';
        } }
        ...@@ -43,13 +43,15 @@ public static function create(ContainerInterface $container) { ...@@ -43,13 +43,15 @@ public static function create(ContainerInterface $container) {
        * {@inheritdoc} * {@inheritdoc}
        */ */
        public function validate(mixed $name, Constraint $constraint) { public function validate(mixed $name, Constraint $constraint) {
        assert($constraint instanceof ConfigExistsConstraint);
        // This constraint may be used to validate nullable (optional) values. // This constraint may be used to validate nullable (optional) values.
        if ($name === NULL) { if ($name === NULL) {
        return; return;
        } }
        if (!in_array($name, $this->configFactory->listAll(), TRUE)) { if (!in_array($constraint->prefix . $name, $this->configFactory->listAll($constraint->prefix), TRUE)) {
        $this->context->addViolation($constraint->message, ['@name' => $name]); $this->context->addViolation($constraint->message, ['@name' => $constraint->prefix . $name]);
        } }
        } }
        ......
        ...@@ -23,20 +23,23 @@ class ConfigExistsConstraintValidatorTest extends KernelTestBase { ...@@ -23,20 +23,23 @@ class ConfigExistsConstraintValidatorTest extends KernelTestBase {
        /** /**
        * Tests the ConfigExists constraint validator. * Tests the ConfigExists constraint validator.
        *
        * @testWith [{}, "system.site", "system.site"]
        * [{"prefix": "system."}, "site", "system.site"]
        */ */
        public function testValidation(): void { public function testValidation(array $constraint_options, string $value, string $expected_config_name): void {
        // Create a data definition that specifies the value must be a string with // Create a data definition that specifies the value must be a string with
        // the name of an existing piece of config. // the name of an existing piece of config.
        $definition = DataDefinition::create('string') $definition = DataDefinition::create('string')
        ->addConstraint('ConfigExists'); ->addConstraint('ConfigExists', $constraint_options);
        /** @var \Drupal\Core\TypedData\TypedDataManagerInterface $typed_data */ /** @var \Drupal\Core\TypedData\TypedDataManagerInterface $typed_data */
        $typed_data = $this->container->get('typed_data_manager'); $typed_data = $this->container->get('typed_data_manager');
        $data = $typed_data->create($definition, 'system.site'); $data = $typed_data->create($definition, $value);
        $violations = $data->validate(); $violations = $data->validate();
        $this->assertCount(1, $violations); $this->assertCount(1, $violations);
        $this->assertSame("The 'system.site' config does not exist.", (string) $violations->get(0)->getMessage()); $this->assertSame("The '$expected_config_name' config does not exist.", (string) $violations->get(0)->getMessage());
        $this->installConfig('system'); $this->installConfig('system');
        $this->assertCount(0, $data->validate()); $this->assertCount(0, $data->validate());
        ......
        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