1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00
community.general/test/integration/targets/eos_lldp/tests/cli/basic.yaml

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