mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
7db2ce5be3
* added description parameter to create request * added changelog fragment * Update changelogs/fragments/1196-use_description-in-gitlab-group-creation.yml Co-authored-by: Felix Fontein <felix@fontein.de> * added integration test for description in gitlab_group * per request in the PR, creating separate task for the description issue in the integration test * replaced deprecated param names with new names * description should be optional to keep backward compatibility * Update plugins/modules/source_control/gitlab/gitlab_group.py Co-authored-by: Felix Fontein <felix@fontein.de>
74 lines
1.9 KiB
YAML
74 lines
1.9 KiB
YAML
####################################################################
|
|
# WARNING: These are designed specifically for Ansible tests #
|
|
# and should not be used as examples of how to write Ansible roles #
|
|
####################################################################
|
|
|
|
- name: Install required libs
|
|
pip:
|
|
name: python-gitlab
|
|
state: present
|
|
|
|
- name: Cleanup GitLab Group
|
|
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
|
|
gitlab_group:
|
|
api_url: "{{ gitlab_host }}"
|
|
validate_certs: false
|
|
api_token: "{{ gitlab_login_token }}"
|
|
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:
|
|
api_url: "{{ gitlab_host }}"
|
|
validate_certs: false
|
|
api_token: "{{ gitlab_login_token }}"
|
|
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
|
|
|
|
- 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"
|