mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-05 10:10:31 -07:00
Adjust to Data Tagging.
This commit is contained in:
parent
8247615d24
commit
acdfffc3b9
4 changed files with 34 additions and 12 deletions
|
@ -17,5 +17,5 @@ ansible-playbook ping_log.yml -v "$@"
|
||||||
# now force it to fail
|
# now force it to fail
|
||||||
export ANSIBLE_LOG_FOLDER="logit.file"
|
export ANSIBLE_LOG_FOLDER="logit.file"
|
||||||
touch "${ANSIBLE_LOG_FOLDER}"
|
touch "${ANSIBLE_LOG_FOLDER}"
|
||||||
ansible-playbook ping_log.yml -v "$@" 2>&1| grep 'Failure using method (v2_runner_on_ok) in callback plugin'
|
ansible-playbook ping_log.yml -v "$@" 2>&1| grep -E "(Failure using method \(v2_runner_on_ok\) in callback plugin|Callback dispatch 'v2_runner_on_ok' failed for plugin)"
|
||||||
[[ ! -f "${ANSIBLE_LOG_FOLDER}/localhost" ]]
|
[[ ! -f "${ANSIBLE_LOG_FOLDER}/localhost" ]]
|
||||||
|
|
|
@ -9,6 +9,12 @@ from ansible.errors import AnsibleError
|
||||||
from ansible.playbook.conditional import Conditional
|
from ansible.playbook.conditional import Conditional
|
||||||
from ansible.plugins.action import ActionBase
|
from ansible.plugins.action import ActionBase
|
||||||
|
|
||||||
|
try:
|
||||||
|
from ansible.utils.datatag import trust_value as _trust_value
|
||||||
|
except ImportError:
|
||||||
|
def _trust_value(input):
|
||||||
|
return input
|
||||||
|
|
||||||
|
|
||||||
class ActionModule(ActionBase):
|
class ActionModule(ActionBase):
|
||||||
''' Fail with custom message '''
|
''' Fail with custom message '''
|
||||||
|
@ -36,12 +42,16 @@ class ActionModule(ActionBase):
|
||||||
|
|
||||||
thats = self._task.args['that']
|
thats = self._task.args['that']
|
||||||
|
|
||||||
cond = Conditional(loader=self._loader)
|
|
||||||
result['_ansible_verbose_always'] = True
|
result['_ansible_verbose_always'] = True
|
||||||
|
|
||||||
for that in thats:
|
for that in thats:
|
||||||
cond.when = [str(self._make_safe(that))]
|
if hasattr(self._templar, 'evaluate_conditional'):
|
||||||
test_result = cond.evaluate_conditional(templar=self._templar, all_vars=task_vars)
|
trusted_that = _trust_value(that) if _trust_value else that
|
||||||
|
test_result = self._templar.evaluate_conditional(conditional=trusted_that)
|
||||||
|
else:
|
||||||
|
cond = Conditional(loader=self._loader)
|
||||||
|
cond.when = [str(self._make_safe(that))]
|
||||||
|
test_result = cond.evaluate_conditional(templar=self._templar, all_vars=task_vars)
|
||||||
if not test_result:
|
if not test_result:
|
||||||
result['failed'] = True
|
result['failed'] = True
|
||||||
result['evaluated_to'] = test_result
|
result['evaluated_to'] = test_result
|
||||||
|
|
|
@ -8,11 +8,15 @@
|
||||||
ignore_errors: true
|
ignore_errors: true
|
||||||
register: result
|
register: result
|
||||||
|
|
||||||
|
- name: Show results
|
||||||
|
debug:
|
||||||
|
var: result
|
||||||
|
|
||||||
- name: assert failing dependency
|
- name: assert failing dependency
|
||||||
assert:
|
assert:
|
||||||
that:
|
that:
|
||||||
- result is failed
|
- result is failed
|
||||||
- '"Failed to import" in result.msg'
|
- '"Failed to import" in result.msg'
|
||||||
- '"nopackagewiththisname" in result.msg'
|
- '"nopackagewiththisname" in result.msg'
|
||||||
- '"ModuleNotFoundError:" in result.exception or "ImportError:" in result.exception'
|
- '"ModuleNotFoundError:" in result.exception or "ImportError:" in result.exception or "(traceback unavailable)" in result.exception'
|
||||||
- '"nopackagewiththisname" in result.exception'
|
- '"nopackagewiththisname" in result.exception or "(traceback unavailable)" in result.exception'
|
||||||
|
|
|
@ -3,15 +3,19 @@
|
||||||
# SPDX-License-Identifier: GPL-3.0-or-later
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
|
||||||
- set_fact:
|
- set_fact:
|
||||||
attr2_d:
|
attr2_depr_dict:
|
||||||
msg: Attribute attr2 is deprecated
|
msg: Attribute attr2 is deprecated
|
||||||
version: 9.9.9
|
version: 9.9.9
|
||||||
collection_name: community.general
|
collection_name: community.general
|
||||||
attr2_d_29:
|
# With Data Tagging, the deprecation dict looks a bit different:
|
||||||
|
attr2_depr_dict_dt:
|
||||||
msg: Attribute attr2 is deprecated
|
msg: Attribute attr2 is deprecated
|
||||||
version: 9.9.9
|
version: 9.9.9
|
||||||
- set_fact:
|
plugin:
|
||||||
attr2_depr_dict: "{{ ((ansible_version.major, ansible_version.minor) < (2, 10))|ternary(attr2_d_29, attr2_d) }}"
|
requested_name: msimpleda
|
||||||
|
resolved_name: msimpleda
|
||||||
|
type: module
|
||||||
|
collection_name: null # should be "community.general"; this will hopefully change back because this seriously sucks
|
||||||
|
|
||||||
- name: test msimpleda 1
|
- name: test msimpleda 1
|
||||||
msimpleda:
|
msimpleda:
|
||||||
|
@ -23,17 +27,21 @@
|
||||||
that:
|
that:
|
||||||
- simple1.a == 1
|
- simple1.a == 1
|
||||||
- simple1.attr1 == "abc"
|
- simple1.attr1 == "abc"
|
||||||
- ("deprecations" not in simple1) or attr2_depr_dict not in simple1.deprecations
|
- ("deprecations" not in simple1) or (attr2_depr_dict not in simple1.deprecations and attr2_depr_dict_dt not in simple1.deprecations)
|
||||||
|
|
||||||
- name: test msimpleda 2
|
- name: test msimpleda 2
|
||||||
msimpleda:
|
msimpleda:
|
||||||
a: 2
|
a: 2
|
||||||
register: simple2
|
register: simple2
|
||||||
|
|
||||||
|
- name: Show results
|
||||||
|
debug:
|
||||||
|
var: simple2
|
||||||
|
|
||||||
- name: assert simple2
|
- name: assert simple2
|
||||||
assert:
|
assert:
|
||||||
that:
|
that:
|
||||||
- simple2.a == 2
|
- simple2.a == 2
|
||||||
- simple2.attr2 == "def"
|
- simple2.attr2 == "def"
|
||||||
- '"deprecations" in simple2'
|
- '"deprecations" in simple2'
|
||||||
- attr2_depr_dict in simple2.deprecations
|
- attr2_depr_dict in simple2.deprecations or attr2_depr_dict_dt in simple2.deprecations
|
||||||
|
|
Loading…
Add table
Reference in a new issue