2020-09-25 08:01:17 +02:00
|
|
|
####################################################################
|
|
|
|
# WARNING: These are designed specifically for Ansible tests #
|
|
|
|
# and should not be used as examples of how to write Ansible roles #
|
|
|
|
####################################################################
|
|
|
|
|
2020-03-09 10:11:07 +01:00
|
|
|
- name: Install required libs
|
|
|
|
pip:
|
|
|
|
name: python-gitlab
|
|
|
|
state: present
|
|
|
|
|
|
|
|
- name: Cleanup GitLab Group
|
|
|
|
gitlab_group:
|
2020-11-11 13:33:38 +01:00
|
|
|
api_url: "{{ gitlab_host }}"
|
2020-03-09 10:11:07 +01:00
|
|
|
validate_certs: false
|
2020-11-11 13:33:38 +01:00
|
|
|
api_token: "{{ gitlab_login_token }}"
|
2020-03-09 10:11:07 +01:00
|
|
|
name: ansible_test_group
|
|
|
|
path: ansible_test_group
|
|
|
|
state: absent
|
|
|
|
|
|
|
|
- name: Create GitLab Group
|
|
|
|
gitlab_group:
|
2020-11-11 13:33:38 +01:00
|
|
|
api_url: "{{ gitlab_host }}"
|
2020-03-09 10:11:07 +01:00
|
|
|
validate_certs: false
|
2020-11-11 13:33:38 +01:00
|
|
|
api_token: "{{ gitlab_login_token }}"
|
2020-03-09 10:11:07 +01:00
|
|
|
name: ansible_test_group
|
|
|
|
path: ansible_test_group
|
|
|
|
state: present
|
|
|
|
register: gitlab_group_state
|
|
|
|
|
|
|
|
- name: Test group created
|
|
|
|
assert:
|
|
|
|
that:
|
|
|
|
- gitlab_group_state is changed
|
|
|
|
|
|
|
|
|
|
|
|
- name: Create GitLab Group ( Idempotency test )
|
|
|
|
gitlab_group:
|
2020-11-11 13:33:38 +01:00
|
|
|
api_url: "{{ gitlab_host }}"
|
2020-03-09 10:11:07 +01:00
|
|
|
validate_certs: false
|
2020-11-11 13:33:38 +01:00
|
|
|
api_token: "{{ gitlab_login_token }}"
|
2020-03-09 10:11:07 +01:00
|
|
|
name: ansible_test_group
|
|
|
|
path: ansible_test_group
|
|
|
|
state: present
|
|
|
|
register: gitlab_group_state_again
|
|
|
|
|
|
|
|
- name: Test module is idempotent
|
|
|
|
assert:
|
|
|
|
that:
|
|
|
|
- gitlab_group_state_again is not changed
|
2020-11-11 13:33:38 +01:00
|
|
|
|
|
|
|
- name: Cleanup GitLab Group for Description Test
|
|
|
|
gitlab_group:
|
|
|
|
api_url: "{{ gitlab_host }}"
|
|
|
|
validate_certs: false
|
|
|
|
api_token: "{{ gitlab_login_token }}"
|
|
|
|
name: ansible_test_group
|
|
|
|
path: ansible_test_group
|
|
|
|
state: absent
|
|
|
|
|
|
|
|
- name: Create GitLab Group for Description Test
|
|
|
|
gitlab_group:
|
|
|
|
api_url: "{{ gitlab_host }}"
|
|
|
|
validate_certs: false
|
|
|
|
api_token: "{{ gitlab_login_token }}"
|
|
|
|
name: ansible_test_group
|
|
|
|
path: ansible_test_group
|
|
|
|
description: My Test Group
|
|
|
|
state: present
|
|
|
|
register: gitlab_group_state_desc
|
|
|
|
|
|
|
|
- name: Test group created with Description
|
|
|
|
assert:
|
|
|
|
that:
|
|
|
|
- gitlab_group_state_desc.group.description == "My Test Group"
|