Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add jinja2 groupby filter override to cast namedtuple to tuple. Fixes #20098 #20362

Merged
merged 5 commits into from
Jan 19, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 25 additions & 1 deletion lib/ansible/plugins/filter/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
import uuid

import yaml
from jinja2.filters import environmentfilter
from jinja2.filters import environmentfilter, do_groupby as _do_groupby

try:
import passlib.hash
Expand Down Expand Up @@ -438,11 +438,35 @@ def skipped(*a, **kw):
skipped = item.get('skipped', False)
return skipped


@environmentfilter
def do_groupby(environment, value, attribute):
"""Overridden groupby filter for jinja2, to address an issue with
jinja2>=2.9.0,<2.9.5 where a namedtuple was returned which
has repr that prevents ansible.template.safe_eval.safe_eval from being
able to parse and eval the data.

jinja2<2.9.0,>=2.9.5 is not affected, as <2.9.0 uses a tuple, and
>=2.9.5 uses a standard tuple repr on the namedtuple.

The adaptation here, is to run the jinja2 `do_groupby` function, and
cast all of the namedtuples to a regular tuple.

See https://github.com/ansible/ansible/issues/20098

We may be able to remove this in the future.
"""
return [tuple(t) for t in _do_groupby(environment, value, attribute)]


class FilterModule(object):
''' Ansible core jinja2 filters '''

def filters(self):
return {
# jinja2 overrides
'groupby': do_groupby,

# base 64
'b64decode': partial(unicode_wrap, base64.b64decode),
'b64encode': partial(unicode_wrap, base64.b64encode),
Expand Down
5 changes: 4 additions & 1 deletion test/integration/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ UNAME := $(shell uname | tr '[:upper:]' '[:lower:]')

all: other non_destructive destructive

other: ansible test_test_infra parsing test_var_blending test_var_precedence unicode test_templating_settings environment test_as includes blocks pull_run pull_no_127 pull_limit_inventory check_mode test_hash test_handlers test_group_by test_vault test_tags test_lookup_paths no_log test_gathering_facts test_binary_modules_posix test_hosts_field test_lookup_properties args
other: ansible test_test_infra parsing test_var_blending test_var_precedence unicode test_templating_settings environment test_as includes blocks pull_run pull_no_127 pull_limit_inventory check_mode test_hash test_handlers test_group_by test_vault test_tags test_lookup_paths no_log test_gathering_facts test_binary_modules_posix test_hosts_field test_lookup_properties args test_jinja2_groupby

ansible:
(cd targets/ansible && ./runme.sh $(TEST_FLAGS))
Expand Down Expand Up @@ -66,6 +66,9 @@ test_gathering_facts:
environment:
(cd targets/environment && ./runme.sh $(TEST_FLAGS))

test_jinja2_groupby:
(cd targets/filters && ./runme.sh $(TEST_FLAGS))

non_destructive: setup
ANSIBLE_ROLES_PATH=$(shell pwd)/targets ansible-playbook non_destructive.yml -i $(INVENTORY) -e @$(VARS_FILE) $(CREDENTIALS_ARG) -v $(TEST_FLAGS)

Expand Down
1 change: 1 addition & 0 deletions test/integration/targets/groupby_filter/aliases
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
posix/ci/group2
35 changes: 35 additions & 0 deletions test/integration/targets/groupby_filter/runme.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
#!/usr/bin/env bash

# We don't set -u here, due to pypa/virtualenv#150
set -ex

MYTMPDIR=$(mktemp -d 2>/dev/null || mktemp -d -t 'mytmpdir')

# This is needed for the ubuntu1604py3 tests
# Ubuntu patches virtualenv to make the default python2
# but for the python3 tests we need virtualenv to use python3
if [ -f /usr/bin/python3 ]
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could you provide a comment explaining why this is needed?

then
PYTHON="--python /usr/bin/python3"
else
PYTHON=""
fi

virtualenv --system-site-packages $PYTHON "${MYTMPDIR}/jinja2"

source "${MYTMPDIR}/jinja2/bin/activate"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Running which pythonfollowing this might be a good idea. It will make it easy to see the correct python is in use.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'll give it another shot. I had it there, but it remember it failing on the osx build, which selected a different python than the venv that is used in the tests. Just not setting --python in virtualenv seemed to fix it.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah, sorry I wasn't clear. I didn't mean to change how you're selecting the python version. I just meant that it would be good to run which python after activating the venv, so it was clear which python was now used.

I actually need to improve ansible-test a bit in this area, as using which python has some odd behavior with the --python option, but that's something I'll deal with later.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think that is more my mistake for reading your comments on my phone. I've restored my original logic, and applied what you were referencing.


which python
python -V

pip install -U jinja2==2.9.4

ansible-playbook -i ../../inventory test_jinja2_groupby.yml -v "$@"

pip install -U "jinja2<2.9.0"

ansible-playbook -i ../../inventory test_jinja2_groupby.yml -v "$@"

deactivate

rm -r "${MYTMPDIR}"
24 changes: 24 additions & 0 deletions test/integration/targets/groupby_filter/test_jinja2_groupby.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
---
- name: Test jinja2 groupby
hosts: localhost
gather_facts: False
connection: local
vars:
fruits:
- name: apple
enjoy: yes
- name: orange
enjoy: no
- name: strawberry
enjoy: yes
expected: [[false, [{"enjoy": false, "name": "orange"}]], [true, [{"enjoy": true, "name": "apple"}, {"enjoy": true, "name": "strawberry"}]]]
tasks:
- debug:
msg: "{{ lookup('pipe', 'pip freeze | grep -i jinja2') }}"

- set_fact:
result: "{{ fruits | groupby('enjoy') }}"

- assert:
that:
- result == expected