X-Git-Url: https://wimlib.net/git/?p=wimlib;a=blobdiff_plain;f=tests%2Ftest-imagex-mount;h=276dcbb5ad19824fd5e628d2e186339a57ba6ecf;hp=2317aa607b0211a5ddc8216420e7c4c980927053;hb=0ce54d08c0b1c56f37ea2998acd6847da7ced8a2;hpb=8b3de832a524f51d228b1b23114e101f544cf65e diff --git a/tests/test-imagex-mount b/tests/test-imagex-mount index 2317aa60..276dcbb5 100755 --- a/tests/test-imagex-mount +++ b/tests/test-imagex-mount @@ -1,11 +1,16 @@ -#!/bin/sh +#!/usr/bin/env bash # Test WIM mounting set -e -srcdir=${srcdir:-.} -srcdir=`realpath $srcdir` cd tests +. tests-common.sh + +if [ ! -r /dev/fuse ]; then + echo "WARNING: /dev/fuse is not readable." + echo "Skipping WIM mounting checks" + exit 0 +fi imagex() { echo "imagex $@" @@ -27,12 +32,8 @@ imagex_mountrw() { } cleanup() { - if mountpoint tmp &> /dev/null; then - fusermount -u tmp > /dev/null; - fi - if mountpoint tmp.mnt &> /dev/null; then - fusermount -u tmp.mnt > /dev/null; - fi + fusermount -u tmp &> /dev/null || true + fusermount -u tmp.mnt &> /dev/null || true rm -rf dir* tmp* *.wim *.swm empty.wim tmp.orig tmp.mnt \ tmp.apply mount.log test.tar wimlib-staging* } @@ -54,10 +55,13 @@ init() { } error() { - echo "**********************************************" - echo " Test failure " - echo $* - echo "**********************************************" + echo "****************************************************************" + echo " Test failure " + while [ $# -gt 0 ]; do + echo $1 + shift + done + echo "****************************************************************" exit 1 } @@ -74,7 +78,10 @@ for flag in "--compress=none" "--compress=maximum" "--compress=fast"; do fi mkdir tmp if ! imagex mount dir.wim dir tmp; then - error "Failde to mount test WIM read-only" + error "Failed to mount test WIM read-only" \ + "Please read any error messages above before reporting this test failure."\ + "Perhaps you don't have FUSE installed, or the FUSE kernel module isn't" \ + "loaded, or you aren't a member of the FUSE group?" fi echo "Testing extracting file from mounted read-only WIM" if ! cp tmp/lz.c lz.c; then @@ -159,7 +166,7 @@ fi if ! test -f tmp/newdir/empty_file; then error "New empty file not created correctly in read-write mounted WIM" fi -if ! test "`stat -c %s tmp/newdir/empty_file`" = 0; then +if ! test "`get_file_size tmp/newdir/empty_file`" = 0; then error "New empty file in read-write mounted WIM is not empty" fi echo "Testing making new non-empty file in mounted WIM" @@ -186,10 +193,10 @@ fi if ! diff -q tmp/newdir/zeroes1 tmp/newdir/zeroes2; then error "The new non-empty files we made in the read-write mounted WIM were not extracted correctly" fi -if test `stat -c %s tmp/newdir/empty_file` != 0; then +if test `get_file_size tmp/newdir/empty_file` != 0; then error "The new empty file we made in the read-write mounted WIM was not extracted correctly" fi -if test `stat -c %s tmp/newdir/zeroes1` != 4096; then +if test `get_file_size tmp/newdir/zeroes1` != 4096; then error "The new non-empty files we made in the read-write mounted WIM were not extracted correctly" fi @@ -231,7 +238,7 @@ do_test() { fi cd tmp.mnt - if ! tar xf ../test.tar; then + if ! tar xf ../test.tar --no-same-owner; then error "Failed to untar archive on read-write mounted WIM" fi cd .. @@ -246,7 +253,7 @@ do_test() { fi cd tmp.mnt - if ! tar xf ../test.tar; then + if ! tar xf ../test.tar --no-same-owner; then error "Failed to untar archive on read-write mounted WIM" fi cd .. @@ -266,7 +273,7 @@ do_test() { rm -rf tmp.orig/* tmp.apply/* } -. common_tests.sh +. $srcdir/tests/common_tests.sh cleanup