ansible/test/integration/targets/nxos_user/tests/common/basic.yaml
Trishna Guha 48ecbb8fb9
fix connection gets overridden by network_cli for transport nxapi,eapi net_* modules (#34778)
* 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
2018-01-15 13:16:41 +05:30

59 lines
1.3 KiB
YAML

---
- debug: msg="START connection={{ ansible_connection }} nxos_user basic test"
- debug: msg="Using provider={{ connection.transport }}"
when: ansible_connection == "local"
- name: Remove old entries of user
nxos_user:
aggregate:
- { name: ansibletest1 }
- { name: ansibletest2 }
- { name: ansibletest3 }
state: absent
provider: "{{ connection }}"
# Start tests
- name: Create user
nxos_user:
name: ansibletest1
roles: network-operator
state: present
provider: "{{ connection }}"
register: result
- assert:
that:
- 'result.changed == true'
- '"username" in result.commands[0]'
- '"role network-operator" in result.commands[1]'
- name: Collection of users
nxos_user:
aggregate:
- { name: ansibletest2 }
- { name: ansibletest3 }
state: present
roles: network-admin
provider: "{{ connection }}"
register: result
- assert:
that:
- 'result.changed == true'
- name: tearDown
nxos_user:
aggregate:
- { name: ansibletest1 }
- { name: ansibletest2 }
- { name: ansibletest3 }
state: absent
provider: "{{ connection }}"
register: result
- assert:
that:
- 'result.changed == true'
- '"no username" in result.commands[0]'
- debug: msg="END connection={{ ansible_connection }} nxos_user basic test"