ansible/test/integration/targets/eos_eapi/tests/cli/stop.yaml
Nathaniel Case 513c75079e
Port eos tests to network_cli (#33586)
* Add eos and fix tests to run multiple connections

* Update tests to report connection

* Add missing START messages

* Fix unspecified connection

* Python 3 updates

Exceptions don't have `.message` in Python 3

* Override `become` when using `connection=local`

* Slight restructuring to make eapi easier later on

* Move eapi toggle to prepare_eos
* Pull out connection on eapi tasks
2017-12-19 15:49:49 -05:00

38 lines
745 B
YAML

- debug: msg="START CLI/STOP.YAML"
- name: Set state to stopped
eos_eapi:
state: stopped
provider: "{{ cli }}"
become: yes
register: eos_eapi_output
- eos_command:
commands:
- show management api http-commands | json
provider: "{{ cli }}"
register: http_config
- debug: var=http_config
when: debug
- name: Expect EAPI state is off
assert:
that: http_config.stdout[0].enabled == false
- name: Set state to stopped again
eos_eapi:
state: stopped
provider: "{{ cli }}"
become: yes
register: eos_eapi_output
- debug: var=eos_eapi_output
when: debug
- name: Expect action to be idempotent
assert:
that:
- "eos_eapi_output.changed == false"
- debug: msg="STOP CLI/ENABLE.YAML"