ansible/test/integration/targets/nxos_vrf/tests/common/sanity.yaml

102 lines
2.2 KiB
YAML
Raw Normal View History

---
- debug: msg="START connection={{ ansible_connection }} nxos_vrf sanity test"
- debug: msg="Using provider={{ connection.transport }}"
when: ansible_connection == "local"
nxos bugfixes cherry-pick (#38091) * Fix nxos_switchport (#37328) (cherry picked from commit ff57fd0bb49a12d7a59deb05e488228725f73417) * Fix nxos_l2_interface and test typo (#37336) Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> (cherry picked from commit ba5e562c76464c3fde7c6a285576a286c7e6d523) * fix ios_l2_interface (#37389) Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> (cherry picked from commit dd37857884b4b7c6eb393135a1ceac725b60e6d6) * fix required args for nxos_snapshot and docs improvement (#37232) Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> (cherry picked from commit a10df8b0b5a81aad096d1c7299edddfd0f4e3d14) * add nxos_snapshot test for missing required param (#37248) Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> (cherry picked from commit 2501834c422f1b7a1349003fed33fa9a04e135f5) * Ensure network_cli nxos test is run only once - remove unnecessary files (#37462) Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> (cherry picked from commit 957ab02e524631a237a8ff9f22b0637aaa063e9d) * Integration Tests only: nxos_user (#37852) * add new integration file to nxos_user * fix shippable error * change nxapi to connection * review comments (cherry picked from commit 63da50e1d8fe61bbcdae645bf72a8482383e6a83) * fix UnboundLocalError nxos_bgp_af module (#37610) Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> (cherry picked from commit 00abe6dbe7e8670d53741df0fc3eaded84b2d080) * Fix nxos_vrf issues (#37092) * fix nxos_vrf issues * fix doc (cherry picked from commit dc61f4c6b1588c854f45d7267bc68b63b03a93bf) * fix nxos_vrf_af issues (#37211) (cherry picked from commit 74e79d9f5e3da3767f8d32a6fac7a047439d1e8f) * fix nxos_udld issues (#37418) (cherry picked from commit 05b266cc667ada2cb56ad04c6428284e35fe3f3b) * fix nxos_vlan issues (#38008) (cherry picked from commit 6f2cb28bb9e06293232a92b949b39fe80f8dbaa5) * add changelog Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
2018-03-29 12:47:32 +00:00
- set_fact: intname1="{{ nxos_int1 }}"
- set_fact: intname2="{{ nxos_int2 }}"
- set_fact: rdnd="1:2"
when: (platform is not match("N35|N7K")) and ((imagetag != 'I2'))
- set_fact: rdd="default"
when: (platform is not match("N35|N7K")) and ((imagetag != 'I2'))
- set_fact: vnind="5000"
nxos bugfixes 2.5.4 cherry-pick (#40861) * Fix legacy Nexus 3k integration test and module issues. (#40322) * Add setup ignore_errors for nxos_config test * Fix parse_fan_info for n3k * Skip bidir tests for N3k * Omit vni config for n3k * Skip unsupported nxos_vrf_af test on N3K * Add legacy N3K platform tag (cherry picked from commit 63e16431b7e08d85bd9846a504f63e0d2442a1a8) * Skip N35 and N3L platforms for nxos_evpn_global test (#40333) (cherry picked from commit ad69ef88e7e67d54e42ce8e9ceae4ceaf8c09be5) * add normalize_interface in module_utils and fix nxos_l3_interface module (#40598) Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> (cherry picked from commit 0b7932db3000d58303462a6d1ff061adeff3c243) * nxos_interface: Disable switchport for loopback/svi (#40314) * nxos_interface: Disable switchport for loopback/svi * Replace interface_type with get_interface_type(name) (cherry picked from commit d04a989bd28b625747664064b8c8f58597b0f575) * fixes bug with matching nxos prompts (#40655) This change addresses an issue where the prompt matching regular expressions would not match a prompt if the hostname starts with a numeric value. Before this change, the connection would fail with a socket.timeout() error. This change updates the termnal_stdout_re values to now check for a number. See Github issue #38639 (cherry picked from commit d829ff6993aa3a7e8123d2188ab04f4bfd88c1d0) * fix nxos_vrf and migrate get_interface_type to module_utils (#40825) Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> (cherry picked from commit b4baa2d48455029cfe35b14195b2ca4616e540ac) * nxos_vlan fix Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> * changelog nxos bugfixes 2.5.4 Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
2018-05-30 05:51:53 +00:00
when: platform is not match("N35|N7K|N3L")
nxos bugfixes cherry-pick (#38091) * Fix nxos_switchport (#37328) (cherry picked from commit ff57fd0bb49a12d7a59deb05e488228725f73417) * Fix nxos_l2_interface and test typo (#37336) Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> (cherry picked from commit ba5e562c76464c3fde7c6a285576a286c7e6d523) * fix ios_l2_interface (#37389) Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> (cherry picked from commit dd37857884b4b7c6eb393135a1ceac725b60e6d6) * fix required args for nxos_snapshot and docs improvement (#37232) Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> (cherry picked from commit a10df8b0b5a81aad096d1c7299edddfd0f4e3d14) * add nxos_snapshot test for missing required param (#37248) Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> (cherry picked from commit 2501834c422f1b7a1349003fed33fa9a04e135f5) * Ensure network_cli nxos test is run only once - remove unnecessary files (#37462) Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> (cherry picked from commit 957ab02e524631a237a8ff9f22b0637aaa063e9d) * Integration Tests only: nxos_user (#37852) * add new integration file to nxos_user * fix shippable error * change nxapi to connection * review comments (cherry picked from commit 63da50e1d8fe61bbcdae645bf72a8482383e6a83) * fix UnboundLocalError nxos_bgp_af module (#37610) Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> (cherry picked from commit 00abe6dbe7e8670d53741df0fc3eaded84b2d080) * Fix nxos_vrf issues (#37092) * fix nxos_vrf issues * fix doc (cherry picked from commit dc61f4c6b1588c854f45d7267bc68b63b03a93bf) * fix nxos_vrf_af issues (#37211) (cherry picked from commit 74e79d9f5e3da3767f8d32a6fac7a047439d1e8f) * fix nxos_udld issues (#37418) (cherry picked from commit 05b266cc667ada2cb56ad04c6428284e35fe3f3b) * fix nxos_vlan issues (#38008) (cherry picked from commit 6f2cb28bb9e06293232a92b949b39fe80f8dbaa5) * add changelog Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
2018-03-29 12:47:32 +00:00
- set_fact: vnid="default"
nxos bugfixes 2.5.4 cherry-pick (#40861) * Fix legacy Nexus 3k integration test and module issues. (#40322) * Add setup ignore_errors for nxos_config test * Fix parse_fan_info for n3k * Skip bidir tests for N3k * Omit vni config for n3k * Skip unsupported nxos_vrf_af test on N3K * Add legacy N3K platform tag (cherry picked from commit 63e16431b7e08d85bd9846a504f63e0d2442a1a8) * Skip N35 and N3L platforms for nxos_evpn_global test (#40333) (cherry picked from commit ad69ef88e7e67d54e42ce8e9ceae4ceaf8c09be5) * add normalize_interface in module_utils and fix nxos_l3_interface module (#40598) Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> (cherry picked from commit 0b7932db3000d58303462a6d1ff061adeff3c243) * nxos_interface: Disable switchport for loopback/svi (#40314) * nxos_interface: Disable switchport for loopback/svi * Replace interface_type with get_interface_type(name) (cherry picked from commit d04a989bd28b625747664064b8c8f58597b0f575) * fixes bug with matching nxos prompts (#40655) This change addresses an issue where the prompt matching regular expressions would not match a prompt if the hostname starts with a numeric value. Before this change, the connection would fail with a socket.timeout() error. This change updates the termnal_stdout_re values to now check for a number. See Github issue #38639 (cherry picked from commit d829ff6993aa3a7e8123d2188ab04f4bfd88c1d0) * fix nxos_vrf and migrate get_interface_type to module_utils (#40825) Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> (cherry picked from commit b4baa2d48455029cfe35b14195b2ca4616e540ac) * nxos_vlan fix Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> * changelog nxos bugfixes 2.5.4 Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
2018-05-30 05:51:53 +00:00
when: platform is not match("N35|N7K|N3L")
nxos bugfixes cherry-pick (#38091) * Fix nxos_switchport (#37328) (cherry picked from commit ff57fd0bb49a12d7a59deb05e488228725f73417) * Fix nxos_l2_interface and test typo (#37336) Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> (cherry picked from commit ba5e562c76464c3fde7c6a285576a286c7e6d523) * fix ios_l2_interface (#37389) Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> (cherry picked from commit dd37857884b4b7c6eb393135a1ceac725b60e6d6) * fix required args for nxos_snapshot and docs improvement (#37232) Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> (cherry picked from commit a10df8b0b5a81aad096d1c7299edddfd0f4e3d14) * add nxos_snapshot test for missing required param (#37248) Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> (cherry picked from commit 2501834c422f1b7a1349003fed33fa9a04e135f5) * Ensure network_cli nxos test is run only once - remove unnecessary files (#37462) Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> (cherry picked from commit 957ab02e524631a237a8ff9f22b0637aaa063e9d) * Integration Tests only: nxos_user (#37852) * add new integration file to nxos_user * fix shippable error * change nxapi to connection * review comments (cherry picked from commit 63da50e1d8fe61bbcdae645bf72a8482383e6a83) * fix UnboundLocalError nxos_bgp_af module (#37610) Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> (cherry picked from commit 00abe6dbe7e8670d53741df0fc3eaded84b2d080) * Fix nxos_vrf issues (#37092) * fix nxos_vrf issues * fix doc (cherry picked from commit dc61f4c6b1588c854f45d7267bc68b63b03a93bf) * fix nxos_vrf_af issues (#37211) (cherry picked from commit 74e79d9f5e3da3767f8d32a6fac7a047439d1e8f) * fix nxos_udld issues (#37418) (cherry picked from commit 05b266cc667ada2cb56ad04c6428284e35fe3f3b) * fix nxos_vlan issues (#38008) (cherry picked from commit 6f2cb28bb9e06293232a92b949b39fe80f8dbaa5) * add changelog Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
2018-03-29 12:47:32 +00:00
- name: "Enable feature BGP"
nxos_feature:
feature: bgp
state: enabled
provider: "{{ connection }}"
ignore_errors: yes
- block:
- name: Ensure ntc VRF exists on switch
nxos_vrf: &configure
vrf: ntc
admin_state: down
description: testing
nxos bugfixes cherry-pick (#38091) * Fix nxos_switchport (#37328) (cherry picked from commit ff57fd0bb49a12d7a59deb05e488228725f73417) * Fix nxos_l2_interface and test typo (#37336) Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> (cherry picked from commit ba5e562c76464c3fde7c6a285576a286c7e6d523) * fix ios_l2_interface (#37389) Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> (cherry picked from commit dd37857884b4b7c6eb393135a1ceac725b60e6d6) * fix required args for nxos_snapshot and docs improvement (#37232) Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> (cherry picked from commit a10df8b0b5a81aad096d1c7299edddfd0f4e3d14) * add nxos_snapshot test for missing required param (#37248) Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> (cherry picked from commit 2501834c422f1b7a1349003fed33fa9a04e135f5) * Ensure network_cli nxos test is run only once - remove unnecessary files (#37462) Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> (cherry picked from commit 957ab02e524631a237a8ff9f22b0637aaa063e9d) * Integration Tests only: nxos_user (#37852) * add new integration file to nxos_user * fix shippable error * change nxapi to connection * review comments (cherry picked from commit 63da50e1d8fe61bbcdae645bf72a8482383e6a83) * fix UnboundLocalError nxos_bgp_af module (#37610) Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> (cherry picked from commit 00abe6dbe7e8670d53741df0fc3eaded84b2d080) * Fix nxos_vrf issues (#37092) * fix nxos_vrf issues * fix doc (cherry picked from commit dc61f4c6b1588c854f45d7267bc68b63b03a93bf) * fix nxos_vrf_af issues (#37211) (cherry picked from commit 74e79d9f5e3da3767f8d32a6fac7a047439d1e8f) * fix nxos_udld issues (#37418) (cherry picked from commit 05b266cc667ada2cb56ad04c6428284e35fe3f3b) * fix nxos_vlan issues (#38008) (cherry picked from commit 6f2cb28bb9e06293232a92b949b39fe80f8dbaa5) * add changelog Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
2018-03-29 12:47:32 +00:00
vni: "{{vnind|default(omit)}}"
rd: "{{rdnd|default(omit)}}"
interfaces:
- "{{ intname1 }}"
- "{{ intname2 }}"
provider: "{{ connection }}"
register: result
- assert: &true
that:
- "result.changed == true"
- name: "Conf Idempotence"
nxos_vrf: *configure
register: result
- assert: &false
that:
- "result.changed == false"
nxos bugfixes cherry-pick (#38091) * Fix nxos_switchport (#37328) (cherry picked from commit ff57fd0bb49a12d7a59deb05e488228725f73417) * Fix nxos_l2_interface and test typo (#37336) Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> (cherry picked from commit ba5e562c76464c3fde7c6a285576a286c7e6d523) * fix ios_l2_interface (#37389) Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> (cherry picked from commit dd37857884b4b7c6eb393135a1ceac725b60e6d6) * fix required args for nxos_snapshot and docs improvement (#37232) Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> (cherry picked from commit a10df8b0b5a81aad096d1c7299edddfd0f4e3d14) * add nxos_snapshot test for missing required param (#37248) Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> (cherry picked from commit 2501834c422f1b7a1349003fed33fa9a04e135f5) * Ensure network_cli nxos test is run only once - remove unnecessary files (#37462) Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> (cherry picked from commit 957ab02e524631a237a8ff9f22b0637aaa063e9d) * Integration Tests only: nxos_user (#37852) * add new integration file to nxos_user * fix shippable error * change nxapi to connection * review comments (cherry picked from commit 63da50e1d8fe61bbcdae645bf72a8482383e6a83) * fix UnboundLocalError nxos_bgp_af module (#37610) Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> (cherry picked from commit 00abe6dbe7e8670d53741df0fc3eaded84b2d080) * Fix nxos_vrf issues (#37092) * fix nxos_vrf issues * fix doc (cherry picked from commit dc61f4c6b1588c854f45d7267bc68b63b03a93bf) * fix nxos_vrf_af issues (#37211) (cherry picked from commit 74e79d9f5e3da3767f8d32a6fac7a047439d1e8f) * fix nxos_udld issues (#37418) (cherry picked from commit 05b266cc667ada2cb56ad04c6428284e35fe3f3b) * fix nxos_vlan issues (#38008) (cherry picked from commit 6f2cb28bb9e06293232a92b949b39fe80f8dbaa5) * add changelog Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
2018-03-29 12:47:32 +00:00
- pause:
seconds: 30
- name: Remove config
nxos_vrf: &remconf
vrf: ntc
admin_state: up
vni: "{{vnid|default(omit)}}"
rd: "{{rdd|default(omit)}}"
interfaces: default
provider: "{{ connection }}"
register: result
- assert: *true
- name: "Conf Idempotence"
nxos_vrf: *remconf
register: result
- assert: *false
- name: Ensure ntc VRF does not exist on switch
nxos_vrf: &remove
vrf: ntc
state: absent
provider: "{{ connection }}"
register: result
- assert: *true
- pause:
seconds: 30
- name: "Remove Idempotence"
nxos_vrf: *remove
register: result
- assert: *false
nxos bugfixes cherry-pick (#38091) * Fix nxos_switchport (#37328) (cherry picked from commit ff57fd0bb49a12d7a59deb05e488228725f73417) * Fix nxos_l2_interface and test typo (#37336) Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> (cherry picked from commit ba5e562c76464c3fde7c6a285576a286c7e6d523) * fix ios_l2_interface (#37389) Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> (cherry picked from commit dd37857884b4b7c6eb393135a1ceac725b60e6d6) * fix required args for nxos_snapshot and docs improvement (#37232) Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> (cherry picked from commit a10df8b0b5a81aad096d1c7299edddfd0f4e3d14) * add nxos_snapshot test for missing required param (#37248) Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> (cherry picked from commit 2501834c422f1b7a1349003fed33fa9a04e135f5) * Ensure network_cli nxos test is run only once - remove unnecessary files (#37462) Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> (cherry picked from commit 957ab02e524631a237a8ff9f22b0637aaa063e9d) * Integration Tests only: nxos_user (#37852) * add new integration file to nxos_user * fix shippable error * change nxapi to connection * review comments (cherry picked from commit 63da50e1d8fe61bbcdae645bf72a8482383e6a83) * fix UnboundLocalError nxos_bgp_af module (#37610) Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> (cherry picked from commit 00abe6dbe7e8670d53741df0fc3eaded84b2d080) * Fix nxos_vrf issues (#37092) * fix nxos_vrf issues * fix doc (cherry picked from commit dc61f4c6b1588c854f45d7267bc68b63b03a93bf) * fix nxos_vrf_af issues (#37211) (cherry picked from commit 74e79d9f5e3da3767f8d32a6fac7a047439d1e8f) * fix nxos_udld issues (#37418) (cherry picked from commit 05b266cc667ada2cb56ad04c6428284e35fe3f3b) * fix nxos_vlan issues (#38008) (cherry picked from commit 6f2cb28bb9e06293232a92b949b39fe80f8dbaa5) * add changelog Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
2018-03-29 12:47:32 +00:00
always:
- name: "Disable feature BGP"
nxos_feature:
feature: bgp
state: disabled
provider: "{{ connection }}"
ignore_errors: yes
nxos bugfixes cherry-pick (#38091) * Fix nxos_switchport (#37328) (cherry picked from commit ff57fd0bb49a12d7a59deb05e488228725f73417) * Fix nxos_l2_interface and test typo (#37336) Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> (cherry picked from commit ba5e562c76464c3fde7c6a285576a286c7e6d523) * fix ios_l2_interface (#37389) Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> (cherry picked from commit dd37857884b4b7c6eb393135a1ceac725b60e6d6) * fix required args for nxos_snapshot and docs improvement (#37232) Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> (cherry picked from commit a10df8b0b5a81aad096d1c7299edddfd0f4e3d14) * add nxos_snapshot test for missing required param (#37248) Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> (cherry picked from commit 2501834c422f1b7a1349003fed33fa9a04e135f5) * Ensure network_cli nxos test is run only once - remove unnecessary files (#37462) Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> (cherry picked from commit 957ab02e524631a237a8ff9f22b0637aaa063e9d) * Integration Tests only: nxos_user (#37852) * add new integration file to nxos_user * fix shippable error * change nxapi to connection * review comments (cherry picked from commit 63da50e1d8fe61bbcdae645bf72a8482383e6a83) * fix UnboundLocalError nxos_bgp_af module (#37610) Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> (cherry picked from commit 00abe6dbe7e8670d53741df0fc3eaded84b2d080) * Fix nxos_vrf issues (#37092) * fix nxos_vrf issues * fix doc (cherry picked from commit dc61f4c6b1588c854f45d7267bc68b63b03a93bf) * fix nxos_vrf_af issues (#37211) (cherry picked from commit 74e79d9f5e3da3767f8d32a6fac7a047439d1e8f) * fix nxos_udld issues (#37418) (cherry picked from commit 05b266cc667ada2cb56ad04c6428284e35fe3f3b) * fix nxos_vlan issues (#38008) (cherry picked from commit 6f2cb28bb9e06293232a92b949b39fe80f8dbaa5) * add changelog Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
2018-03-29 12:47:32 +00:00
- debug: msg="END connection={{ ansible_connection }} nxos_vrf sanity test"