mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 12:50:22 -07:00
Initial commit
This commit is contained in:
commit
aebc1b03fd
4861 changed files with 812621 additions and 0 deletions
2
tests/integration/targets/scaleway_lb/aliases
Normal file
2
tests/integration/targets/scaleway_lb/aliases
Normal file
|
@ -0,0 +1,2 @@
|
|||
cloud/scaleway
|
||||
unsupported
|
8
tests/integration/targets/scaleway_lb/defaults/main.yml
Normal file
8
tests/integration/targets/scaleway_lb/defaults/main.yml
Normal file
|
@ -0,0 +1,8 @@
|
|||
---
|
||||
scaleway_region: fr-par
|
||||
name: lb_ansible_test
|
||||
description: Load-balancer used for testing scaleway_lb ansible module
|
||||
updated_description: Load-balancer used for testing scaleway_lb ansible module (Updated description)
|
||||
tags:
|
||||
- first_tag
|
||||
- second_tag
|
214
tests/integration/targets/scaleway_lb/tasks/main.yml
Normal file
214
tests/integration/targets/scaleway_lb/tasks/main.yml
Normal file
|
@ -0,0 +1,214 @@
|
|||
- name: Create a load-balancer (Check)
|
||||
check_mode: yes
|
||||
scaleway_lb:
|
||||
state: present
|
||||
name: '{{ name }}'
|
||||
region: '{{ scaleway_region }}'
|
||||
organization_id: '{{ scw_org }}'
|
||||
description: '{{ description }}'
|
||||
tags: '{{ tags }}'
|
||||
register: lb_creation_check_task
|
||||
|
||||
- debug: var=lb_creation_check_task
|
||||
|
||||
- name: lb_creation_check_task is success
|
||||
assert:
|
||||
that:
|
||||
- lb_creation_check_task is success
|
||||
|
||||
- name: lb_creation_check_task is changed
|
||||
assert:
|
||||
that:
|
||||
- lb_creation_check_task is changed
|
||||
|
||||
- name: Create load-balancer
|
||||
scaleway_lb:
|
||||
state: present
|
||||
name: '{{ name }}'
|
||||
region: '{{ scaleway_region }}'
|
||||
organization_id: '{{ scw_org }}'
|
||||
description: '{{ description }}'
|
||||
tags: '{{ tags }}'
|
||||
wait: true
|
||||
register: lb_creation_task
|
||||
|
||||
- debug: var=lb_creation_task
|
||||
|
||||
- name: lb_creation_task is success
|
||||
assert:
|
||||
that:
|
||||
- lb_creation_task is success
|
||||
|
||||
- name: lb_creation_task is changed
|
||||
assert:
|
||||
that:
|
||||
- lb_creation_task is changed
|
||||
|
||||
- name: Assert that the load-balancer is in a valid state
|
||||
assert:
|
||||
that:
|
||||
- lb_creation_task.scaleway_lb.status == "ready"
|
||||
|
||||
- name: Create load-balancer (Confirmation)
|
||||
scaleway_lb:
|
||||
state: present
|
||||
name: '{{ name }}'
|
||||
region: '{{ scaleway_region }}'
|
||||
organization_id: '{{ scw_org }}'
|
||||
tags: '{{ tags }}'
|
||||
description: '{{ description }}'
|
||||
register: lb_creation_confirmation_task
|
||||
|
||||
- debug: var=lb_creation_confirmation_task
|
||||
|
||||
- name: lb_creation_confirmation_task is success
|
||||
assert:
|
||||
that:
|
||||
- lb_creation_confirmation_task is success
|
||||
|
||||
- name: lb_creation_confirmation_task is not changed
|
||||
assert:
|
||||
that:
|
||||
- lb_creation_confirmation_task is not changed
|
||||
|
||||
- name: Assert that the load-balancer is in a valid state
|
||||
assert:
|
||||
that:
|
||||
- lb_creation_confirmation_task.scaleway_lb.status == "ready"
|
||||
|
||||
- name: Update load-balancer (Check)
|
||||
check_mode: yes
|
||||
scaleway_lb:
|
||||
state: present
|
||||
name: '{{ name }}'
|
||||
region: '{{ scaleway_region }}'
|
||||
organization_id: '{{ scw_org }}'
|
||||
tags: '{{ tags }}'
|
||||
description: '{{ updated_description }}'
|
||||
register: lb_update_check_task
|
||||
|
||||
- debug: var=lb_update_check_task
|
||||
|
||||
- name: lb_update_check_task is success
|
||||
assert:
|
||||
that:
|
||||
- lb_update_check_task is success
|
||||
|
||||
- name: lb_update_check_task is changed
|
||||
assert:
|
||||
that:
|
||||
- lb_update_check_task is changed
|
||||
|
||||
- name: Update load-balancer
|
||||
scaleway_lb:
|
||||
state: present
|
||||
name: '{{ name }}'
|
||||
region: '{{ scaleway_region }}'
|
||||
tags: '{{ tags }}'
|
||||
organization_id: '{{ scw_org }}'
|
||||
description: '{{ updated_description }}'
|
||||
wait: true
|
||||
register: lb_update_task
|
||||
|
||||
- debug: var=lb_update_task
|
||||
|
||||
- name: lb_update_task is success
|
||||
assert:
|
||||
that:
|
||||
- lb_update_task is success
|
||||
|
||||
- name: lb_update_task is changed
|
||||
assert:
|
||||
that:
|
||||
- lb_update_task is changed
|
||||
|
||||
- name: Assert that the load-balancer is in a valid state
|
||||
assert:
|
||||
that:
|
||||
- lb_update_task.scaleway_lb.status == "ready"
|
||||
|
||||
- name: Update load-balancer (Confirmation)
|
||||
scaleway_lb:
|
||||
state: present
|
||||
name: '{{ name }}'
|
||||
region: '{{ scaleway_region }}'
|
||||
tags: '{{ tags }}'
|
||||
organization_id: '{{ scw_org }}'
|
||||
description: '{{ updated_description }}'
|
||||
register: lb_update_confirmation_task
|
||||
|
||||
- debug: var=lb_update_confirmation_task
|
||||
|
||||
- name: lb_update_confirmation_task is success
|
||||
assert:
|
||||
that:
|
||||
- lb_update_confirmation_task is success
|
||||
|
||||
- name: lb_update_confirmation_task is not changed
|
||||
assert:
|
||||
that:
|
||||
- lb_update_confirmation_task is not changed
|
||||
|
||||
- name: Assert that the load-balancer is in a valid state
|
||||
assert:
|
||||
that:
|
||||
- lb_update_confirmation_task.scaleway_lb.status == "ready"
|
||||
|
||||
- name: Delete load-balancer (Check)
|
||||
check_mode: yes
|
||||
scaleway_lb:
|
||||
state: absent
|
||||
name: '{{ name }}'
|
||||
region: '{{ scaleway_region }}'
|
||||
description: '{{ description }}'
|
||||
organization_id: '{{ scw_org }}'
|
||||
register: lb_deletion_check_task
|
||||
|
||||
- name: lb_deletion_check_task is success
|
||||
assert:
|
||||
that:
|
||||
- lb_deletion_check_task is success
|
||||
|
||||
- name: lb_deletion_check_task is changed
|
||||
assert:
|
||||
that:
|
||||
- lb_deletion_check_task is changed
|
||||
|
||||
- name: Delete load-balancer
|
||||
scaleway_lb:
|
||||
state: absent
|
||||
name: '{{ name }}'
|
||||
region: '{{ scaleway_region }}'
|
||||
description: '{{ description }}'
|
||||
organization_id: '{{ scw_org }}'
|
||||
wait: true
|
||||
register: lb_deletion_task
|
||||
|
||||
- name: lb_deletion_task is success
|
||||
assert:
|
||||
that:
|
||||
- lb_deletion_task is success
|
||||
|
||||
- name: lb_deletion_task is changed
|
||||
assert:
|
||||
that:
|
||||
- lb_deletion_task is changed
|
||||
|
||||
- name: Delete load-balancer (Confirmation)
|
||||
scaleway_lb:
|
||||
state: absent
|
||||
name: '{{ name }}'
|
||||
region: '{{ scaleway_region }}'
|
||||
description: '{{ description }}'
|
||||
organization_id: '{{ scw_org }}'
|
||||
register: lb_deletion_confirmation_task
|
||||
|
||||
- name: lb_deletion_confirmation_task is success
|
||||
assert:
|
||||
that:
|
||||
- lb_deletion_confirmation_task is success
|
||||
|
||||
- name: lb_deletion_confirmation_task is not changed
|
||||
assert:
|
||||
that:
|
||||
- lb_deletion_confirmation_task is not changed
|
Loading…
Add table
Add a link
Reference in a new issue