mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
8bc5494ad5
ModuleHelper - lax handling of conflicting output (#5765)
* ModuleHelper - lax handling of conflicting output
* add changelog fragment
* only create _var when really needed
* adjust changelog
* Update changelogs/fragments/5765-mh-lax-output-conflict.yml
Co-authored-by: Felix Fontein <felix@fontein.de>
Co-authored-by: Felix Fontein <felix@fontein.de>
(cherry picked from commit dc531b183d
)
Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com>
54 lines
1.2 KiB
YAML
54 lines
1.2 KiB
YAML
# Copyright (c) 2023, Alexei Znamensky
|
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
- name: test msimple conflict output (set a=80)
|
|
msimple:
|
|
a: 80
|
|
register: simple1
|
|
|
|
- name: assert simple1
|
|
assert:
|
|
that:
|
|
- simple1.a == 80
|
|
- simple1.abc == "abc"
|
|
- simple1 is not changed
|
|
- simple1.value is none
|
|
|
|
- name: test msimple conflict output 2
|
|
msimple:
|
|
a: 80
|
|
m: a message in a bottle
|
|
register: simple2
|
|
|
|
- name: assert simple2
|
|
assert:
|
|
that:
|
|
- simple1.a == 80
|
|
- simple1.abc == "abc"
|
|
- simple1 is not changed
|
|
- simple1.value is none
|
|
- >
|
|
"_msg" not in simple2
|
|
- >
|
|
simple2.msg == "a message in a bottle"
|
|
|
|
- name: test msimple 3
|
|
msimple:
|
|
a: 101
|
|
m: a message in a bottle
|
|
ignore_errors: yes
|
|
register: simple3
|
|
|
|
- name: assert simple3
|
|
assert:
|
|
that:
|
|
- simple3.a == 101
|
|
- >
|
|
simple3.msg == "Module failed with exception: a >= 100"
|
|
- >
|
|
simple3._msg == "a message in a bottle"
|
|
- simple3.abc == "abc"
|
|
- simple3 is failed
|
|
- simple3 is not changed
|
|
- simple3.value is none
|