ansible/test/integration/targets/vyos_lldp/tests/cli/basic.yaml
Nathaniel Case 2425374fdd
Actually move vyos tests to network_cli (#33710)
* Fix vyos on network_cli on python3

bytes do not have format() in Python3

* Push connection to tasks, with bonus connection=local test

* Run tests without explicit connection set

* Add/update START messages where appropriate
2017-12-13 14:30:24 -05:00

44 lines
812 B
YAML

---
- debug: msg="START cli/basic.yaml on connection={{ ansible_connection }}"
- name: Make sure LLDP is not running before tests
vyos_config:
lines: delete service lldp
- name: Enable LLDP service
vyos_lldp:
state: present
register: result
- assert:
that:
- 'result.changed == true'
- '"set service lldp" in result.commands'
- name: Enable LLDP service again (idempotent)
vyos_lldp:
state: present
register: result
- assert:
that:
- 'result.changed == false'
- name: Disable LLDP service
vyos_lldp:
state: absent
register: result
- assert:
that:
- 'result.changed == true'
- '"delete service lldp" in result.commands'
- name:
vyos_lldp:
state: absent
register: result
- assert:
that:
- 'result.changed == false'