mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.3 KiB
YAML
37 lines
1.3 KiB
YAML
# 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 facts
|
|
hcloud_datacenter_facts:
|
|
|
|
- name: verify test gather hcloud datacenter facts
|
|
assert:
|
|
that:
|
|
- ansible_facts.hcloud_datacenter_facts| list | count == 3
|
|
|
|
- name: test gather hcloud datacenter facts in check mode
|
|
hcloud_datacenter_facts:
|
|
check_mode: yes
|
|
|
|
- name: verify test gather hcloud datacenter facts in check mode
|
|
assert:
|
|
that:
|
|
- ansible_facts.hcloud_datacenter_facts| list | count == 3
|
|
|
|
|
|
- name: test gather hcloud datacenter facts with correct name
|
|
hcloud_datacenter_facts:
|
|
name: "{{hcloud_datacenter_name}}"
|
|
- name: verify test gather hcloud datacenter with correct name
|
|
assert:
|
|
that:
|
|
- ansible_facts.hcloud_datacenter_facts|selectattr('name','equalto','{{ hcloud_datacenter_name }}') |selectattr('location','equalto','{{ hcloud_location_name }}') | list | count == 1
|
|
|
|
- name: test gather hcloud datacenter facts with correct id
|
|
hcloud_datacenter_facts:
|
|
id: "{{hcloud_datacenter_id}}"
|
|
- name: verify test gather hcloud datacenter with correct id
|
|
assert:
|
|
that:
|
|
- ansible_facts.hcloud_datacenter_facts|selectattr('name','equalto','{{ hcloud_datacenter_name }}') | list | count == 1
|