forked from ansible/ansible
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
VMware: check for ESXi server while creating user (ansible#33061)
This fix check for ESXi server instance before proceeding with managing local user. Also, adds integration tests for this change. Fixes: ansible#32465 Signed-off-by: Abhijeet Kasurde <[email protected]>
- Loading branch information
Showing
10 changed files
with
183 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
posix/ci/cloud/group1/vcenter | ||
cloud/vcenter | ||
destructive |
130 changes: 130 additions & 0 deletions
130
test/integration/targets/vmware_local_user_manager/tasks/main.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,130 @@ | ||
# Test code for the vmware_local_user_manager module. | ||
# Copyright: (c) 2017, Abhijeet Kasurde <[email protected]> | ||
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) | ||
|
||
- name: make sure pyvmomi is installed | ||
pip: | ||
name: pyvmomi | ||
state: latest | ||
when: "{{ ansible_user_id == 'root' }}" | ||
|
||
- name: store the vcenter container ip | ||
set_fact: | ||
vcsim: "{{ lookup('env', 'vcenter_host') }}" | ||
|
||
- debug: var=vcsim | ||
|
||
- name: Wait for Flask controller to come up online | ||
wait_for: | ||
host: "{{ vcsim }}" | ||
port: 5000 | ||
state: started | ||
|
||
- name: kill vcsim | ||
uri: | ||
url: http://{{ vcsim }}:5000/killall | ||
|
||
# Local user manager works only with standalone ESXi server | ||
- name: start vcsim | ||
uri: | ||
url: http://{{ vcsim }}:5000/spawn?esx=1 | ||
register: vcsim_instance | ||
|
||
- debug: | ||
var: vcsim_instance | ||
|
||
- name: Wait for vcsim server to come up online | ||
wait_for: | ||
host: "{{ vcsim }}" | ||
port: 443 | ||
state: started | ||
|
||
# Testcase 0001: Add Local user in ESXi server | ||
- name: add local user | ||
vmware_local_user_manager: | ||
hostname: "{{ vcsim }}" | ||
username: "{{ vcsim_instance.json.username }}" | ||
password: "{{ vcsim_instance.json.password }}" | ||
validate_certs: no | ||
local_user_name: testuser_0001 | ||
local_user_password: "SamplePassword!" | ||
state: present | ||
register: user_add_0001 | ||
|
||
- name: ensure user is created | ||
assert: | ||
that: | ||
- user_add_0001.changed == true | ||
|
||
# Testcase 0002: Delete Local user in ESXi server | ||
#- name: Delete local user | ||
# vmware_local_user_manager: | ||
# hostname: "{{ vcsim }}" | ||
# username: "{{ vcsim_instance.json.username }}" | ||
# password: "{{ vcsim_instance.json.password }}" | ||
# validate_certs: no | ||
# local_user_name: testuser_0001 | ||
# state: absent | ||
# register: user_delete_0002 | ||
|
||
#- name: ensure user is deleted | ||
# assert: | ||
# that: | ||
# - user_delete_0002.changed == true | ||
|
||
#- name: kill vcsim | ||
# uri: | ||
# url: http://{{ vcsim }}:5000/killall | ||
|
||
# Local user manager works only with standalone ESXi server not with vCenter | ||
# So testcase should check failures | ||
#- name: start vcsim | ||
# uri: | ||
# url: http://{{ vcsim }}:5000/spawn?cluster=2 | ||
# register: vcsim_instance | ||
|
||
#- debug: | ||
# var: vcsim_instance | ||
|
||
#- name: Wait for vcsim server to come up online | ||
# wait_for: | ||
# host: "{{ vcsim }}" | ||
# port: 443 | ||
# state: started | ||
|
||
# Testcase 0003: Add Local user in vCenter server | ||
#- name: add local user | ||
# vmware_local_user_manager: | ||
# hostname: "{{ vcsim }}" | ||
# username: "{{ vcsim_instance.json.username }}" | ||
# password: "{{ vcsim_instance.json.password }}" | ||
# validate_certs: no | ||
# local_user_name: testuser_0003 | ||
# local_user_password: "SamplePassword!" | ||
# state: present | ||
# register: user_add_0003 | ||
# ignore_errors: yes | ||
|
||
#- name: ensure user is created | ||
# assert: | ||
# that: | ||
# - user_add_0003.changed == false | ||
# - "{{ 'Failed to get local account manager settings' in user_add_0003.msg }}" | ||
|
||
## Testcase 0003: Delete Local user in vCenter server | ||
#- name: Delete local user | ||
# vmware_local_user_manager: | ||
# hostname: "{{ vcsim }}" | ||
# username: "{{ vcsim_instance.json.username }}" | ||
# password: "{{ vcsim_instance.json.password }}" | ||
# validate_certs: no | ||
# local_user_name: testuser_0003 | ||
# state: absent | ||
# register: user_delete_0004 | ||
# ignore_errors: yes | ||
|
||
#- name: ensure user is deleted | ||
# assert: | ||
# that: | ||
# - user_delete_0004.changed == false | ||
# - "{{ 'Failed to get local account manager settings' in user_delete_0004.msg }}" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters