filesystem tests: enable LVM

Co-authored-by: Pierre-Louis Bonicoli <pierre-louis.bonicoli@libregerbil.fr>
pull/46690/head
Pierre-Louis Bonicoli 6 years ago committed by Michael Scherer
parent 42730cffc4
commit e016af3cc6

@ -19,4 +19,4 @@ tested_filesystems:
vfat: {fssize: 20, grow: True} vfat: {fssize: 20, grow: True}
ocfs2: {fssize: '{{ ocfs2_fssize }}', grow: False} # grow not implemented ocfs2: {fssize: '{{ ocfs2_fssize }}', grow: False} # grow not implemented
f2fs: {fssize: '{{ f2fs_fssize|default(60) }}', grow: 'f2fs_version is version("1.10.0", ">=")'} f2fs: {fssize: '{{ f2fs_fssize|default(60) }}', grow: 'f2fs_version is version("1.10.0", ">=")'}
# untested: lvm, requires a block device lvm: {fssize: 20, grow: True}

@ -0,0 +1,27 @@
- name: 'Create a "disk" file'
command: 'dd if=/dev/zero of={{ image_file }} bs=1M count={{ fssize }}'
- vars:
dev: '{{ image_file }}'
block:
- when: fstype == 'lvm'
block:
- name: 'Create a loop device for LVM'
command: 'losetup --show -f {{ dev }}'
register: loop_device_cmd
- set_fact:
dev: "{{ loop_device_cmd.stdout }}"
- include_tasks: '{{ action }}.yml'
always:
- name: 'Detach loop device used for LVM'
command: 'losetup -d {{ dev }}'
args:
removes: '{{ dev }}'
when: fstype == 'lvm'
- file:
name: '{{ image_file }}'
state: absent

@ -1,89 +1,77 @@
- block: - name: filesystem creation
- name: 'Create a "disk" file' filesystem:
command: 'dd if=/dev/zero of={{ dev }} bs=1M count={{ fssize }}' dev: '{{ dev }}'
fstype: '{{ fstype }}'
- name: filesystem creation register: fs_result
filesystem:
dev: '{{ dev }}' - assert:
fstype: '{{ fstype }}' that:
register: fs_result - 'fs_result is changed'
- 'fs_result is success'
- assert:
that: - command: 'blkid -c /dev/null -o value -s UUID {{ dev }}'
- 'fs_result is changed' register: uuid
- 'fs_result is success'
- name: "Check that filesystem isn't created if force isn't used"
- command: 'blkid -c /dev/null -o value -s UUID {{ dev }}' filesystem:
register: uuid dev: '{{ dev }}'
fstype: '{{ fstype }}'
- name: "Check that filesystem isn't created if force isn't used" register: fs2_result
- command: 'blkid -c /dev/null -o value -s UUID {{ dev }}'
register: uuid2
- assert:
that:
- 'not (fs2_result is changed)'
- 'fs2_result is success'
- 'uuid.stdout == uuid2.stdout'
- name: Check that filesystem is recreated if force is used
filesystem:
dev: '{{ dev }}'
fstype: '{{ fstype }}'
force: yes
register: fs3_result
- command: 'blkid -c /dev/null -o value -s UUID {{ dev }}'
register: uuid3
- assert:
that:
- 'fs3_result is changed'
- 'fs3_result is success'
- 'uuid.stdout != uuid3.stdout'
- name: increase fake device
shell: 'dd if=/dev/zero bs=1M count=20 >> {{ image_file }}'
- when: 'grow|bool and (fstype != "vfat" or resize_vfat)'
block:
- name: Expand filesystem
filesystem: filesystem:
dev: '{{ dev }}' dev: '{{ dev }}'
fstype: '{{ fstype }}' fstype: '{{ fstype }}'
register: fs2_result resizefs: yes
register: fs4_result
- command: 'blkid -c /dev/null -o value -s UUID {{ dev }}' - command: 'blkid -c /dev/null -o value -s UUID {{ dev }}'
register: uuid2 register: uuid4
- assert: - assert:
that: that:
- 'not (fs2_result is changed)' - 'fs4_result is changed'
- 'fs2_result is success' - 'fs4_result is success'
- 'uuid.stdout == uuid2.stdout' - 'uuid3.stdout == uuid4.stdout' # unchanged
- name: Check that filesystem is recreated if force is used - name: Try to expand filesystem again
filesystem: filesystem:
dev: '{{ dev }}' dev: '{{ dev }}'
fstype: '{{ fstype }}' fstype: '{{ fstype }}'
force: yes resizefs: yes
register: fs3_result register: fs5_result
- command: 'blkid -c /dev/null -o value -s UUID {{ dev }}'
register: uuid3
- assert: - assert:
that: that:
- 'fs3_result is changed' - 'not (fs5_result is changed)'
- 'fs3_result is success' - 'fs5_result is successful'
- 'uuid.stdout != uuid3.stdout'
- name: increase fake device
shell: 'dd if=/dev/zero bs=1M count=20 >> {{ dev }}'
- when: 'grow|bool and (fstype != "vfat" or resize_vfat)'
block:
- name: Expand filesystem
filesystem:
dev: '{{ dev }}'
fstype: '{{ fstype }}'
resizefs: yes
register: fs4_result
- command: 'blkid -c /dev/null -o value -s UUID {{ dev }}'
register: uuid4
- assert:
that:
- 'fs4_result is changed'
- 'fs4_result is success'
- 'uuid3.stdout == uuid4.stdout' # unchanged
- name: Try to expand filesystem again
filesystem:
dev: '{{ dev }}'
fstype: '{{ fstype }}'
resizefs: yes
register: fs5_result
- assert:
that:
- 'not (fs5_result is changed)'
- 'fs5_result is successful'
- import_tasks: overwrite_another_fs.yml
when: ansible_system != 'FreeBSD'
always:
- file:
name: '{{ dev }}'
state: absent

@ -13,23 +13,27 @@
paths: paths:
- '../vars/' - '../vars/'
- include_tasks: create_fs.yml - include_tasks: create_device.yml
vars: vars:
dev: '{{ ansible_user_dir }}/ansible_testing/img' image_file: '{{ ansible_user_dir }}/ansible_testing/img'
fstype: '{{ item.key }}' fstype: '{{ item.0.key }}'
fssize: '{{ item.value.fssize }}' fssize: '{{ item.0.value.fssize }}'
grow: '{{ item.value.grow }}' grow: '{{ item.0.value.grow }}'
action: '{{ item.1 }}'
when: when:
- 'not (item.key == "btrfs" and ansible_system == "FreeBSD")' - 'not (item.0.key == "btrfs" and ansible_system == "FreeBSD")' # btrfs not available on FreeBSD
- 'not (item.key == "ocfs2" and ansible_os_family != "Debian")' # On Ubuntu trusty, blkid is unable to identify filesystem smaller than 256Mo, see
# On Ubuntu trusty, blkid (2.20.1) is unable to identify filesystem smaller than 256Mo, see:
# https://www.kernel.org/pub/linux/utils/util-linux/v2.21/v2.21-ChangeLog # https://www.kernel.org/pub/linux/utils/util-linux/v2.21/v2.21-ChangeLog
# https://anonscm.debian.org/cgit/collab-maint/pkg-util-linux.git/commit/?id=04f7020eadf31efc731558df92daa0a1c336c46c # https://anonscm.debian.org/cgit/collab-maint/pkg-util-linux.git/commit/?id=04f7020eadf31efc731558df92daa0a1c336c46c
- 'not (item.key == "btrfs" and (ansible_distribution == "Ubuntu" and ansible_distribution_release == "trusty"))' - 'not (item.0.key == "btrfs" and (ansible_distribution == "Ubuntu" and ansible_distribution_release == "trusty"))'
- 'not (item.key == "f2fs" and ansible_system == "FreeBSD")' - 'not (item.0.key == "lvm" and ansible_system == "FreeBSD")' # LVM not available on FreeBSD
- 'not (item.0.key == "lvm" and ansible_virtualization_type == "docker")' # Tests use losetup which can not be used inside unprivileged container
- 'not (item.0.key == "ocfs2" and ansible_os_family != "Debian")' # ocfs2 only available on Debian based distributions
- 'not (item.0.key == "f2fs" and ansible_system == "FreeBSD")'
# f2fs-tools package not available with RHEL/CentOS # f2fs-tools package not available with RHEL/CentOS
- 'not (item.key == "f2fs" and ansible_distribution in ["CentOS", "RedHat"])' - 'not (item.0.key == "f2fs" and ansible_distribution in ["CentOS", "RedHat"])'
# On Ubuntu trusty, blkid (2.20.1) is unable to identify F2FS filesystem. blkid handles F2FS since v2.23, see: # On Ubuntu trusty, blkid (2.20.1) is unable to identify F2FS filesystem. blkid handles F2FS since v2.23, see:
# https://mirrors.edge.kernel.org/pub/linux/utils/util-linux/v2.23/v2.23-ReleaseNotes # https://mirrors.edge.kernel.org/pub/linux/utils/util-linux/v2.23/v2.23-ReleaseNotes
- 'not (item.key == "f2fs" and ansible_distribution == "Ubuntu" and ansible_distribution_version is version("14.04", "<="))' - 'not (item.0.key == "f2fs" and ansible_distribution == "Ubuntu" and ansible_distribution_version is version("14.04", "<="))'
loop: "{{ lookup('dict', tested_filesystems) }}" - 'not (item.1 == "overwrite_another_fs" and ansible_system == "FreeBSD")'
loop: "{{ query('dict', tested_filesystems)|product(['create_fs', 'overwrite_another_fs'])|list }}"

