48ecbb8fb9
* fix connection gets overridden by network_cli for transport nxapi,eapi net_* modules Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> * Define functions in individual action plugins to avoid code duplication Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> * Add net_* eos tests for eapi Signed-off-by: Trishna Guha <trishnaguha17@gmail.com> * update plugin code
39 lines
1,016 B
YAML
39 lines
1,016 B
YAML
---
|
|
- debug: msg="START connection={{ ansible_connection }} nxos common/net_logging.yaml"
|
|
- debug: msg="Using provider={{ connection.transport }}"
|
|
when: ansible_connection == "local"
|
|
|
|
# Add minimal testcase to check args are passed correctly to
|
|
# implementation module and module run is successful.
|
|
|
|
- name: Delete/disable console logging - setup
|
|
net_logging:
|
|
dest: console
|
|
dest_level: 0
|
|
state: absent
|
|
provider: "{{ connection }}"
|
|
register: result
|
|
|
|
- name: Set up console logging using platform agnostic module
|
|
net_logging:
|
|
dest: console
|
|
dest_level: 0
|
|
state: present
|
|
provider: "{{ connection }}"
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- 'result.changed == true'
|
|
- '"logging console 0" in result.commands'
|
|
|
|
- name: Delete/disable console logging - teardown
|
|
net_logging:
|
|
dest: console
|
|
dest_level: 0
|
|
state: absent
|
|
provider: "{{ connection }}"
|
|
register: result
|
|
|
|
|
|
- debug: msg="END connection={{ ansible_connection }} nxos common/net_logging.yaml"
|