872a7b4a7a
* add additional test coverage for tower modules * add test coverage for the tower_credential module * add test coverage for the tower_user module * fix a bug in py3 for tower_credential when ssh_key_data is specified * add test coverage for tower_host, tower_label, and tower_project * add test coverage for tower_inventory and tower_job_template * add more test coverage for tower modules - tower_job_launch - tower_job_list - tower_job_wait - tower_job_cancel * add a check mode/version assertion for tower module integration tests * add test coverage for the tower_role module * add test coverage for the tower_group module * add more integration test edge cases for various tower modules * give the job_wait module more time before failing * randomize passwords in the tower_user and tower_group tests
54 lines
1.5 KiB
YAML
54 lines
1.5 KiB
YAML
- name: Create an SCM Credential
|
|
tower_credential:
|
|
name: SCM Credential for JT
|
|
organization: Default
|
|
kind: scm
|
|
|
|
- name: Create a Demo Project
|
|
tower_project:
|
|
name: Job Template Test Project
|
|
organization: Default
|
|
state: present
|
|
scm_type: git
|
|
scm_url: https://github.com/ansible/ansible-tower-samples.git
|
|
scm_credential: SCM Credential for JT
|
|
register: result
|
|
|
|
- name: Update the project (to clone the git repo)
|
|
uri:
|
|
url: "https://{{ lookup('env', 'TOWER_HOST') }}/api/v2/projects/{{ result.id }}/update/"
|
|
method: POST
|
|
user: "{{ lookup('env', 'TOWER_USERNAME') }}"
|
|
password: "{{ lookup('env', 'TOWER_PASSWORD') }}"
|
|
validate_certs: false
|
|
status_code: 202
|
|
force_basic_auth: true
|
|
|
|
- name: Wait for the project to be status=successful
|
|
uri:
|
|
url: "https://{{ lookup('env', 'TOWER_HOST') }}/api/v2/projects/{{ result.id }}/"
|
|
method: GET
|
|
user: "{{ lookup('env', 'TOWER_USERNAME') }}"
|
|
password: "{{ lookup('env', 'TOWER_PASSWORD') }}"
|
|
validate_certs: false
|
|
force_basic_auth: true
|
|
return_content: true
|
|
register: result
|
|
until: result.json.status == "successful"
|
|
retries: 15
|
|
delay: 1
|
|
|
|
- name: Create a Job Template
|
|
tower_job_template:
|
|
name: hello-world
|
|
project: Job Template Test Project
|
|
inventory: Demo Inventory
|
|
playbook: hello_world.yml
|
|
machine_credential: Demo Credential
|
|
job_type: run
|
|
state: present
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result is changed"
|