b9bd2c25ca
* Revert "Remove Tower module tests from CI. (#67368)"
This reverts commit b041d96762
.
* Test: Bump TOWER_VERSION to 3.6.2
39 lines
690 B
YAML
39 lines
690 B
YAML
- name: Create a User
|
|
tower_user:
|
|
first_name: Joe
|
|
last_name: User
|
|
username: joe
|
|
password: "{{ 65535 | random | to_uuid }}"
|
|
email: joe@example.org
|
|
state: present
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result is changed"
|
|
|
|
- name: Add Joe to the update role of the default Project
|
|
tower_role:
|
|
user: joe
|
|
role: update
|
|
project: Demo Project
|
|
state: "{{ item }}"
|
|
register: result
|
|
with_items:
|
|
- "present"
|
|
- "absent"
|
|
|
|
- assert:
|
|
that:
|
|
- "result is changed"
|
|
|
|
- name: Delete a User
|
|
tower_user:
|
|
username: joe
|
|
email: joe@example.org
|
|
state: absent
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result is changed"
|