mirror of
https://github.com/freeipa/ansible-freeipa.git
synced 2026-03-26 21:33:05 +00:00
116 lines
3.6 KiB
YAML
116 lines
3.6 KiB
YAML
---
|
|
- name: Test automountlocation
|
|
hosts: "{{ ipa_test_host | default('ipaserver') }}"
|
|
become: true
|
|
gather_facts: false
|
|
|
|
tasks:
|
|
- name: Ensure automountlocation TestLocations are absent before testing
|
|
ipaautomountlocation:
|
|
ipaadmin_password: SomeADMINpassword
|
|
ipaapi_context: "{{ ipa_context | default(omit) }}"
|
|
name:
|
|
- TestLocation_01
|
|
- TestLocation_02
|
|
state: absent
|
|
|
|
- name: Ensure empty automountlocation does nothing
|
|
ipaautomountlocation:
|
|
ipaadmin_password: SomeADMINpassword
|
|
ipaapi_context: "{{ ipa_context | default(omit) }}"
|
|
name: []
|
|
state: present
|
|
register: result
|
|
failed_when: not result.failed or "At least one location must be provided" not in result.msg
|
|
|
|
- name: Ensure empty automountlocation does nothing on absent
|
|
ipaautomountlocation:
|
|
ipaadmin_password: SomeADMINpassword
|
|
ipaapi_context: "{{ ipa_context | default(omit) }}"
|
|
name: []
|
|
state: absent
|
|
register: result
|
|
failed_when: not result.failed or "At least one location must be provided" not in result.msg
|
|
|
|
- name: Ensure automountlocation TestLocation is present
|
|
ipaautomountlocation:
|
|
ipaadmin_password: SomeADMINpassword
|
|
ipaapi_context: "{{ ipa_context | default(omit) }}"
|
|
name: TestLocation_01
|
|
state: present
|
|
register: result
|
|
failed_when: not result.changed or result.failed
|
|
|
|
- name: Ensure automountlocation TestLocation is present again
|
|
ipaautomountlocation:
|
|
ipaadmin_password: SomeADMINpassword
|
|
ipaapi_context: "{{ ipa_context | default(omit) }}"
|
|
name: TestLocation_01
|
|
state: present
|
|
register: result
|
|
failed_when: result.changed or result.failed
|
|
|
|
- name: Ensure automountlocation TestLocation is absent
|
|
ipaautomountlocation:
|
|
ipaadmin_password: SomeADMINpassword
|
|
ipaapi_context: "{{ ipa_context | default(omit) }}"
|
|
name: TestLocation_01
|
|
state: absent
|
|
register: result
|
|
failed_when: not result.changed or result.failed
|
|
|
|
- name: Ensure automountlocation TestLocation is absent again
|
|
ipaautomountlocation:
|
|
ipaadmin_password: SomeADMINpassword
|
|
ipaapi_context: "{{ ipa_context | default(omit) }}"
|
|
name: TestLocation_01
|
|
state: absent
|
|
register: result
|
|
failed_when: result.changed or result.failed
|
|
|
|
- name: Ensure a list of automountlocations are present
|
|
ipaautomountlocation:
|
|
ipaadmin_password: SomeADMINpassword
|
|
ipaapi_context: "{{ ipa_context | default(omit) }}"
|
|
name:
|
|
- TestLocation_01
|
|
- TestLocation_02
|
|
state: present
|
|
register: result
|
|
failed_when: result.failed or not result.changed
|
|
|
|
- name: Ensure a list of automountlocations exist
|
|
ipaautomountlocation:
|
|
ipaadmin_password: SomeADMINpassword
|
|
ipaapi_context: "{{ ipa_context | default(omit) }}"
|
|
name:
|
|
- TestLocation_01
|
|
- TestLocation_02
|
|
state: present
|
|
register: result
|
|
failed_when: result.changed or result.failed
|
|
|
|
- name: Ensure a list of automountlocations are absent
|
|
ipaautomountlocation:
|
|
ipaadmin_password: SomeADMINpassword
|
|
ipaapi_context: "{{ ipa_context | default(omit) }}"
|
|
name:
|
|
- TestLocation_01
|
|
- TestLocation_02
|
|
state: absent
|
|
register: result
|
|
failed_when: result.failed or not result.changed
|
|
|
|
- name: Ensure multiple automountlocations are absent
|
|
ipaautomountlocation:
|
|
ipaadmin_password: SomeADMINpassword
|
|
ipaapi_context: "{{ ipa_context | default(omit) }}"
|
|
name:
|
|
- TestLocation_01
|
|
- TestLocation_02
|
|
- TestLocation_03
|
|
- TestLocation_04
|
|
state: absent
|
|
register: result
|
|
failed_when: result.changed or result.failed
|