Skip to content

Commit

Permalink
Add nxos_config sanity test (ansible#54258)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikewiebe authored and trishnaguha committed Mar 25, 2019
1 parent f06ae6c commit e9c66ff
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions test/integration/targets/nxos_config/tests/common/sanity.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,41 @@
match: none
provider: "{{ connection }}"

- debug: msg='Verify https://github.com/ansible/ansible/issues/50635'

- name: PUT INTERFACE INTO DEFAULT STATE
nxos_config:
lines:
- "default interface {{ nxos_int1 }}"
provider: "{{ connection }}"

- name: MAKE INTERFACE A SWITCHPORT
nxos_config:
lines:
- switchport
parents: "interface {{ nxos_int1 }}"
provider: "{{ connection }}"

- name: CONFIGURE EDGE TRUNK TYPE
nxos_config: &config
lines:
- description foo
- switchport access vlan 3333
- spanning-tree port type edge
parents: "interface {{ nxos_int1 }}"
provider: "{{ connection }}"
register: result

- assert:
that:
- "result.changed == true"

- name: IDEMPOTENCE CHECK
nxos_config: *config
register: result

- assert:
that:
- "result.changed == false"

- debug: msg="END common/sanity.yaml on connection={{ ansible_connection }}"

0 comments on commit e9c66ff

Please sign in to comment.