forked from ansible/ansible
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix junos integration zuul CI failures (ansible#57309)
- Loading branch information
1 parent
51229eb
commit a867ced
Showing
9 changed files
with
347 additions
and
263 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
245 changes: 132 additions & 113 deletions
245
test/integration/targets/junos_lldp/tests/netconf/basic.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,119 +1,138 @@ | ||
--- | ||
- debug: msg="START junos_lldp netconf/basic.yaml on connection={{ ansible_connection }}" | ||
|
||
- name: setup - Disable lldp and remove it's configuration | ||
junos_lldp: | ||
state: absent | ||
provider: "{{ netconf }}" | ||
|
||
- name: Enable lldp | ||
junos_lldp: | ||
state: present | ||
provider: "{{ netconf }}" | ||
- name: get supported protocols | ||
junos_command: | ||
commands: show lldp | ||
register: result | ||
|
||
- assert: | ||
that: | ||
- "result.changed == true" | ||
|
||
- name: Enable lldp (idempotent) | ||
junos_lldp: | ||
state: present | ||
provider: "{{ netconf }}" | ||
register: result | ||
|
||
- assert: | ||
that: | ||
- "result.changed == false" | ||
|
||
- name: configure lldp parameters and enable lldp | ||
junos_lldp: | ||
interval: 10 | ||
hold_multiplier: 5 | ||
transmit_delay: 2 | ||
state: present | ||
provider: "{{ netconf }}" | ||
register: result | ||
|
||
- assert: | ||
that: | ||
- "result.changed == true" | ||
- result.diff.prepared is search("\+ *advertisement-interval 10") | ||
- result.diff.prepared is search("\+ *transmit-delay 2") | ||
- result.diff.prepared is search("\+ *hold-multiplier 5") | ||
|
||
- name: configure lldp parameters and enable lldp(idempotent) | ||
junos_lldp: | ||
interval: 10 | ||
hold_multiplier: 5 | ||
transmit_delay: 2 | ||
state: present | ||
provider: "{{ netconf }}" | ||
register: result | ||
|
||
- assert: | ||
that: | ||
- "result.changed == false" | ||
|
||
- name: configure lldp parameters and disable lldp | ||
junos_lldp: | ||
interval: 10 | ||
hold_multiplier: 5 | ||
transmit_delay: 2 | ||
state: disabled | ||
provider: "{{ netconf }}" | ||
register: result | ||
|
||
- assert: | ||
that: | ||
- "result.changed == true" | ||
- result.diff.prepared is search("\+ *disable") | ||
- "'advertisement-interval 10;' not in result.diff.prepared" | ||
- "'transmit-delay 2;' not in result.diff.prepared" | ||
- "'hold-multiplier 5;' not in result.diff.prepared" | ||
|
||
- name: configure lldp parameters and enable lldp | ||
junos_lldp: | ||
interval: 10 | ||
hold_multiplier: 5 | ||
transmit_delay: 2 | ||
state: enabled | ||
provider: "{{ netconf }}" | ||
register: result | ||
|
||
- assert: | ||
that: | ||
- "result.changed == true" | ||
- result.diff.prepared is search("\- *disable") | ||
- "'advertisement-interval 10;' not in result.diff.prepared" | ||
- "'transmit-delay 2;' not in result.diff.prepared" | ||
- "'hold-multiplier 5;' not in result.diff.prepared" | ||
|
||
- name: Remove lldp configuration and diable lldp | ||
junos_lldp: | ||
interval: 10 | ||
hold_multiplier: 5 | ||
transmit_delay: 2 | ||
state: absent | ||
provider: "{{ netconf }}" | ||
register: result | ||
|
||
- assert: | ||
that: | ||
- "result.changed == true" | ||
- result.diff.prepared is search("\+ *disable") | ||
- result.diff.prepared is search("\- *advertisement-interval 10") | ||
- result.diff.prepared is search("\- *transmit-delay 2") | ||
- result.diff.prepared is search("\- *hold-multiplier 5") | ||
|
||
- name: Remove lldp (idempotent) | ||
junos_lldp: | ||
state: absent | ||
provider: "{{ netconf }}" | ||
register: result | ||
|
||
- assert: | ||
that: | ||
- "result.changed == false" | ||
ignore_errors: yes | ||
|
||
- name: lldp supported | ||
set_fact: | ||
lldp_supported: True | ||
when: not result.failed | ||
|
||
- name: lldp not supported | ||
set_fact: | ||
lldp_supported: False | ||
when: result.failed | ||
|
||
- block: | ||
- name: setup - Disable lldp and remove it's configuration | ||
junos_lldp: | ||
state: absent | ||
provider: "{{ netconf }}" | ||
|
||
- name: Enable lldp | ||
junos_lldp: | ||
state: present | ||
provider: "{{ netconf }}" | ||
register: result | ||
|
||
- assert: | ||
that: | ||
- "result.changed == true" | ||
|
||
- name: Enable lldp (idempotent) | ||
junos_lldp: | ||
state: present | ||
provider: "{{ netconf }}" | ||
register: result | ||
|
||
- assert: | ||
that: | ||
- "result.changed == false" | ||
|
||
- name: configure lldp parameters and enable lldp | ||
junos_lldp: | ||
interval: 10 | ||
hold_multiplier: 5 | ||
transmit_delay: 2 | ||
state: present | ||
provider: "{{ netconf }}" | ||
register: result | ||
|
||
- assert: | ||
that: | ||
- "result.changed == true" | ||
- result.diff.prepared is search("\+ *advertisement-interval 10") | ||
- result.diff.prepared is search("\+ *transmit-delay 2") | ||
- result.diff.prepared is search("\+ *hold-multiplier 5") | ||
|
||
- name: configure lldp parameters and enable lldp(idempotent) | ||
junos_lldp: | ||
interval: 10 | ||
hold_multiplier: 5 | ||
transmit_delay: 2 | ||
state: present | ||
provider: "{{ netconf }}" | ||
register: result | ||
|
||
- assert: | ||
that: | ||
- "result.changed == false" | ||
|
||
- name: configure lldp parameters and disable lldp | ||
junos_lldp: | ||
interval: 10 | ||
hold_multiplier: 5 | ||
transmit_delay: 2 | ||
state: disabled | ||
provider: "{{ netconf }}" | ||
register: result | ||
|
||
- assert: | ||
that: | ||
- "result.changed == true" | ||
- result.diff.prepared is search("\+ *disable") | ||
- "'advertisement-interval 10;' not in result.diff.prepared" | ||
- "'transmit-delay 2;' not in result.diff.prepared" | ||
- "'hold-multiplier 5;' not in result.diff.prepared" | ||
|
||
- name: configure lldp parameters and enable lldp | ||
junos_lldp: | ||
interval: 10 | ||
hold_multiplier: 5 | ||
transmit_delay: 2 | ||
state: enabled | ||
provider: "{{ netconf }}" | ||
register: result | ||
|
||
- assert: | ||
that: | ||
- "result.changed == true" | ||
- result.diff.prepared is search("\- *disable") | ||
- "'advertisement-interval 10;' not in result.diff.prepared" | ||
- "'transmit-delay 2;' not in result.diff.prepared" | ||
- "'hold-multiplier 5;' not in result.diff.prepared" | ||
|
||
- name: Remove lldp configuration and diable lldp | ||
junos_lldp: | ||
interval: 10 | ||
hold_multiplier: 5 | ||
transmit_delay: 2 | ||
state: absent | ||
provider: "{{ netconf }}" | ||
register: result | ||
|
||
- assert: | ||
that: | ||
- "result.changed == true" | ||
- result.diff.prepared is search("\+ *disable") | ||
- result.diff.prepared is search("\- *advertisement-interval 10") | ||
- result.diff.prepared is search("\- *transmit-delay 2") | ||
- result.diff.prepared is search("\- *hold-multiplier 5") | ||
|
||
- name: Remove lldp (idempotent) | ||
junos_lldp: | ||
state: absent | ||
provider: "{{ netconf }}" | ||
register: result | ||
|
||
- assert: | ||
that: | ||
- "result.changed == false" | ||
|
||
when: lldp_supported | ||
|
||
- debug: msg="END junos_lldp netconf/basic.yaml on connection={{ ansible_connection }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.