ansible/test/integration/targets/eos_user/tests/cli/net_user.yaml
Nathaniel Case 7f5d1ab2b7
Removed in 29 (#63680)
* Eh, 2.10 is close enough

* drop top-level authorize

* Remove from documentation

* Remove load_params

* Centralize this junos thing

* Fixup user modules

* I'm 95% sure this did not do what it was supposed to

* nxos_hsrp: I don't think this is an actual module parameter

* Try to fix junos_package tests

* Move local params to provider

* Promote 'timeout' to a real parameter for eos_eapi

* Don't assume provider exists?

* move another timeout

* Provider now always has auth_pass

* Fix junos tests to avoid NameErrors
2019-10-24 15:01:05 -04:00

40 lines
No EOL
1,004 B
YAML

---
- debug: msg="START eos cli/net_user.yaml on connection={{ ansible_connection }}"
# Add minimal testcase to check args are passed correctly to
# implementation module and module run is successful.
- name: Set Up
eos_config:
lines:
- no username ansibletest1
provider: "{{ cli }}"
become: yes
- name: Create user with role using platform agnostic module
net_user:
name: ansibletest1
privilege: 15
role: network-operator
state: present
configured_password: test1
provider: "{{ cli }}"
become: yes
register: result
- assert:
that:
- 'result.changed == true'
- '"username" in result.commands[0]'
- '"secret" in result.commands[0]'
- '"role network-operator" in result.commands[1]'
- '"privilege 15" in result.commands[2]'
- name: Teardown
eos_config:
lines:
- no username ansibletest1
provider: "{{ cli }}"
become: yes
- debug: msg="END eos cli/net_user.yaml on connection={{ ansible_connection }}"