848327a6b5
* Fix eapi tests to use become (#40838)
* Return the expected prompt character based on become status
* Update eos_banner tests for eapi
* Update eos_config tests for eapi
* Update eos_facts tests for eapi
* Update eos_interface tests for eapi
* Update eos_l3_interface tests for eapi
* Update eos_lldp tests for eapi
* Update eos_logging tests for eapi
* Update eos_smoke tests for eapi
* Update eos_system tests for eapi
(cherry picked from commit 20f93816d6
)
* Remove local from most eos tests now that provider is out
51 lines
981 B
YAML
51 lines
981 B
YAML
---
|
|
- debug: msg="START eos_lldp eapi/basic.yaml on connection={{ ansible_connection }}"
|
|
|
|
- name: Make sure LLDP is not running before tests
|
|
eos_config:
|
|
lines: no lldp run
|
|
become: yes
|
|
|
|
- name: Enable LLDP service
|
|
eos_lldp:
|
|
state: present
|
|
become: yes
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- 'result.changed == true'
|
|
- '"lldp run" in result.commands'
|
|
|
|
- name: Enable LLDP service again (idempotent)
|
|
eos_lldp:
|
|
state: present
|
|
become: yes
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- 'result.changed == false'
|
|
|
|
- name: Disable LLDP service
|
|
eos_lldp:
|
|
state: absent
|
|
become: yes
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- 'result.changed == true'
|
|
- '"no lldp run" in result.commands'
|
|
|
|
- name: Disable LLDP service (idempotent)
|
|
eos_lldp:
|
|
state: absent
|
|
become: yes
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- 'result.changed == false'
|
|
|
|
- debug: msg="END eos_lldp eapi/basic.yaml on connection={{ ansible_connection }}"
|