community.general/tests/integration/targets/module_helper/tasks/msimpleda.yml
patchback[bot] cea886562a
Some checks are pending
EOL CI / EOL Sanity (Ⓐ2.15) (push) Waiting to run
EOL CI / EOL Units (Ⓐ2.15+py2.7) (push) Waiting to run
EOL CI / EOL Units (Ⓐ2.15+py3.10) (push) Waiting to run
EOL CI / EOL Units (Ⓐ2.15+py3.5) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.15+alpine3+py:azp/posix/1/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.15+alpine3+py:azp/posix/2/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.15+alpine3+py:azp/posix/3/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.15+fedora37+py:azp/posix/1/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.15+fedora37+py:azp/posix/2/) (push) Waiting to run
EOL CI / EOL I (Ⓐ2.15+fedora37+py:azp/posix/3/) (push) Waiting to run
nox / Run extra sanity tests (push) Waiting to run
[PR #10214/f7f2db36 backport][stable-10] Fix module_helper tests (#10216)
Fix module_helper tests (#10214)

Fix module_helper tests.

(cherry picked from commit f7f2db365e)

Co-authored-by: Felix Fontein <felix@fontein.de>
2025-06-06 22:29:56 +02:00

62 lines
1.6 KiB
YAML

# Copyright (c) 2021, 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
- set_fact:
attr2_depr_dict:
msg: Attribute attr2 is deprecated
version: 9.9.9
collection_name: community.general
# With Data Tagging, the deprecation dict looks a bit different:
attr2_depr_dict_dt:
msg: Attribute attr2 is deprecated
version: 9.9.9
collection_name: community.general
deprecator:
resolved_name: community.general
type: collection
# Latest version:
attr2_depr_dict_dt2:
msg: Attribute attr2 is deprecated
version: 9.9.9
collection_name: community.general
deprecator:
resolved_name: community.general
type: ~
- name: test msimpleda 1
msimpleda:
a: 1
register: simple1
- name: assert simple1
assert:
that:
- simple1.a == 1
- simple1.attr1 == "abc"
- >-
("deprecations" not in simple1) or (
attr2_depr_dict not in simple1.deprecations and
attr2_depr_dict_dt not in simple1.deprecations and
attr2_depr_dict_dt2 not in simple1.deprecations
)
- name: test msimpleda 2
msimpleda:
a: 2
register: simple2
- name: Show results
debug:
var: simple2
- name: assert simple2
assert:
that:
- simple2.a == 2
- simple2.attr2 == "def"
- '"deprecations" in simple2'
- >-
attr2_depr_dict in simple2.deprecations or
attr2_depr_dict_dt in simple2.deprecations or
attr2_depr_dict_dt2 in simple2.deprecations