summaryrefslogtreecommitdiff
path: root/test/integration/targets/nxos_igmp_snooping/tests/common/sanity.yaml
blob: 9d54832749266a6e060e7ee6555c8246b7108a48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
---
- debug: msg="START connection={{ ansible_connection }} nxos_igmp_snooping sanity test"
- debug: msg="Using provider={{ connection.transport }}"
  when: ansible_connection == "local"

- 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 connection={{ ansible_connection }} nxos_igmp_snooping sanity test"