You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/test/integration/targets/iosxr_lldp_interfaces/tests/cli/rtt.yaml

51 lines
1.4 KiB
YAML

---
- debug:
msg: "START iosxr_lldp_interfaces round trip integration tests on connection={{ ansible_connection }}"
- block:
- include_tasks: _remove_config.yaml
- name: Apply the provided configuration (base config)
iosxr_lldp_interfaces:
config:
- name: GigabitEthernet0/0/0/0
transmit: False
state: merged
register: base_config
- name: Gather interfaces facts
iosxr_facts:
gather_subset:
- "!all"
- "!min"
gather_network_resources:
- lldp_interfaces
- name: Apply the provided configuration (config to be reverted)
iosxr_lldp_interfaces:
config:
- name: GigabitEthernet0/0/0/0
receive: False
- name: GigabitEthernet0/0/0/1
transmit: False
state: overridden
register: result
- name: Assert that changes were applied
assert:
that: "{{ round_trip['after'] | symmetric_difference(result['after']) |length == 0 }}"
- name: Revert back to base config using facts round trip
iosxr_lldp_interfaces:
config: "{{ ansible_facts['network_resources']['lldp_interfaces'] }}"
state: overridden
register: revert
- name: Assert that config was reverted
assert:
that: "{{ base_config['after'] | symmetric_difference(revert['after']) |length == 0 }}"
always:
- include_tasks: _remove_config.yaml