mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 05:12:45 +00:00
Add hcloud_image_facts module (#53849)
This commit is contained in:
committed by
René Moser
parent
6220eafb73
commit
7d0ae41901
2
test/integration/targets/hcloud_image_facts/aliases
Normal file
2
test/integration/targets/hcloud_image_facts/aliases
Normal file
@@ -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_prefix: "tests"
|
||||
hcloud_test_image_name: "always-there-snapshot"
|
||||
hcloud_test_image_id: 3439221
|
||||
55
test/integration/targets/hcloud_image_facts/tasks/main.yml
Normal file
55
test/integration/targets/hcloud_image_facts/tasks/main.yml
Normal file
@@ -0,0 +1,55 @@
|
||||
# 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 with type system
|
||||
hcloud_image_facts:
|
||||
- name: verify test gather hcloud image facts in check mode
|
||||
assert:
|
||||
that:
|
||||
- ansible_facts.hcloud_image_facts| list | count > 2
|
||||
|
||||
- name: test gather hcloud image facts in check mode
|
||||
hcloud_image_facts:
|
||||
check_mode: yes
|
||||
|
||||
- name: verify test gather hcloud image facts in check mode
|
||||
assert:
|
||||
that:
|
||||
- ansible_facts.hcloud_image_facts| list | count > 2
|
||||
|
||||
|
||||
- name: test gather hcloud image facts with correct label selector
|
||||
hcloud_image_facts:
|
||||
label_selector: "key=value"
|
||||
type: snapshot
|
||||
- name: verify test gather hcloud image with correct label selector
|
||||
assert:
|
||||
that:
|
||||
- ansible_facts.hcloud_image_facts|selectattr('description','equalto','{{ hcloud_test_image_name }}') | list | count == 1
|
||||
|
||||
- name: test gather hcloud image facts with wrong label selector
|
||||
hcloud_image_facts:
|
||||
label_selector: "key!=value"
|
||||
type: snapshot
|
||||
- name: verify test gather hcloud image with wrong label selector
|
||||
assert:
|
||||
that:
|
||||
- ansible_facts.hcloud_image_facts | list | count == 0
|
||||
|
||||
- name: test gather hcloud image facts with correct id
|
||||
hcloud_image_facts:
|
||||
id: "{{hcloud_test_image_id}}"
|
||||
type: snapshot
|
||||
- name: verify test gather hcloud image with correct id
|
||||
assert:
|
||||
that:
|
||||
- ansible_facts.hcloud_image_facts|selectattr('description','equalto','{{ hcloud_test_image_name }}') | list | count == 1
|
||||
|
||||
- name: test gather hcloud image facts with wrong id
|
||||
hcloud_image_facts:
|
||||
id: "{{hcloud_test_image_id}}1"
|
||||
type: snapshot
|
||||
- name: verify test gather hcloud image with wrong id
|
||||
assert:
|
||||
that:
|
||||
- ansible_facts.hcloud_image_facts | list | count == 0
|
||||
Reference in New Issue
Block a user