|
|
|
# Copyright: (c) 2019, Hetzner Cloud GmbH <info@hetzner-cloud.de>
|
|
|
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
---
|
|
|
|
- name: test gather hcloud floating ip facts
|
|
|
|
hcloud_floating_ip_facts:
|
|
|
|
- name: verify test gather hcloud floating ip facts in check mode
|
|
|
|
assert:
|
|
|
|
that:
|
|
|
|
- ansible_facts.hcloud_floating_ip_facts| list | count == 1
|
|
|
|
|
|
|
|
- name: test gather hcloud floating ip facts in check mode
|
|
|
|
hcloud_floating_ip_facts:
|
|
|
|
check_mode: yes
|
|
|
|
|
|
|
|
- name: verify test gather hcloud floating ip facts in check mode
|
|
|
|
assert:
|
|
|
|
that:
|
|
|
|
- ansible_facts.hcloud_floating_ip_facts| list | count == 1
|
|
|
|
|
|
|
|
|
|
|
|
- name: test gather hcloud floating ip facts with correct label selector
|
|
|
|
hcloud_floating_ip_facts:
|
|
|
|
label_selector: "key=value"
|
|
|
|
- name: verify test gather hcloud floating ip with correct label selector
|
|
|
|
assert:
|
|
|
|
that:
|
|
|
|
- ansible_facts.hcloud_floating_ip_facts|selectattr('description','equalto','{{ hcloud_test_floating_ip_name }}') | list | count == 1
|
|
|
|
|
|
|
|
- name: test gather hcloud floating ip facts with wrong label selector
|
|
|
|
hcloud_floating_ip_facts:
|
|
|
|
label_selector: "key!=value"
|
|
|
|
- name: verify test gather hcloud floating ip with wrong label selector
|
|
|
|
assert:
|
|
|
|
that:
|
|
|
|
- ansible_facts.hcloud_floating_ip_facts | list | count == 0
|
|
|
|
|
|
|
|
- name: test gather hcloud floating ip facts with correct id
|
|
|
|
hcloud_floating_ip_facts:
|
|
|
|
id: "{{hcloud_test_floating_ip_id}}"
|
|
|
|
- name: verify test gather hcloud floating ip with correct id
|
|
|
|
assert:
|
|
|
|
that:
|
|
|
|
- ansible_facts.hcloud_floating_ip_facts|selectattr('description','equalto','{{ hcloud_test_floating_ip_name }}') | list | count == 1
|
|
|
|
|
|
|
|
- name: test gather hcloud floating ip facts with wrong id
|
|
|
|
hcloud_floating_ip_facts:
|
|
|
|
id: "{{hcloud_test_floating_ip_id}}1"
|
|
|
|
register: result
|
|
|
|
ignore_errors: yes
|
|
|
|
- name: verify test gather hcloud floating ip with wrong id
|
|
|
|
assert:
|
|
|
|
that:
|
|
|
|
- result is failed
|