- Status changed to Needs work
almost 2 years ago 3:50pm 15 March 2023 - πΊπΈUnited States dww
Thanks for moving this forward. I would have committed it for RC1, but there's still no test coverage at all (hence the "Needs tests" tag). That really needs to happen before I can be confident it does what we want, and that we're not going to break it in the future. π
Luckily, there's already
tests/src/Functional/ArgumentValidatorTest.php
for someone to extend...Thanks again,
-Derek - Status changed to Needs review
over 1 year ago 9:33am 8 June 2023 - last update
over 1 year ago 1 pass, 2 fail - last update
over 1 year ago 2 pass - πͺπΈSpain plopesc Valladolid
New patch including tests for this feature.
Thank you!
The last submitted patch, 17: 2979312-17-test-only.patch, failed testing. View results β
- π¬π§United Kingdom rossb89 Bristol
I've tested this out locally with the latest patch -17 and it appears to be doing exactly what it says on the tin... great work!
- First commit to issue fork.
- last update
7 months ago 2 pass - π΅πΉPortugal lolgm
I found two problems in patch #17.
1st Problem
The module currently allows the use of terms with white space (e.g. βDummy Exampleβ), after testing the patch I can no longer get the expected behavior.
It seems to me that the problem is in the regex that is used to split the terms:
$exploded_arguments = preg_split('/[,+ ]/', $argument);
This contains a blank space, thus giving rise to this unexpected behavior.2nd Problem
The contextual filter "Has taxonomy term ID" has an option to "Allow multiple values", which is deactivated by default, however the patch ignores the option and always accepts multiple values.
The attached patch provides a proposed solution for these two problems.
- last update
7 months ago 2 pass - First commit to issue fork.
- πΊπΈUnited States shelane
I just had to remove the latest patch from my site because it caused a previously working view to return no results.