summaryrefslogtreecommitdiff
path: root/test/integration/targets/hcloud_datacenter_info/tasks/main.yml
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/hcloud_datacenter_info/tasks/main.yml')
-rw-r--r--test/integration/targets/hcloud_datacenter_info/tasks/main.yml40
1 files changed, 0 insertions, 40 deletions
diff --git a/test/integration/targets/hcloud_datacenter_info/tasks/main.yml b/test/integration/targets/hcloud_datacenter_info/tasks/main.yml
deleted file mode 100644
index 7f49b040c5..0000000000
--- a/test/integration/targets/hcloud_datacenter_info/tasks/main.yml
+++ /dev/null
@@ -1,40 +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 datacenter infos
- hcloud_datacenter_info:
- register: hcloud_datacenters
-
-- name: verify test gather hcloud datacenter infos
- assert:
- that:
- - hcloud_datacenters.hcloud_datacenter_info| list | count == 3
-
-- name: test gather hcloud datacenter infos in check mode
- hcloud_datacenter_info:
- register: hcloud_datacenters
- check_mode: yes
-
-- name: verify test gather hcloud datacenter infos in check mode
- assert:
- that:
- - hcloud_datacenters.hcloud_datacenter_info| list | count == 3
-
-
-- name: test gather hcloud datacenter infos with correct name
- hcloud_datacenter_info:
- name: "{{hcloud_datacenter_name}}"
- register: hcloud_datacenter
-- name: verify test gather hcloud datacenter with correct name
- assert:
- that:
- - hcloud_datacenter.hcloud_datacenter_info|selectattr('name','equalto','{{ hcloud_datacenter_name }}') |selectattr('location','equalto','{{ hcloud_location_name }}') | list | count == 1
-
-- name: test gather hcloud datacenter infos with correct id
- hcloud_datacenter_info:
- id: "{{hcloud_datacenter_id}}"
- register: hcloud_datacenter
-- name: verify test gather hcloud datacenter with correct id
- assert:
- that:
- - hcloud_datacenter.hcloud_datacenter_info|selectattr('name','equalto','{{ hcloud_datacenter_name }}') | list | count == 1