Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: improve load_balancer_service integration using new framework #546

Merged
merged 1 commit into from
Aug 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .ansible-lint
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ exclude_paths:
- examples/
- tests/integration/targets/certificate
- tests/integration/targets/floating_ip
- tests/integration/targets/load_balancer_service
- tests/integration/targets/load_balancer_target
- tests/integration/targets/placement_group
- tests/integration/targets/primary_ip
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
- name: Cleanup test_load_balancer
hetzner.hcloud.load_balancer:
name: "{{ hcloud_load_balancer_name }}"
state: absent
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
- name: Create test_load_balancer
hetzner.hcloud.load_balancer:
name: "{{ hcloud_load_balancer_name }}"
load_balancer_type: lb11
location: "{{ hcloud_location_name }}"
register: test_load_balancer
179 changes: 104 additions & 75 deletions tests/integration/targets/load_balancer_service/tasks/test.yml
Original file line number Diff line number Diff line change
@@ -1,126 +1,155 @@
# Copyright: (c) 2019, Hetzner Cloud GmbH <[email protected]>
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
---
- name: setup load_balancer
hetzner.hcloud.load_balancer:
name: "{{hcloud_load_balancer_name}}"
load_balancer_type: lb11
- name: Test missing required parameters
hetzner.hcloud.load_balancer_service:
state: present
location: "{{ hcloud_location_name }}"
register: load_balancer
- name: verify setup load_balancer
assert:
ignore_errors: true
register: result
- name: Verify missing required parameters
ansible.builtin.assert:
that:
- load_balancer is success
- result is failed
- 'result.msg == "missing required arguments: listen_port, load_balancer"'

- name: test fail load balancer does not exist
- name: Test create with checkmode
hetzner.hcloud.load_balancer_service:
load_balancer: does-not-exist
protocol: http
load_balancer: "{{ hcloud_load_balancer_name }}"
listen_port: 80
protocol: http
state: present
check_mode: true
register: result
ignore_errors: true
- name: verify test fail load_balancer does not exist
assert:
- name: Verify create with checkmode
ansible.builtin.assert:
that:
- result is failed
- "result.msg == 'resource (load_balancer) does not exist: does-not-exist'"
- result is changed

- name: test create load_balancer service with checkmode
- name: Test create
hetzner.hcloud.load_balancer_service:
load_balancer: "{{hcloud_load_balancer_name}}"
protocol: "http"
load_balancer: "{{ hcloud_load_balancer_name }}"
listen_port: 80
destination_port: 80
protocol: tcp
state: present
register: result
check_mode: true
- name: verify test create load_balancer service with checkmode
assert:
- name: Verify create
ansible.builtin.assert:
that:
- result is changed
- result.hcloud_load_balancer_service.load_balancer == hcloud_load_balancer_name
- result.hcloud_load_balancer_service.protocol == "tcp"
- result.hcloud_load_balancer_service.listen_port == 80
- result.hcloud_load_balancer_service.destination_port == 80
- result.hcloud_load_balancer_service.proxyprotocol is false
- result.hcloud_load_balancer_service.health_check.protocol == "tcp"
- result.hcloud_load_balancer_service.health_check.port == 80
- result.hcloud_load_balancer_service.health_check.interval == 15
- result.hcloud_load_balancer_service.health_check.retries == 3
- result.hcloud_load_balancer_service.health_check.timeout == 10
- result.hcloud_load_balancer_service.http == None

- name: test create load_balancer service
- name: Test create idempotency
hetzner.hcloud.load_balancer_service:
load_balancer: "{{hcloud_load_balancer_name}}"
protocol: "http"
load_balancer: "{{ hcloud_load_balancer_name }}"
listen_port: 80
destination_port: 80
protocol: tcp
state: present
register: load_balancer_service
- name: verify create load_balancer service
assert:
register: result
- name: Verify create idempotency
ansible.builtin.assert:
that:
- load_balancer_service is changed
- load_balancer_service.hcloud_load_balancer_service.protocol == "http"
- load_balancer_service.hcloud_load_balancer_service.listen_port == 80
- load_balancer_service.hcloud_load_balancer_service.destination_port == 80
- load_balancer_service.hcloud_load_balancer_service.proxyprotocol is sameas false
- result is not changed

- name: test create load_balancer service idempotency
- name: Test create with not existing load_balancer
hetzner.hcloud.load_balancer_service:
load_balancer: "{{hcloud_load_balancer_name}}"
protocol: "http"
load_balancer: not-existing
listen_port: 80
protocol: http
state: present
register: load_balancer_service
- name: verify create load_balancer service idempotency
assert:
ignore_errors: true
register: result
- name: Verify create with not existing load_balancer
ansible.builtin.assert:
that:
- load_balancer_service is not changed
- result is failed
- 'result.msg == "resource (load_balancer) does not exist: not-existing"'

