2018-01-10 16:58:49 +01:00
|
|
|
---
|
2018-01-15 08:46:41 +01:00
|
|
|
- debug: msg="START connection={{ ansible_connection }} nxos common/net_user.yaml"
|
|
|
|
- debug: msg="Using provider={{ connection.transport }}"
|
|
|
|
when: ansible_connection == "local"
|
2018-01-10 16:58:49 +01:00
|
|
|
|
|
|
|
# Add minimal testcase to check args are passed correctly to
|
|
|
|
# implementation module and module run is successful.
|
|
|
|
|
2018-01-15 08:46:41 +01:00
|
|
|
- name: "Remove old entries of user - setup"
|
2018-01-10 16:58:49 +01:00
|
|
|
net_user:
|
2018-01-15 08:46:41 +01:00
|
|
|
name: ansibletest1
|
2018-07-02 15:43:51 +02:00
|
|
|
provider: "{{ connection }}"
|
2018-01-10 16:58:49 +01:00
|
|
|
state: absent
|
|
|
|
|
|
|
|
# Start tests
|
|
|
|
- name: Create user with platform agnostic module
|
|
|
|
net_user:
|
|
|
|
name: ansibletest1
|
|
|
|
roles: network-operator
|
2018-07-02 15:43:51 +02:00
|
|
|
provider: "{{ connection }}"
|
2018-01-10 16:58:49 +01:00
|
|
|
state: present
|
|
|
|
register: result
|
|
|
|
|
|
|
|
- assert:
|
|
|
|
that:
|
|
|
|
- 'result.changed == true'
|
|
|
|
- '"username" in result.commands[0]'
|
|
|
|
- '"role network-operator" in result.commands[1]'
|
|
|
|
|
|
|
|
- name: teardown
|
|
|
|
net_user:
|
2018-01-15 08:46:41 +01:00
|
|
|
name: ansibletest1
|
2018-07-02 15:43:51 +02:00
|
|
|
provider: "{{ connection }}"
|
2018-01-10 16:58:49 +01:00
|
|
|
state: absent
|
|
|
|
|
2018-01-15 08:46:41 +01:00
|
|
|
- debug: msg="END connection={{ ansible_connection }} nxos common/net_user.yaml"
|