@ -1,5 +1,5 @@
- name: 'Recreate "disk" file' - name: 'Recreate "disk" file'
command: 'dd if=/dev/zero of={{ dev }} bs=1M count={{ fssize }}' command: 'dd if=/dev/zero of={{ image_file }} bs=1M count={{ fssize }}'
- name: 'Create a swap filesystem' - name: 'Create a swap filesystem'
command: 'mkswap {{ dev }}' command: 'mkswap {{ dev }}'

@ -2,18 +2,19 @@
package: package:
name: '{{ item }}' name: '{{ item }}'
state: present state: present
when: ansible_system == 'Linux' or item != 'dosfstools'
with_items: with_items:
- e2fsprogs - e2fsprogs
- xfsprogs - xfsprogs
- dosfstools
- block: - block:
- name: install btrfs progs - name: install btrfs progs
package: package:
name: btrfs-progs name: btrfs-progs
state: present state: present
when: ansible_os_family != 'Suse' and not (ansible_distribution == 'Ubuntu' and ansible_distribution_version is version('16.04', '<=')) when:
- ansible_os_family != 'Suse'
- not (ansible_distribution == 'Ubuntu' and ansible_distribution_version is version('16.04', '<='))
- ansible_system != "FreeBSD"
- name: install btrfs progs (Ubuntu <= 16.04) - name: install btrfs progs (Ubuntu <= 16.04)
package: package:
@ -39,6 +40,7 @@
- when: - when:
- ansible_os_family != 'RedHat' or ansible_distribution == 'Fedora' - ansible_os_family != 'RedHat' or ansible_distribution == 'Fedora'
- ansible_distribution != 'Ubuntu' or ansible_distribution_version is version('16.04', '>=') - ansible_distribution != 'Ubuntu' or ansible_distribution_version is version('16.04', '>=')
- ansible_system != "FreeBSD"
block: block:
- name: install f2fs - name: install f2fs
package: package:
@ -53,7 +55,13 @@
- set_fact: - set_fact:
f2fs_version: '{{ mkfs_f2fs.stdout | regex_search("F2FS-tools: mkfs.f2fs Ver:.*") | regex_replace("F2FS-tools: mkfs.f2fs Ver: ([0-9.]+) .*", "\1") }}' f2fs_version: '{{ mkfs_f2fs.stdout | regex_search("F2FS-tools: mkfs.f2fs Ver:.*") | regex_replace("F2FS-tools: mkfs.f2fs Ver: ([0-9.]+) .*", "\1") }}'
when: ansible_system == 'Linux' - name: install dosfstools and lvm2 (Linux)
package:
name: '{{ item }}'
with_items:
- dosfstools
- lvm2
when: ansible_system == 'Linux'
- block: - block:
- name: install fatresize - name: install fatresize

Loading…
Cancel
Save