01e4c41be4
* nxos_integration_tests: Removing obsolete provider parameter * nxos: removing support for local-nxapi plugin * nxos: removing LocalNxapi plugin implementation * nxos_nxapi: removing local plugin usage * REVERT - nxos: removing LocalNxapi plugin implementation * Addressing yamllint issues * Removing the condition on the debug messages * Restoring changes done to nxos_nxapi* tests * Retaining timeout of 500 on nxos_smoke test * Some cleanup * Addressing latest comments * Restoring the nxos_smoke and removing timeout from nxos_config and nxos_rollback
55 lines
1.1 KiB
YAML
55 lines
1.1 KiB
YAML
---
|
|
- debug: msg="START connection={{ ansible_connection }} nxos_user basic test"
|
|
|
|
- name: Remove old entries of user
|
|
nxos_user:
|
|
aggregate:
|
|
- { name: ansibletest1 }
|
|
- { name: ansibletest2 }
|
|
- { name: ansibletest3 }
|
|
state: absent
|
|
|
|
# Start tests
|
|
- name: Create user
|
|
nxos_user:
|
|
name: ansibletest1
|
|
roles: network-operator
|
|
state: present
|
|
register: result
|
|
|
|
- debug: msg="{{result}}"
|
|
|
|
- assert:
|
|
that:
|
|
- 'result.changed == true'
|
|
- '"username" in result.commands[0]'
|
|
- '"role network-operator" in result.commands[0]'
|
|
|
|
- name: Collection of users
|
|
nxos_user:
|
|
aggregate:
|
|
- { name: ansibletest2 }
|
|
- { name: ansibletest3 }
|
|
state: present
|
|
roles: network-admin
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- 'result.changed == true'
|
|
|
|
- name: tearDown
|
|
nxos_user:
|
|
aggregate:
|
|
- { name: ansibletest1 }
|
|
- { name: ansibletest2 }
|
|
- { name: ansibletest3 }
|
|
state: absent
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- 'result.changed == true'
|
|
- '"no username" in result.commands[0]'
|
|
|
|
- debug: msg="END connection={{ ansible_connection }} nxos_user basic test"
|