ansible/test/integration/targets/gitlab_runner/tasks/main.yml
Andrea Tartaglia 042aeba46c Base integration test for gitlab modules (#51490)
* Added basic integration test targets for gitlab modules

* Removed cloud/gitlab config from aliases, it doesn't exist yet

* Fixed CI issues
2019-01-31 10:20:33 +00:00

68 lines
1.9 KiB
YAML

- name: Install required libs
pip:
name: python-gitlab
state: present
- name: Create {{ gitlab_project_name }}
gitlab_project:
server_url: "{{ gitlab_host }}"
validate_certs: False
login_token: "{{ gitlab_login_token }}"
name: "{{ gitlab_project_name }}"
state: present
- name: Cleanup Gitlab runner
gitlab_runner:
server_url: "{{ gitlab_host }}"
validate_certs: false
login_token: "{{ gitlab_login_token }}"
description: "{{ gitlab_runner_name }}"
registration_token: "{{ gitlab_runner_registration_token }}"
state: absent
- name: Create Gitlab Runner
gitlab_runner:
server_url: "{{ gitlab_host }}"
validate_certs: false
login_token: "{{ gitlab_login_token }}"
description: "{{ gitlab_runner_name }}"
registration_token: "{{ gitlab_runner_registration_token }}"
state: present
register: gitlab_runner_state
- name: Test group created
assert:
that:
- gitlab_runner_state is changed
#### COMMENTED AS MODULE WILL UPDATE THE RUNNER IF EXISTS. TO BE DISCUSSED ####
# - name: Create Gitlab Runner ( Idempotency test )
# gitlab_runner:
# server_url: "{{ gitlab_host }}"
# validate_certs: false
# login_token: "{{ gitlab_login_token }}"
# description: "{{ gitlab_runner_name }}"
# registration_token: "{{ gitlab_runner_registration_token }}"
# state: present
# register: gitlab_runner_state_again
# - name: Test module is idempotent
# assert:
# that:
# - gitlab_runner_state_again is not changed
- name: Remove Gitlab Runner
gitlab_runner:
server_url: "{{ gitlab_host }}"
validate_certs: false
login_token: "{{ gitlab_login_token }}"
description: "{{ gitlab_runner_name }}"
registration_token: "{{ gitlab_runner_registration_token }}"
state: absent
register: gitlab_runner_state_absent
- name: Assert runner has been removed
assert:
that:
- gitlab_runner_state_absent is changed