python:S5953 walrus operator inside list with reused variable

Hello.

Problematic rule is Variables, classes and functions should be either defined or imported. In code view it says “items is not defined. Change its name or define it before using it”.

SonarQube
Version: 8.9.9.56886
Date: 2022-10-17

Code looks like this:

@pytest.mark.parametrize(
    "input_items, expected_items",
    [
        [
            items := [
                ClassName(
                    **{
                        ...
                    },
                ),
            ],
            items,  # Bug here.
    ],
    ....
)
def test_func(input_items, expected_items):
    ...

I don’t see any other solution for this other than marking this bug as “false positive”.

Surprisingly it only marks this occurrence. Later in code we have similar “reuse” of variable with the difference that class arguments aren’t passed through dict unpacking. I’m not sure if that’s the cause.

Hello @Hubert_Wlodarczyk,

Thank you for reporting this false positive!

The good news is that, while I managed to reproduce it on the current SonarQube LTS version (8.9.10), I could not reproduce it on the latest SonarQube version (9.7), so the false positive has already been fixed.

If you can live with flagging those issues as false positives until the release of the next LTS (which should happen early next year), then that may be the simplest course of action for you. Otherwise, you can also use the # NOSONAR comment on those patterns, or simply temporarily disable the rule.

Also, please note that this rule (like many others), is not designed to be run on test code. By specifying what your main code is and what your test code is (through the sonar.sources and sonar.tests properties - see here), you may get more precise analysis results.

Hope that helps,
Guillaume

1 Like

Hello Guillaume.

Thank you for checking that out. Good to hear that it has been fixed in newer versions.

Also thank you for pointing out sonar.tests property. I will look into it and verify how it fits in out project in such cases.

Cheers!

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.