1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00
community.general/tests/integration/targets/lxd_project/tasks/main.yml
Felix Fontein 123c7efe5e
Move licenses to LICENSES/, run add-license.py, add LICENSES/MIT.txt (#5065)
* Move licenses to LICENSES/, run add-license.py, add LICENSES/MIT.txt.

* Replace 'Copyright:' with 'Copyright'

sed -i 's|Copyright:\(.*\)|Copyright\1|' $(rg -l 'Copyright:')

Co-authored-by: Maxwell G <gotmax@e.email>
2022-08-05 12:28:29 +02:00

141 lines
3.5 KiB
YAML

####################################################################
# WARNING: These are designed specifically for Ansible tests #
# and should not be used as examples of how to write Ansible roles #
####################################################################
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
# SPDX-License-Identifier: GPL-3.0-or-later
- name: Clean up test project
lxd_project:
name: ansible-test-project
state: absent
- name: Clean up test project
lxd_project:
name: ansible-test-project-renamed
state: absent
- name: Create test project
lxd_project:
name: ansible-test-project
config:
features.images: "false"
features.networks: "true"
features.profiles: "true"
limits.cpu: "3"
state: present
register: results
- name: Check project has been created correctly
assert:
that:
- results is changed
- results.actions is defined
- "'create' in results.actions"
- name: Create test project again with merge_project set to true
lxd_project:
name: ansible-test-project
merge_project: true
config:
features.images: "false"
features.networks: "true"
features.profiles: "true"
limits.cpu: "3"
state: present
register: results
- name: Check state is not changed
assert:
that:
- results is not changed
- "{{ results.actions | length }} == 0"
- name: Create test project again with merge_project set to false
lxd_project:
name: ansible-test-project
merge_project: false
config:
features.images: "false"
features.networks: "true"
features.profiles: "true"
limits.cpu: "3"
state: present
register: results
- name: Check state is not changed
assert:
that:
- results is changed
- "'apply_projects_configs' in results.actions"
- name: Update project test => update description
lxd_project:
name: ansible-test-project
merge_project: false
description: "ansible test project"
config:
features.images: "false"
features.networks: "true"
features.profiles: "true"
limits.cpu: "3"
state: present
register: results
- name: Check state is changed
assert:
that:
- results is changed
- "'apply_projects_configs' in results.actions"
- name: Update project test => update project config
lxd_project:
name: ansible-test-project
merge_project: false
description: "ansible test project"
config:
features.images: "false"
features.networks: "true"
features.profiles: "true"
limits.cpu: "4"
state: present
register: results
- name: Check state is changed
assert:
that:
- results is changed
- "'apply_projects_configs' in results.actions"
- name: Rename project test
lxd_project:
name: ansible-test-project
new_name: ansible-test-project-renamed
merge_project: true
description: "ansible test project"
config:
features.images: "false"
features.networks: "true"
features.profiles: "true"
limits.cpu: "4"
state: present
register: results
- name: Check state is changed
assert:
that:
- results is changed
- "'rename' in results.actions"
- name: Clean up test project
lxd_project:
name: ansible-test-project-renamed
state: absent
register: results
- name: Check project is deleted
assert:
that:
- results is changed
- "'delete' in results.actions"