ansible/test/integration/targets/nxos_vrf_interface/tests/common/sanity.yaml
Nathaniel Case 483df13626 Fixing issues with httpapi (#40388)
* I seem to have forgotten the back half of tests

* Set http timeout from persistent_command_timeout

* Tweak URL generation and provide URL on error

* Push var_options to connection process

* Don't wait forever if coming from persistent

* Don't send the entire contents of variables to ansible-connection
2018-05-21 15:58:35 +01:00

59 lines
1.3 KiB
YAML

---
- debug: msg="START connection={{ ansible_connection }} nxos_vrf_interface sanity test"
- debug: msg="Using provider={{ connection.transport }}"
when: ansible_connection == "local"
# Select interface for test
- set_fact: intname="{{ nxos_int1 }}"
- block:
- name: put interface in L3
nxos_config:
commands:
- no switchport
parents:
- "interface {{ intname }}"
match: none
- name: Ensure vrf ntc exists on interface
nxos_vrf_interface: &configure
vrf: ntc
interface: "{{ intname }}"
state: present
register: result
- assert: &true
that:
- "result.changed == true"
- name: "Conf Idempotence"
nxos_vrf_interface: *configure
register: result
- assert: &false
that:
- "result.changed == false"
- name: Ensure ntc VRF does not exist on interface
nxos_vrf_interface: &remove
vrf: ntc
interface: "{{ intname }}"
state: absent
register: result
- assert: *true
- name: "Remove Idempotence"
nxos_vrf_interface: *remove
register: result
- assert: *false
always:
- name: put interface in default mode
nxos_config:
lines: "default interface {{ intname }}"
match: none
ignore_errors: yes
- debug: msg="END connection={{ ansible_connection }} nxos_vrf_interface sanity test"