mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.2 KiB
YAML
39 lines
1.2 KiB
YAML
5 years ago
|
# Test code for the vmware_local_user_info module.
|
||
|
# Copyright: (c) 2018, Abhijeet Kasurde <akasurde@redhat.com>
|
||
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||
|
|
||
|
# Commenting local user testcases as older vcsim docker image
|
||
|
# does not support this.
|
||
|
- when: vcsim is not defined
|
||
|
block:
|
||
|
- import_role:
|
||
|
name: prepare_vmware_tests
|
||
|
vars:
|
||
|
setup_esxi_instance: true
|
||
|
|
||
|
# Local user manager works only with standalone ESXi server
|
||
|
- &user_info_data
|
||
|
name: Gather info about users
|
||
|
vmware_local_user_info:
|
||
|
hostname: "{{ esxi1 }}"
|
||
|
username: "{{ esxi_user }}"
|
||
|
password: "{{ esxi_password }}"
|
||
|
validate_certs: False
|
||
|
register: all_user_info
|
||
|
|
||
|
- name: ensure user info are gathered
|
||
|
assert:
|
||
|
that:
|
||
|
- not all_user_info.changed
|
||
|
- all_user_info.local_user_info is defined
|
||
|
|
||
|
- <<: *user_info_data
|
||
|
name: Gather info about users in check mode
|
||
|
check_mode: yes
|
||
|
|
||
|
- name: ensure user info are gathered
|
||
|
assert:
|
||
|
that:
|
||
|
- not all_user_info.changed
|
||
|
- all_user_info.local_user_info is defined
|