mirror of
https://github.com/linux-system-roles/network.git
synced 2026-07-23 02:47:37 +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>
215 lines
7.4 KiB
YAML
215 lines
7.4 KiB
YAML
# SPDX-License-Identifier: BSD-3-Clause
|
|
---
|
|
- name: Play for testing ethtool ring settings
|
|
hosts: all
|
|
vars:
|
|
interface: testnic1
|
|
type: veth
|
|
tasks:
|
|
- name: Show playbook name
|
|
debug:
|
|
msg: "this is: playbooks/tests_ethtool_ring.yml"
|
|
tags:
|
|
- always
|
|
|
|
- name: "INIT: Ethtool ring tests"
|
|
debug:
|
|
msg: "##################################################"
|
|
- name: Include the task 'show_interfaces.yml'
|
|
include_tasks: tasks/show_interfaces.yml
|
|
- 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: Install ethtool (test dependency)
|
|
package:
|
|
name: ethtool
|
|
state: present
|
|
use: "{{ (__network_is_ostree | d(false)) |
|
|
ternary('ansible.posix.rhel_rpm_ostree', omit) }}"
|
|
|
|
- name: Test ethtool ring settings
|
|
block:
|
|
- name: >-
|
|
TEST: I can create a profile without any ring option.
|
|
debug:
|
|
msg: "##################################################"
|
|
- name: Import network role
|
|
include_tasks: tasks/run_role_with_clear_facts.yml
|
|
vars:
|
|
network_connections:
|
|
- name: "{{ interface }}"
|
|
type: ethernet
|
|
state: up
|
|
ip:
|
|
dhcp4: false
|
|
auto6: false
|
|
|
|
- name: Get profile's ring options
|
|
command: nmcli -g ethtool.ring-rx c show {{ interface }}
|
|
register: no_ring_nm
|
|
when:
|
|
- network_provider == "nm"
|
|
changed_when: false
|
|
- name: "ASSERT: The profile does not contain ring options"
|
|
assert:
|
|
that: no_ring_nm.stdout | length == 0
|
|
when:
|
|
- network_provider == "nm"
|
|
- name: Get profile's ring options
|
|
command:
|
|
grep ETHTOOL /etc/sysconfig/network-scripts/ifcfg-{{ interface }}
|
|
register: no_ring_initscripts
|
|
ignore_errors: true
|
|
when:
|
|
- network_provider == "initscripts"
|
|
changed_when: false
|
|
- name: "ASSERT: The profile does not contain ring options"
|
|
assert:
|
|
that: no_ring_initscripts.stdout | length == 0
|
|
when:
|
|
- network_provider == "initscripts"
|
|
|
|
- name: >-
|
|
TEST: I can set rx.
|
|
debug:
|
|
msg: "##################################################"
|
|
- name: Import network role
|
|
include_tasks: tasks/run_role_with_clear_facts.yml
|
|
vars:
|
|
network_connections:
|
|
- name: "{{ interface }}"
|
|
type: ethernet
|
|
state: up
|
|
ip:
|
|
dhcp4: false
|
|
auto6: false
|
|
ethtool:
|
|
ring:
|
|
rx: 128
|
|
rx_jumbo: 128
|
|
rx_mini: 128
|
|
tx: 128
|
|
|
|
- name: Get profile's ethtool.ring-rx options
|
|
command: nmcli -g ethtool.ring-rx c show {{ interface }}
|
|
register: with_ring_rx
|
|
when:
|
|
- network_provider == "nm"
|
|
changed_when: false
|
|
- name: Assert ethtool.ring-rx option set in profile
|
|
assert:
|
|
that: with_ring_rx.stdout == '128'
|
|
when:
|
|
- network_provider == "nm"
|
|
- name: Get profile's ethtool.ring-rx-jumbo options
|
|
command: nmcli -g ethtool.ring-rx-jumbo c show {{ interface }}
|
|
register: with_ring_rx_jumbo
|
|
when:
|
|
- network_provider == "nm"
|
|
changed_when: false
|
|
- name: Assert ethtool.ring-rx-jumbo option set in profile
|
|
assert:
|
|
that: with_ring_rx_jumbo.stdout == '128'
|
|
when:
|
|
- network_provider == "nm"
|
|
- name: Get profile's ethtool.ring-rx-mini options
|
|
command: nmcli -g ethtool.ring-rx-mini c show {{ interface }}
|
|
register: with_ring_rx_mini
|
|
when:
|
|
- network_provider == "nm"
|
|
changed_when: false
|
|
- name: Assert ethtool.ring-rx-mini option set in profile
|
|
assert:
|
|
that: with_ring_rx_mini.stdout == '128'
|
|
when:
|
|
- network_provider == "nm"
|
|
- name: Get profile's ethtool.ring-tx options
|
|
command: nmcli -g ethtool.ring-tx c show {{ interface }}
|
|
register: with_ring_tx
|
|
when:
|
|
- network_provider == "nm"
|
|
changed_when: false
|
|
- name: Assert ethtool.ring-tx option set in profile
|
|
assert:
|
|
that: with_ring_tx.stdout == '128'
|
|
when:
|
|
- network_provider == "nm"
|
|
|
|
- name: Get profile's ethtool.ring options
|
|
command:
|
|
grep ETHTOOL /etc/sysconfig/network-scripts/ifcfg-{{ interface }}
|
|
register: with_ring
|
|
ignore_errors: true
|
|
when:
|
|
- network_provider == "initscripts"
|
|
changed_when: false
|
|
- name: Assert ethtool.ring option set in profile
|
|
assert:
|
|
that:
|
|
- '"rx 128" in with_ring.stdout'
|
|
- '"rx-jumbo 128" in with_ring.stdout'
|
|
- '"rx-mini 128" in with_ring.stdout'
|
|
- '"tx 128" in with_ring.stdout'
|
|
when:
|
|
- network_provider == "initscripts"
|
|
|
|
- name: "TEST: I can clear ring options"
|
|
debug:
|
|
msg: "##################################################"
|
|
- name: Import network role
|
|
include_tasks: tasks/run_role_with_clear_facts.yml
|
|
vars:
|
|
network_connections:
|
|
- name: "{{ interface }}"
|
|
type: ethernet
|
|
state: up
|
|
ip:
|
|
dhcp4: false
|
|
auto6: false
|
|
|
|
- name: Get profile's ring options
|
|
command: nmcli -g ethtool.ring-rx c show {{ interface }}
|
|
register: clear_ring_nm
|
|
when:
|
|
- network_provider == "nm"
|
|
changed_when: false
|
|
- name: "ASSERT: The profile does reset ring options"
|
|
assert:
|
|
that: clear_ring_nm.stdout | length == 0
|
|
when:
|
|
- network_provider == "nm"
|
|
- name: Get profile's ring options
|
|
command:
|
|
grep ETHTOOL /etc/sysconfig/network-scripts/ifcfg-{{ interface }}
|
|
register: clear_ring_initscripts
|
|
ignore_errors: true
|
|
when:
|
|
- network_provider == "initscripts"
|
|
changed_when: false
|
|
- name: "ASSERT: The profile does reset ring options"
|
|
assert:
|
|
that: clear_ring_initscripts.stdout | length == 0
|
|
when:
|
|
- network_provider == "initscripts"
|
|
|
|
always:
|
|
- name: Clean up the test device and the connection profile
|
|
tags:
|
|
- "tests::cleanup"
|
|
block:
|
|
- name: Import network role
|
|
include_tasks: tasks/run_role_with_clear_facts.yml
|
|
vars:
|
|
network_connections:
|
|
- name: "{{ interface }}"
|
|
persistent_state: absent
|
|
__sr_failed_when: false
|
|
- name: Include the task 'manage_test_interface.yml'
|
|
include_tasks: tasks/manage_test_interface.yml
|
|
vars:
|
|
state: absent
|
|
- name: Verify network state restored to default
|
|
include_tasks: tasks/check_network_dns.yml
|