ansible/test/integration/targets/nxos_interface/tests/common/sub_int.yaml
nkshrishail 01e4c41be4 nxos: Removing local-nxapi plugin and related parameters' usage from the integration tests. (#65068)
* nxos_integration_tests: Removing obsolete provider parameter

* nxos: removing support for local-nxapi plugin

* nxos: removing LocalNxapi plugin implementation

* nxos_nxapi: removing local plugin usage

* REVERT - nxos: removing LocalNxapi plugin implementation

* Addressing yamllint issues

* Removing the condition on the debug messages

* Restoring changes done to nxos_nxapi* tests

* Retaining timeout of 500 on nxos_smoke test

* Some cleanup

* Addressing latest comments

* Restoring the nxos_smoke and removing timeout from nxos_config and nxos_rollback
2020-01-08 13:43:23 +05:30

73 lines
1.5 KiB
YAML

---
- debug: msg="START connection={{ ansible_connection }} nxos_interface sub-interface test"
- set_fact: testint="{{ nxos_int1 }}"
- name: Setup - delete sub-interface
nxos_interface: &rm
name: "{{ testint }}.20"
state: absent
ignore_errors: yes
- name: Setup - Ensure the interface is layer3
nxos_interface:
name: "{{ testint }}"
mode: layer3
- name: Create sub-interface
nxos_interface: &sub_int
name: "{{ testint }}.20"
description: "sub-interface Configured by Ansible"
admin_state: up
mtu: 800
register: result
- assert:
that:
- "result.changed == true"
- name: Create sub-interface (Idempotence)
nxos_interface: *sub_int
register: result
- assert:
that:
- "result.changed == false"
- name: Make admin_state down
nxos_interface: &state_down
name: "{{ testint }}.20"
description: "sub-interface Configured by Ansible"
admin_state: down
mtu: 800
register: result
- assert:
that:
- "result.changed == true"
- name: Create sub-interface (Idempotence)
nxos_interface: *state_down
register: result
- assert:
that:
- "result.changed == false"
- name: Remove sub-interface
nxos_interface: *rm
register: result
- assert:
that:
- "result.changed == true"
- name: Remove sub-interface (Idempotence)
nxos_interface: *rm
register: result
- assert:
that:
- "result.changed == false"
- debug: msg="END connection={{ ansible_connection }} nxos_interface sub-interface test"