1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

[PR #6337/67b921e4 backport][stable-6] parted: add integration test (#6348)

parted: add integration test (#6337)

* parted: add integration test

* Update tests/integration/targets/parted/aliases

Co-authored-by: Felix Fontein <felix@fontein.de>

* adjusted for Alpine

---------

Co-authored-by: Felix Fontein <felix@fontein.de>
(cherry picked from commit 67b921e4e6)

Co-authored-by: Alexei Znamensky <103110+russoz@users.noreply.github.com>
This commit is contained in:
patchback[bot] 2023-04-16 22:09:49 +02:00 committed by GitHub
parent baf552337d
commit 7e7b84348b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 113 additions and 0 deletions

View file

@ -0,0 +1,13 @@
# Copyright (c) Ansible Project
# 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
azp/posix/2
azp/posix/vm
skip/aix
skip/freebsd
skip/osx
skip/macos
skip/docker
needs/root
destructive

View file

@ -0,0 +1,14 @@
---
# Copyright (c) Ansible Project
# 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: Remove loopback device
command:
cmd: losetup -d {{ losetup_name.stdout }}
changed_when: true
- name: Remove file
file:
path: /bigfile
state: absent

View file

@ -0,0 +1,86 @@
# Copyright (c) 2021, Alexei Znamensky
# 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: Install parted
package:
name: parted
state: present
when: ansible_os_family == 'Alpine'
- name: Create empty file
community.general.filesize:
path: /bigfile
size: 1GiB
notify: Remove file
- name: Obtain loop device name
command:
cmd: losetup -f
changed_when: false
register: losetup_name
- name: Create loopback device
command:
cmd: losetup -f /bigfile
changed_when: true
register: losetup_cmd
notify: Remove loopback device
- name: Create first partition
community.general.parted:
device: "{{ losetup_name.stdout }}"
number: 1
state: present
fs_type: ext4
part_end: "50%"
register: partition1
- name: Make filesystem
community.general.filesystem:
device: "{{ losetup_name.stdout }}p1"
fstype: ext4
register: fs1_succ
- name: Make filesystem (fail)
community.general.filesystem:
device: "{{ losetup_name.stdout }}p2"
fstype: ext4
ignore_errors: true
register: fs_fail
- name: Create second partition
community.general.parted:
device: "{{ losetup_name.stdout }}"
number: 2
state: present
fs_type: ext4
part_start: "{{ partition1.partitions[0].end + 1 }}KiB"
part_end: "100%"
register: partition2
- name: Make filesystem
community.general.filesystem:
device: "{{ losetup_name.stdout }}p2"
fstype: ext4
register: fs2_succ
- name: Remove first partition
community.general.parted:
device: "{{ losetup_name.stdout }}"
number: 1
state: absent
register: partition_rem1
- name: Assert results
assert:
that:
- partition1 is changed
- fs1_succ is changed
- fs_fail is failed
- fs_fail is not changed
- partition2 is changed
- partition2.partitions | length == 2
- fs2_succ is changed
- partition_rem1 is changed
- partition_rem1.partitions | length == 1