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

259 lines
5.4 KiB
YAML

---
- debug: msg="START connection={{ ansible_connection }} nxos_bgp parameter test"
- name: "Disable feature BGP"
nxos_feature:
feature: bgp
state: disabled
ignore_errors: yes
- name: "Enable feature BGP"
nxos_feature:
feature: bgp
state: enabled
ignore_errors: yes
- block:
- name: "set multi vrf params"
nxos_bgp: &set_multi_vrf
asn: 65535
vrf: "{{ item }}"
router_id: 192.0.2.1
bestpath_always_compare_med: true
bestpath_aspath_multipath_relax: true
bestpath_compare_routerid: true
bestpath_cost_community_ignore: true
bestpath_med_confed: true
bestpath_med_missing_as_worst: true
bestpath_med_non_deterministic: true
# grace_restart is failing with error code -32603 only on CLI transport, nxapi ok
# graceful_restart: false
graceful_restart_helper: true
log_neighbor_changes: true
maxas_limit: 50
with_items: "{{ vrfs }}"
register: result
- assert: &true
that:
- "result.changed == true"
- name: "Check Idempotence"
nxos_bgp: *set_multi_vrf
with_items: "{{ vrfs }}"
register: result
- assert: &false
that:
- "result.changed == false"
- name: "reset multi vrf params"
nxos_bgp: &reset_multi_vrf
asn: 65535
vrf: "{{ item }}"
bestpath_always_compare_med: false
bestpath_aspath_multipath_relax: false
bestpath_compare_routerid: false
bestpath_cost_community_ignore: false
bestpath_med_confed: false
bestpath_med_missing_as_worst: false
bestpath_med_non_deterministic: false
graceful_restart_helper: false
log_neighbor_changes: false
maxas_limit: default
router_id: default
with_items: "{{ vrfs }}"
register: result
- assert: *true
- name: "Check Idempotence"
nxos_bgp: *reset_multi_vrf
with_items: "{{ vrfs }}"
register: result
- assert: *false
- name: "set clusterid"
nxos_bgp: &set_cluster_id
asn: 65535
vrf: "{{ item }}"
cluster_id: 10.0.0.1
with_items: "{{ vrfs }}"
register: result
- assert: *true
- name: "Check Idempotence"
nxos_bgp: *set_cluster_id
with_items: "{{ vrfs }}"
register: result
- assert: *false
- name: "reset cluster_id"
nxos_bgp: &reset_cluster_id
asn: 65535
vrf: "{{ item }}"
cluster_id: default
with_items: "{{ vrfs }}"
register: result
- assert: *true
- name: "Check Idempotence"
nxos_bgp: *reset_cluster_id
with_items: "{{ vrfs }}"
register: result
- assert: *false
- name: "set confederation"
nxos_bgp: &set_confederation
asn: 65535
confederation_id: 99
confederation_peers:
- 16
- 22
- 18
register: result
- assert: *true
- name: "Check Idempotence"
nxos_bgp: *set_confederation
register: result
- assert: *false
- name: "reset confederation"
nxos_bgp: &reset_confederation
asn: 65535
confederation_id: default
confederation_peers: default
register: result
- assert: *true
- name: "Check Idempotence"
nxos_bgp: *reset_confederation
register: result
- assert: *false
- name: "set confederation_local_as"
nxos_bgp: &set_confederation_la
asn: 65535
vrf: myvrf
local_as: 33
confederation_id: 99
confederation_peers:
- 16
- 22
- 18
register: result
- assert: *true
- name: "Check Idempotence"
nxos_bgp: *set_confederation_la
register: result
- assert: *false
- name: "reset confederation local_as"
nxos_bgp: &reset_confederation_la
asn: 65535
vrf: myvrf
local_as: default
confederation_id: default
confederation_peers: default
register: result
- assert: *true
- name: "Check Idempotence"
nxos_bgp: *reset_confederation_la
register: result
- assert: *false
- name: "set local_as"
nxos_bgp: &set_local_as
asn: 65535
vrf: myvrf
local_as: 33
confederation_id: 99
register: result
- assert: *true
- name: "Check Idempotence"
nxos_bgp: *set_local_as
register: result
- assert: *false
- name: "reset local_as"
nxos_bgp: &reset_local_as
asn: 65535
vrf: myvrf
confederation_id: default
local_as: default
register: result
- assert: *true
- name: "Check Idempotence"
nxos_bgp: *reset_local_as
register: result
- assert: *false
- name: "set default vrf params"
nxos_bgp: &set_def_vrf
asn: 65535
event_history_cli: size_medium
event_history_detail: size_large
event_history_events: size_medium
event_history_periodic: size_small
enforce_first_as: false
fast_external_fallover: false
flush_routes: true
shutdown: true
register: result
- assert: *true
- name: "Check Idempotence"
nxos_bgp: *set_def_vrf
register: result
- assert: *false
- name: "reset default vrf params"
nxos_bgp: &reset_def_vrf
asn: 65535
event_history_detail: default
enforce_first_as: true
fast_external_fallover: true
flush_routes: false
shutdown: false
register: result
- assert: *true
- name: "Check Idempotence"
nxos_bgp: *reset_def_vrf
register: result
- assert: *false
always:
- name: "Disable feature bgp"
nxos_feature:
feature: bgp
state: disabled
ignore_errors: yes
- debug: msg="END connection={{ ansible_connection }} nxos_bgp parameter test"