Adopt a more liberal approach for TwigValidatorRuleTestExpr

Created on 23 February 2025, about 1 month ago

Problem/Motivation

According to some feedbacks from UI suite DSFR theme ( 🐛 Follow default_value defined in JSON schema into twig Active ), it may be useful to do this kind of tests;:

  with_gutters is not defined or with_gutters ? 'fr-grid-row--gutters',

in order to apply default values to boolean (where we are not recommending using the |default() filter)

Proposed resolution

Do we allow defined tests by removing it from "Not needed in Drupal because strict_variables=false." warning ?

Only for boolean (may be hard to detect) ?

Or maybe we adopt a more liberal approach of Twig tests where we only forbid the one we know to be very harmful:

  • constant : related to Drupal installtion
  • empty: same as just testing the variable
  • null: same as just testing the variable
  • same as: too strict for templating, confusing if used with Jinja

https://git.drupalcode.org/project/sdc_devel/-/blob/1.0.x/src/Plugin/Twi...

📌 Task
Status

Active

Version

1.0

Component

Code

Created by

🇫🇷France pdureau Paris

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Comments & Activities

  • Issue created by @pdureau
  • 🇨🇦Canada Liam Morland Ontario, CA 🇨🇦

    I was getting this warning with a test like if variable is defined. In my case, I wanted the condition to be true if variable was zero. That would not be the case if I had used if variable.

  • 🇫🇷France pdureau Paris

    From Liam in 🐛 The "empty is not needed" test is not correct Active

    This condition: {% if variable is not empty %}
    raised the warning "The exact same as just testing the variable, empty is not needed."

    But if I switched it to: {% if variable %}
    then the condition would fail if variable was zero.

    Let's check if empty is really same as just testing the variable before setting our "liberal" list of warnings.

  • 🇫🇷France mogtofu33

    I am not sure to get the whole scope of changes and result expected here, could we be more clear and give testable examples:

    {% set variable = '' %}
    {% if variable is not empty %}{% endif %}
    

    => Warning

    {% set variable = [] %}
    {% if variable is not empty %}{% endif %}
    

    => Warning

    {% set variable = 0 %}
    {% if variable is not empty %}{% endif %}
    

    => No warning

    {% set variable = null %}
    {% if variable is not empty %}{% endif %}
    

    => ?

    {% set variable = true %}
    {% if variable is not empty %}{% endif %}
    

    => ?

    {% set variable = false %}
    {% if variable is not empty %}{% endif %}
    

    => ?

    {% set variable = injected_variable %}
    {% if variable is not empty %}{% endif %}
    

    => From previous rules based on type of injected variable?

    {% set variable = set_variable_before %}
    {% if variable is not empty %}{% endif %}
    

    => Probably hard to detect as the vriable is set in the template.

  • 🇫🇷France pdureau Paris

    ok i will work on clarifying the scope

Production build 0.71.5 2024