mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 12:50:22 -07:00
Don't overwrite builtin jinja2 filters with tests (#37881)
* Don't overwrite builtin jinja2 filters with tests. Fixes #37856 * Fix tests and other callers of _get_filters
This commit is contained in:
parent
169209c32a
commit
1f824bd620
3 changed files with 12 additions and 4 deletions
|
@ -1,5 +1,7 @@
|
|||
from ansible.template import Templar, display
|
||||
from units.mock.loader import DictDataLoader
|
||||
from jinja2.filters import FILTERS
|
||||
from os.path import isabs
|
||||
|
||||
|
||||
def test_tests_as_filters_warning(mocker):
|
||||
|
@ -7,7 +9,7 @@ def test_tests_as_filters_warning(mocker):
|
|||
"/path/to/my_file.txt": "foo\n",
|
||||
})
|
||||
templar = Templar(loader=fake_loader, variables={})
|
||||
filters = templar._get_filters()
|
||||
filters = templar._get_filters(templar.environment.filters)
|
||||
|
||||
mocker.patch.object(display, 'deprecated')
|
||||
|
||||
|
@ -28,3 +30,6 @@ def test_tests_as_filters_warning(mocker):
|
|||
display.deprecated.reset_mock()
|
||||
filters['bool'](True)
|
||||
assert display.deprecated.call_count == 0
|
||||
|
||||
# Ensure custom test does not override builtin filter
|
||||
assert filters.get('abs') != isabs
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue