013b0039ba
* Fix nested template test. There were two issues with the previous implementation: 1. The LOGNAME environment variable may not be set. 2. The comparison assumed that testhost is localhost. * Fix variable display for cartesian lookup test. * Fix vars list test. The test assumed that the ansible_user variable is always set, which is not guaranteed when using connections other than local. * Fix supervisorctl integration test. Use ansible_user_id instead of ansible_user since ansible_user is not guaranteed to be available when the connection is not local. * Fix file integration test. Use ansible_user_id instead of ansible_user since ansible_user is not guaranteed to be available when the connection is not local. * Fix expect integration test. Do not assume module_utils is available for utility scripts. * Fix python_requirements_info integration test. Check for pip instead of ansible, since ansible is not guaranteed to be installed when using a connection other than local. * Fix ansible-runner integration test. Use implicit localhost to run the test since it requires access to the ansible installation currently being tested. * Fix tower_common integration test. Accept errors on stdout or stderr. * Fix tower_user integration test. Recognize errors on stdout or stderr.
93 lines
1.7 KiB
YAML
93 lines
1.7 KiB
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: Delete a User
|
|
tower_user:
|
|
username: joe
|
|
email: joe@example.org
|
|
state: absent
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result is changed"
|
|
|
|
- name: Create an Auditor
|
|
tower_user:
|
|
first_name: Joe
|
|
last_name: Auditor
|
|
username: joe
|
|
password: "{{ 65535 | random | to_uuid }}"
|
|
email: joe@example.org
|
|
state: present
|
|
auditor: true
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result is changed"
|
|
|
|
- name: Delete an Auditor
|
|
tower_user:
|
|
username: joe
|
|
email: joe@example.org
|
|
state: absent
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result is changed"
|
|
|
|
- name: Create a Superuser
|
|
tower_user:
|
|
first_name: Joe
|
|
last_name: Super
|
|
username: joe
|
|
password: "{{ 65535 | random | to_uuid }}"
|
|
email: joe@example.org
|
|
state: present
|
|
superuser: true
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result is changed"
|
|
|
|
- name: Delete a Superuser
|
|
tower_user:
|
|
username: joe
|
|
email: joe@example.org
|
|
state: absent
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "result is changed"
|
|
|
|
- name: Test tower SSL parameter
|
|
tower_user:
|
|
first_name: Joe
|
|
last_name: User
|
|
username: joe
|
|
password: "{{ 65535 | random | to_uuid }}"
|
|
email: joe@example.org
|
|
state: present
|
|
validate_certs: true
|
|
tower_host: http://foo.invalid
|
|
ignore_errors: true
|
|
register: result
|
|
|
|
- assert:
|
|
that:
|
|
- "'not verify ssl with non-https protocol' in (result.module_stdout + result.module_stderr)"
|