- name: test update load_balancer service
- name: Test update
hetzner.hcloud.load_balancer_service:
load_balancer: "{{hcloud_load_balancer_name}}"
protocol: "tcp"
load_balancer: "{{ hcloud_load_balancer_name }}"
listen_port: 80
protocol: http
state: present
register: load_balancer_service
- name: verify create load_balancer service
assert:
register: result
- name: Verify update
ansible.builtin.assert:
that:
- load_balancer_service is changed
- load_balancer_service.hcloud_load_balancer_service.protocol == "tcp"
- load_balancer_service.hcloud_load_balancer_service.listen_port == 80
- load_balancer_service.hcloud_load_balancer_service.destination_port == 80
- load_balancer_service.hcloud_load_balancer_service.proxyprotocol is sameas false
- result is changed
- result.hcloud_load_balancer_service.load_balancer == hcloud_load_balancer_name
- result.hcloud_load_balancer_service.protocol == "http"
- result.hcloud_load_balancer_service.listen_port == 80
- result.hcloud_load_balancer_service.destination_port == 80
- result.hcloud_load_balancer_service.proxyprotocol is false
- result.hcloud_load_balancer_service.health_check.protocol == "tcp"
- result.hcloud_load_balancer_service.health_check.port == 80
- result.hcloud_load_balancer_service.health_check.interval == 15
- result.hcloud_load_balancer_service.health_check.retries == 3
- result.hcloud_load_balancer_service.health_check.timeout == 10
- result.hcloud_load_balancer_service.http != None

- name: test absent load_balancer service
- name: Test delete
hetzner.hcloud.load_balancer_service:
load_balancer: "{{hcloud_load_balancer_name}}"
protocol: "http"
load_balancer: "{{ hcloud_load_balancer_name }}"
listen_port: 80
state: absent
register: result
- name: verify test absent load_balancer service
assert:
- name: Verify delete
ansible.builtin.assert:
that:
- result is changed

- name: test create load_balancer service with http
- name: Test create with http
hetzner.hcloud.load_balancer_service:
load_balancer: "{{hcloud_load_balancer_name}}"
protocol: "http"
load_balancer: "{{ hcloud_load_balancer_name }}"
protocol: http
listen_port: 80
http:
cookie_name: "Test"
cookie_name: keks
sticky_sessions: true
state: present
register: load_balancer_service
- name: verify create load_balancer service
assert:
register: result
- name: Verify create with http
ansible.builtin.assert:
that:
- load_balancer_service is changed
- load_balancer_service.hcloud_load_balancer_service.protocol == "http"
- load_balancer_service.hcloud_load_balancer_service.listen_port == 80
- load_balancer_service.hcloud_load_balancer_service.destination_port == 80
- load_balancer_service.hcloud_load_balancer_service.proxyprotocol is sameas false
- result is changed
- result.hcloud_load_balancer_service.load_balancer == hcloud_load_balancer_name
- result.hcloud_load_balancer_service.listen_port == 80
- result.hcloud_load_balancer_service.destination_port == 80
- result.hcloud_load_balancer_service.protocol == "http"
- result.hcloud_load_balancer_service.proxyprotocol is false
- result.hcloud_load_balancer_service.http.certificates == []
- result.hcloud_load_balancer_service.http.cookie_name == "keks"
- result.hcloud_load_balancer_service.http.cookie_lifetime == 300
- result.hcloud_load_balancer_service.http.redirect_http == false
- result.hcloud_load_balancer_service.http.sticky_sessions == true
- result.hcloud_load_balancer_service.health_check.protocol == "http"
- result.hcloud_load_balancer_service.health_check.port == 80
- result.hcloud_load_balancer_service.health_check.interval == 15
- result.hcloud_load_balancer_service.health_check.retries == 3
- result.hcloud_load_balancer_service.health_check.timeout == 10
- result.hcloud_load_balancer_service.health_check.http.domain == ""
- result.hcloud_load_balancer_service.health_check.http.path == "/"
- result.hcloud_load_balancer_service.health_check.http.status_codes == ["2??", "3??"]

- name: cleanup load_balancer
hetzner.hcloud.load_balancer:
name: "{{ hcloud_load_balancer_name }}"
- name: Test delete with http
hetzner.hcloud.load_balancer_service:
load_balancer: "{{ hcloud_load_balancer_name }}"
listen_port: 80
state: absent
register: result
- name: verify cleanup load_balancer
assert:
- name: Verify delete with http
ansible.builtin.assert:
that:
- result is success
- result is changed
Loading