summaryrefslogtreecommitdiff
path: root/test/integration/targets/hcloud_image_info/tasks/main.yml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/hcloud_image_info/tasks/main.yml')
-rw-r--r--test/integration/targets/hcloud_image_info/tasks/main.yml62
1 files changed, 0 insertions, 62 deletions
diff --git a/test/integration/targets/hcloud_image_info/tasks/main.yml b/test/integration/targets/hcloud_image_info/tasks/main.yml
deleted file mode 100644
index 503d5b7870..0000000000
--- a/test/integration/targets/hcloud_image_info/tasks/main.yml
+++ /dev/null
@@ -1,62 +0,0 @@
-# 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 infos with type system
- hcloud_image_info:
- register: hcloud_images
-- name: verify test gather hcloud image infos in check mode
- assert:
- that:
- - hcloud_images.hcloud_image_info| list | count > 2
-
-- name: test gather hcloud image infos in check mode
- hcloud_image_info:
- check_mode: yes
- register: hcloud_images
-
-- name: verify test gather hcloud image infos in check mode
- assert:
- that:
- - hcloud_images.hcloud_image_info| list | count > 2
-
-
-- name: test gather hcloud image infos with correct label selector
- hcloud_image_info:
- label_selector: "key=value"
- type: snapshot
- register: hcloud_images
-- name: verify test gather hcloud image with correct label selector
- assert:
- that:
- - hcloud_images.hcloud_image_info|selectattr('description','equalto','{{ hcloud_test_image_name }}') | list | count == 1
-
-- name: test gather hcloud image infos with wrong label selector
- hcloud_image_info:
- label_selector: "key!=value"
- type: snapshot
- register: hcloud_images
-- name: verify test gather hcloud image with wrong label selector
- assert:
- that:
- - hcloud_images.hcloud_image_info | list | count == 0
-
-- name: test gather hcloud image infos with correct id
- hcloud_image_info:
- id: "{{hcloud_test_image_id}}"
- type: snapshot
- register: hcloud_images
-- name: verify test gather hcloud image with correct id
- assert:
- that:
- - hcloud_images.hcloud_image_info|selectattr('description','equalto','{{ hcloud_test_image_name }}') | list | count == 1
-
-- name: test gather hcloud image infos with wrong id
- hcloud_image_info:
- id: "{{hcloud_test_image_id}}1"
- type: snapshot
- ignore_errors: yes
- register: result
-- name: verify test gather hcloud image with wrong id
- assert:
- that:
- - result is failed