ansible/test/integration/targets/nxos_bgp/tests/common/hels.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

95 lines
2.2 KiB
YAML

---
- debug: msg="START connection={{ ansible_connection }} nxos_bgp parameter test"
- debug: msg="This test is not supported on {{ image_version }}"
when: imagetag is search("D1")
- set_fact: test_helsinki="false"
- set_fact: test_helsinki="true"
when: imagetag is not search("D1")
- name: "Disable feature BGP"
nxos_feature:
feature: bgp
state: disabled
ignore_errors: yes
when: test_helsinki
- name: "Enable feature BGP"
nxos_feature:
feature: bgp
state: enabled
ignore_errors: yes
when: test_helsinki
- block:
# these tasks will fail on n7k running helsinki
# due to no support
- name: "set helsinki"
nxos_bgp: &set1
asn: 65535
vrf: "{{ item }}"
graceful_restart_timers_restart: 130
graceful_restart_timers_stalepath_time: 310
neighbor_down_fib_accelerate: true
reconnect_interval: 55
timer_bgp_hold: 110
timer_bgp_keepalive: 45
with_items: "{{ vrfs }}"
register: result
when: test_helsinki
- assert: &true
that:
- "result.changed == true"
when: test_helsinki
- name: "Check Idempotence"
nxos_bgp: *set1
with_items: "{{ vrfs }}"
register: result
when: test_helsinki
- assert: &false
that:
- "result.changed == false"
when: test_helsinki
- name: "reset helsinki"
nxos_bgp: &reset1
asn: 65535
vrf: "{{ item }}"
graceful_restart: true
graceful_restart_timers_restart: default
graceful_restart_timers_stalepath_time: default
neighbor_down_fib_accelerate: false
reconnect_interval: default
timer_bgp_hold: default
timer_bgp_keepalive: default
with_items: "{{ vrfs }}"
register: result
when: test_helsinki
- assert: *true
when: test_helsinki
- name: "Check Idempotence"
nxos_bgp: *reset1
with_items: "{{ vrfs }}"
register: result
when: test_helsinki
- assert: *false
when: test_helsinki
rescue:
- debug: msg="Tests can fail on helsinki images"
always:
- name: "Disable feature bgp"
nxos_feature:
feature: bgp
state: disabled
ignore_errors: yes
when: test_helsinki
- debug: msg="END connection={{ ansible_connection }} nxos_bgp parameter test"