20f93816d6
* 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
51 lines
979 B
YAML
51 lines
979 B
YAML
---
|
|
- debug: msg="START eos_lldp cli/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
|
|
register: result
|
|
become: yes
|
|
|
|
- assert:
|
|
that:
|
|
- 'result.changed == true'
|
|
- '"lldp run" in result.commands'
|
|
|
|
- name: Enable LLDP service again (idempotent)
|
|
eos_lldp:
|
|
state: present
|
|
register: result
|
|
become: yes
|
|
|
|
- assert:
|
|
that:
|
|
- 'result.changed == false'
|
|
|
|
- name: Disable LLDP service
|
|
eos_lldp:
|
|
state: absent
|
|
register: result
|
|
become: yes
|
|
|
|
- assert:
|
|
that:
|
|
- 'result.changed == true'
|
|
- '"no lldp run" in result.commands'
|
|
|
|
- name: Disable LLDP service (idempotent)
|
|
eos_lldp:
|
|
state: absent
|
|
register: result
|
|
become: yes
|
|
|
|
- assert:
|
|
that:
|
|
- 'result.changed == false'
|
|
|
|
- debug: msg="END eos_lldp cli/basic.yaml on connection={{ ansible_connection }}"
|