2018-08-24 10:00:40 +05:30
|
|
|
# Test code for the vmware_local_role_facts 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)
|
|
|
|
|
2019-04-24 15:11:47 -04:00
|
|
|
- import_role:
|
|
|
|
name: prepare_vmware_tests
|
|
|
|
|
2018-11-02 09:58:36 +01:00
|
|
|
- name: Set list of Roles in fact
|
|
|
|
set_fact:
|
|
|
|
role_list:
|
|
|
|
- Admin
|
2020-01-09 13:12:34 -05:00
|
|
|
# With govcsim, NoCryptoAdmin has no privilege.
|
|
|
|
# - NoCryptoAdmin
|
2018-11-02 09:58:36 +01:00
|
|
|
- Anonymous
|
|
|
|
- ReadOnly
|
|
|
|
|
2019-04-24 15:11:47 -04:00
|
|
|
- &role_data
|
|
|
|
name: Gather Role facts
|
2018-08-24 10:00:40 +05:30
|
|
|
vmware_local_role_facts:
|
2019-04-24 15:11:47 -04:00
|
|
|
hostname: "{{ vcenter_hostname }}"
|
|
|
|
username: "{{ vcenter_username }}"
|
|
|
|
password: "{{ vcenter_password }}"
|
2018-08-24 10:00:40 +05:30
|
|
|
validate_certs: no
|
2018-11-02 09:58:36 +01:00
|
|
|
register: role_details
|
2018-08-24 10:00:40 +05:30
|
|
|
|
2020-01-09 13:12:34 -05:00
|
|
|
- &list_to_dict
|
|
|
|
name: List to dict
|
|
|
|
set_fact:
|
|
|
|
role_dict: "{{ dict(role_details.local_role_facts|map(attribute='role_name')|zip(role_details.local_role_facts)) }}"
|
|
|
|
|
|
|
|
- name: Test if NoAccess has no privilege
|
|
|
|
assert:
|
|
|
|
that: "{{ role_dict['NoAccess']['privileges'] | list | length == 0 }}"
|
|
|
|
|
2019-04-24 15:11:47 -04:00
|
|
|
- &role_test
|
|
|
|
name: Test if role id is present for role
|
2018-08-24 10:00:40 +05:30
|
|
|
assert:
|
2020-01-09 13:12:34 -05:00
|
|
|
that: "{{ role_dict[item]['privileges'] | list | length > 0 }}"
|
2018-11-02 09:58:36 +01:00
|
|
|
with_items: "{{ role_list }}"
|
2018-08-24 10:00:40 +05:30
|
|
|
|
2019-04-24 15:11:47 -04:00
|
|
|
- <<: *role_data
|
|
|
|
name: Gather Role facts in check mode
|
2018-08-24 10:00:40 +05:30
|
|
|
check_mode: yes
|
|
|
|
|
2019-04-24 15:11:47 -04:00
|
|
|
- <<: *role_test
|
|
|
|
name: Test if role id is present for role in check mode
|