# Copyright: (c) 2019, Hetzner Cloud GmbH # 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