mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
712d30f46c
* added eos_smoke tests * removed left over file * added note to uncomment broken eapi test when #36919 is fixed * uncommented fixed test, added unbecome test * skip become tests when connection=local
26 lines
651 B
YAML
26 lines
651 B
YAML
---
|
|
- debug: msg="START cli/misc_tests.yaml on connection={{ ansible_connection }}"
|
|
|
|
|
|
# test become and unbecome
|
|
- block:
|
|
- name: command that does require become (should fail)
|
|
eos_command:
|
|
commands: show running-config
|
|
provider: "{{ eapi }}"
|
|
become: no
|
|
ignore_errors: yes
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- 'result.failed == true'
|
|
- '"privileged mode required" in result.module_stderr'
|
|
|
|
- name: command that doesn't require become
|
|
eos_command:
|
|
commands: show uptime
|
|
provider: "{{ eapi }}"
|
|
become: no
|
|
|
|
when: "ansible_connection != 'local'"
|