mirror of https://github.com/ansible/ansible.git
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.
74 lines
1.5 KiB
YAML
74 lines
1.5 KiB
YAML
---
|
|
- debug:
|
|
msg: "Start nxos_lag_interfaces merged integration tests connection={{ ansible_connection }}"
|
|
|
|
- set_fact: test_int1="{{ nxos_int1 }}"
|
|
- set_fact: test_int2="{{ nxos_int2 }}"
|
|
|
|
- name: enable feature lacp
|
|
nxos_feature:
|
|
feature: lacp
|
|
|
|
- name: setup
|
|
nxos_config:
|
|
lines:
|
|
- "channel-group 10"
|
|
parents: "{{ item }}"
|
|
ignore_errors: yes
|
|
loop:
|
|
- "interface {{ test_int1 }}"
|
|
- "interface {{ test_int2 }}"
|
|
|
|
- name: Gather LAG interfaces facts
|
|
nxos_facts: &facts
|
|
gather_subset:
|
|
- '!all'
|
|
- '!min'
|
|
gather_network_resources: lag_interfaces
|
|
|
|
- name: Replaced
|
|
nxos_lag_interfaces: &replaced
|
|
config:
|
|
- name: port-channel11
|
|
members:
|
|
- member: "{{ test_int2 }}"
|
|
mode: active
|
|
state: replaced
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "ansible_facts.network_resources.lag_interfaces|symmetric_difference(result.before)|length == 0"
|
|
|
|
- name: Gather LAG interfaces post facts
|
|
nxos_facts: *facts
|
|
|
|
- assert:
|
|
that:
|
|
- "ansible_facts.network_resources.lag_interfaces|symmetric_difference(result.after)|length == 0"
|
|
|
|
- name: Idempotence - Replaced
|
|
nxos_lag_interfaces: *replaced
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result.changed == false"
|
|
|
|
- name: teardown1
|
|
nxos_config:
|
|
lines:
|
|
- "no channel-group 10"
|
|
parents: "interface {{ test_int1 }}"
|
|
|
|
- name: teardown2
|
|
nxos_config:
|
|
lines:
|
|
- "no channel-group 11"
|
|
parents: "interface {{ test_int2 }}"
|
|
|
|
- name: disable feature lacp
|
|
nxos_feature:
|
|
feature: lacp
|
|
state: disabled
|