mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-10-03 23:14:02 -07:00
Add hcloud_floating_ip_facts module (#54667)
This commit is contained in:
parent
d48fb6ee41
commit
f99d1b3e47
4 changed files with 228 additions and 0 deletions
|
@ -0,0 +1,2 @@
|
|||
cloud/hcloud
|
||||
unsupported
|
|
@ -0,0 +1,6 @@
|
|||
# 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)
|
||||
---
|
||||
hcloud_test_floating_ip_name: "always-there-floating-ip"
|
||||
hcloud_test_floating_ip_label_selector: "key=value"
|
||||
hcloud_test_floating_ip_id: 62227
|
|
@ -0,0 +1,51 @@
|
|||
# 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 image facts
|
||||
hcloud_floating_ip_facts:
|
||||
- name: verify test gather hcloud image facts in check mode
|
||||
assert:
|
||||
that:
|
||||
- ansible_facts.hcloud_floating_ip_facts| list | count == 1
|
||||
|
||||
- name: test gather hcloud image facts in check mode
|
||||
hcloud_floating_ip_facts:
|
||||
check_mode: yes
|
||||
|
||||
- name: verify test gather hcloud image facts in check mode
|
||||
assert:
|
||||
that:
|
||||
- ansible_facts.hcloud_floating_ip_facts| list | count == 1
|
||||
|
||||
|
||||
- name: test gather hcloud image facts with correct label selector
|
||||
hcloud_floating_ip_facts:
|
||||
label_selector: "key=value"
|
||||
- name: verify test gather hcloud image 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 image facts with wrong label selector
|
||||
hcloud_floating_ip_facts:
|
||||
label_selector: "key!=value"
|
||||
- name: verify test gather hcloud image with wrong label selector
|
||||
assert:
|
||||
that:
|
||||
- ansible_facts.hcloud_floating_ip_facts | list | count == 0
|
||||
|
||||
- name: test gather hcloud image facts with correct id
|
||||
hcloud_floating_ip_facts:
|
||||
id: "{{hcloud_test_floating_ip_id}}"
|
||||
- name: verify test gather hcloud image 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 image facts with wrong id
|
||||
hcloud_floating_ip_facts:
|
||||
id: "{{hcloud_test_floating_ip_id}}1"
|
||||
- name: verify test gather hcloud image with wrong id
|
||||
assert:
|
||||
that:
|
||||
- ansible_facts.hcloud_floating_ip_facts | list | count == 0
|
Loading…
Add table
Add a link
Reference in a new issue