You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/test/integration/targets/nxos_lldp_global/tests/cli/merged.yml

73 lines
1.8 KiB
YAML

---
- debug:
msg: "Start nxos_lldp_global merged integration tests connection={{ansible_connection}}"
# N35 skips all tests, image issues.
- block:
- set_fact:
port_id: 1
tlv_power_mgmt:
power_management: false
when: platform is not search('N5K|N6K|N7K') and imagetag is not search("I[2345]")
- name: feature off to cleanup lldp
nxos_feature: &feature_off
feature: lldp
state: disabled
- name: Enable lldp
nxos_feature:
feature: lldp
- name: Merged
nxos_lldp_global: &merged
config:
reinit: 5
timer: 40
port_id: "{{port_id|default(omit)}}"
tlv_select: "{{tlv_power_mgmt|default(omit)}}"
state: merged
register: result
- assert:
that:
- "result.before|length == 0"
- "result.changed == true"
- "'lldp reinit 5' in result.commands"
- "'lldp timer 40' in result.commands"
- assert:
that:
- "'lldp portid-subtype 1' in result.commands"
when: port_id is defined
- assert:
that:
- "'no lldp tlv-select power-management' in result.commands"
when: tlv_power_mgmt is defined
- name: Gather lldp_global facts
nxos_facts:
gather_subset:
- '!all'
- '!min'
gather_network_resources: lldp_global
- assert:
that:
- "ansible_facts.network_resources.lldp_global == result.after"
- name: Idempotence - Merged
nxos_lldp_global: *merged
register: result
- assert:
that:
- "result.changed == false"
- "result.commands | length == 0"
always:
- name: teardown
nxos_feature: *feature_off
when: platform is not search('N35')