483df13626
* I seem to have forgotten the back half of tests * Set http timeout from persistent_command_timeout * Tweak URL generation and provide URL on error * Push var_options to connection process * Don't wait forever if coming from persistent * Don't send the entire contents of variables to ansible-connection
33 lines
869 B
YAML
33 lines
869 B
YAML
---
|
|
- debug: msg="START connection={{ ansible_connection }} nxos common/net_user.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: "Remove old entries of user - setup"
|
|
net_user:
|
|
name: ansibletest1
|
|
state: absent
|
|
|
|
# Start tests
|
|
- name: Create user with platform agnostic module
|
|
net_user:
|
|
name: ansibletest1
|
|
roles: network-operator
|
|
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:
|
|
name: ansibletest1
|
|
state: absent
|
|
|
|
- debug: msg="END connection={{ ansible_connection }} nxos common/net_user.yaml"
|