Fix eapi tests to use become (#40838)

* 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
This commit is contained in:
Nathaniel Case
2018-05-29 14:18:03 -04:00
committed by GitHub
parent 669949e6a3
commit 20f93816d6
59 changed files with 217 additions and 490 deletions

View File

@@ -4,14 +4,12 @@
- name: Make sure LLDP is not running before tests
eos_config:
lines: no lldp run
authorize: yes
provider: "{{ eapi }}"
become: yes
- name: Enable LLDP service
eos_lldp:
state: present
authorize: yes
provider: "{{ eapi }}"
become: yes
register: result
- assert:
@@ -22,8 +20,7 @@
- name: Enable LLDP service again (idempotent)
eos_lldp:
state: present
authorize: yes
provider: "{{ eapi }}"
become: yes
register: result
- assert:
@@ -33,8 +30,7 @@
- name: Disable LLDP service
eos_lldp:
state: absent
authorize: yes
provider: "{{ eapi }}"
become: yes
register: result
- assert:
@@ -45,8 +41,7 @@
- name: Disable LLDP service (idempotent)
eos_lldp:
state: absent
authorize: yes
provider: "{{ eapi }}"
become: yes
register: result
- assert: