Run neighbors intent tests for ios_interface only if show lldp contains netdev (#31539)
This commit is contained in:
parent
24c360287e
commit
bd17edd5ed
1 changed files with 72 additions and 61 deletions
|
@ -61,6 +61,14 @@
|
|||
- "result.failed == true"
|
||||
- "'state eq(up)' in result.failed_conditions"
|
||||
|
||||
- name: Register show neighbors detail
|
||||
ios_command:
|
||||
commands:
|
||||
- show lldp neighbors
|
||||
authorize: yes
|
||||
register: show_lldp_neighbors_result
|
||||
|
||||
- block:
|
||||
- name: Check neighbors intent arguments
|
||||
ios_interface:
|
||||
name: Gi0/0
|
||||
|
@ -91,6 +99,7 @@
|
|||
- "result.failed == true"
|
||||
- "'host dummy_host' in result.failed_conditions"
|
||||
- "'port dummy_port' in result.failed_conditions"
|
||||
when: '"netdev" in show_lldp_neighbors_result.stdout'
|
||||
|
||||
- name: Aggregate config + intent (pass)
|
||||
ios_interface:
|
||||
|
@ -107,6 +116,7 @@
|
|||
that:
|
||||
- "result.failed == false"
|
||||
|
||||
- block:
|
||||
- name: Aggregate neighbors intent (pass)
|
||||
ios_interface:
|
||||
aggregate:
|
||||
|
@ -142,3 +152,4 @@
|
|||
- "result.failed == true"
|
||||
- "'host dummy_host' in result.failed_conditions"
|
||||
- "'port dummy_port' in result.failed_conditions"
|
||||
when: "'netdev' in show_lldp_neighbors_result.stdout"
|
||||
|
|
Loading…
Reference in a new issue