mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
ab84718a01
* Add nxos_file_copy IT * Restructure nxos_igmp tests * add nxos_igmp_interface IT * add nxos_igmp_snooping IT * add nxos_ntp_auth IT * Add nxos_ntp_options IT * update nxos.yaml with new tests * update nxos_ntp_options test * update nxos_ntp_auth IT
48 lines
1.2 KiB
YAML
48 lines
1.2 KiB
YAML
---
|
|
- debug: msg="START TRANSPORT:{{ connection.transport }} nxos_igmp_snooping sanity test"
|
|
|
|
- block:
|
|
|
|
- name: Configure igmp snooping with non-default values
|
|
nxos_igmp_snooping: &non-default
|
|
snooping: true
|
|
group_timeout: never
|
|
link_local_grp_supp: true
|
|
report_supp: true
|
|
v3_report_supp: true
|
|
state: present
|
|
provider: "{{ connection }}"
|
|
register: result
|
|
|
|
- assert: &true
|
|
that:
|
|
- "result.changed == true"
|
|
|
|
- name: "Check Idempotence - Configure igmp snooping with non-default values"
|
|
nxos_igmp_snooping: *non-default
|
|
register: result
|
|
|
|
- assert: &false
|
|
that:
|
|
- "result.changed == false"
|
|
|
|
- name: Configure igmp snooping with default values
|
|
nxos_igmp_snooping: &default
|
|
state: default
|
|
provider: "{{ connection }}"
|
|
register: result
|
|
|
|
- assert: *true
|
|
|
|
- name: "Check Idempotence - Configure igmp snooping with default values"
|
|
nxos_igmp_snooping: *default
|
|
register: result
|
|
|
|
- assert: *false
|
|
|
|
always:
|
|
- name: Configure igmp snooping with default values
|
|
nxos_igmp_snooping: *default
|
|
register: result
|
|
|
|
- debug: msg="END TRANSPORT:{{ connection.transport }} nxos_igmp_snooping sanity test"
|