mirror of
https://github.com/linux-system-roles/network.git
synced 2026-07-22 18:46:45 +00:00
The role gathers the facts it uses. For example, if the user uses `ANSIBLE_GATHERING=explicit`, the role uses the `setup` module with the facts and subsets it requires. This change allows us to test this. Before every role invocation, the test will use `meta: clear_facts` so that the role starts with no facts. Create a task file tests/tasks/run_role_with_clear_facts.yml to do the tasks to clear the facts and run the role. Note that this means we don't need to use `gather_facts` for the tests. Some vars defined using `ansible_facts` have been changed to be defined with `set_fact` instead. This is because of the fact that `vars` are lazily evaluated - the var might be referenced when the facts have been cleared, and will issue an error like `ansible_facts["distribution"] is undefined`. This is typically done for blocks that have a `when` condition that uses `ansible_facts` and the block has a role invocation using run_role_with_clear_facts.yml These have been rewritten to define the `when` condition using `set_fact`. This is because the `when` condition is evaluated every time a task is invoked in the block, and if the facts are cleared, this will raise an undefined variable error. Signed-off-by: Rich Megginson <rmeggins@redhat.com>
89 lines
3.3 KiB
YAML
89 lines
3.3 KiB
YAML
# SPDX-License-Identifier: BSD-3-Clause
|
|
# This file was generated by ensure_provider_tests.py
|
|
---
|
|
- name: Test change indication on repeat run
|
|
hosts: all
|
|
vars:
|
|
interface: testnic1
|
|
type: veth
|
|
tasks:
|
|
- name: Determine if system is ostree and set flag
|
|
when: not __network_is_ostree is defined
|
|
block:
|
|
- name: Check if system is ostree
|
|
stat:
|
|
path: /run/ostree-booted
|
|
register: __ostree_booted_stat
|
|
|
|
- name: Set flag to indicate system is ostree
|
|
set_fact:
|
|
__network_is_ostree: "{{ __ostree_booted_stat.stat.exists }}"
|
|
- name: Include the task 'manage_test_interface.yml'
|
|
include_tasks: tasks/manage_test_interface.yml
|
|
vars:
|
|
state: present
|
|
- name: Include the task 'assert_device_present.yml'
|
|
include_tasks: tasks/assert_device_present.yml
|
|
- name: Test change indication on repeat run
|
|
block:
|
|
- name: Configure the static IPv4 address for ethernet device
|
|
vars:
|
|
network_connections:
|
|
- name: "{{ interface }}"
|
|
state: up
|
|
type: ethernet
|
|
ip:
|
|
address:
|
|
- 192.0.2.2/24
|
|
block:
|
|
- name: Include the network role
|
|
include_tasks: tasks/run_role_with_clear_facts.yml
|
|
register: __network_connections_result
|
|
- name: Assert change:true
|
|
assert:
|
|
that: __network_connections_result is changed
|
|
- name: Include the network role
|
|
include_tasks: tasks/run_role_with_clear_facts.yml
|
|
register: __network_connections_result
|
|
- name: Assert change:false
|
|
assert:
|
|
that: not __network_connections_result is changed
|
|
- name: Configure the ethernet device without enabling the IPv4 and IPv6
|
|
vars:
|
|
network_connections:
|
|
- name: "{{ interface }}"
|
|
state: up
|
|
type: ethernet
|
|
ip:
|
|
dhcp4: "no"
|
|
auto6: "no"
|
|
block:
|
|
- name: Include the network role
|
|
include_tasks: tasks/run_role_with_clear_facts.yml
|
|
register: __network_connections_result
|
|
- name: Assert change:true
|
|
assert:
|
|
that: __network_connections_result is changed
|
|
- name: Include the network role
|
|
include_tasks: tasks/run_role_with_clear_facts.yml
|
|
register: __network_connections_result
|
|
- name: Assert change:false
|
|
assert:
|
|
that: not __network_connections_result is changed
|
|
always:
|
|
- name: Clean up the test device and the connection profile
|
|
tags:
|
|
- "tests::cleanup"
|
|
block:
|
|
- name: Include the network role
|
|
include_tasks: tasks/run_role_with_clear_facts.yml
|
|
vars:
|
|
network_connections:
|
|
- name: "{{ interface }}"
|
|
persistent_state: absent
|
|
state: down
|
|
ignore_errors: true # noqa ignore-errors
|
|
- name: Include the task 'manage_test_interface.yml'
|
|
include_tasks: tasks/manage_test_interface.yml
|
|
vars:
|
|
state: absent
|