X-Git-Url: https://wimlib.net/git/?p=wimlib;a=blobdiff_plain;f=tests%2Ftest-imagex-mount;h=906a3d65c76e0cc0e40ce0518bef7613a1f85f12;hp=2317aa607b0211a5ddc8216420e7c4c980927053;hb=8eaff5673d8e133e72e20cf4409ab4c901831424;hpb=8b3de832a524f51d228b1b23114e101f544cf65e diff --git a/tests/test-imagex-mount b/tests/test-imagex-mount index 2317aa60..906a3d65 100755 --- a/tests/test-imagex-mount +++ b/tests/test-imagex-mount @@ -1,41 +1,27 @@ -#!/bin/sh +#!/usr/bin/env bash # Test WIM mounting set -e -srcdir=${srcdir:-.} -srcdir=`realpath $srcdir` cd tests +srcdir="${srcdir:-.}/.." +srcdir="$(cd $srcdir; pwd)" +. "$srcdir/tests/tests-common.sh" -imagex() { - echo "imagex $@" - ../imagex $@ > /dev/null -} - -imagex_info() { - echo "imagex info $@" - ../imagex info "$@" -} +TEST_SUBDIR=tmpdir_test-imagex-mount -imagex_mountrw() { - echo "imagex mountrw $@" - ../imagex mountrw --debug "$@" &> mount.log & - while ! mountpoint $2 >& /dev/null; do - sleep 0.01; - done - return 0 -} +if [ ! -r /dev/fuse ]; then + echo "WARNING: /dev/fuse is not readable." + echo "Skipping WIM mounting checks" + exit 0 +fi 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 - rm -rf dir* tmp* *.wim *.swm empty.wim tmp.orig tmp.mnt \ - tmp.apply mount.log test.tar wimlib-staging* + fusermount -u $TEST_SUBDIR/tmp &> /dev/null || true + fusermount -u $TEST_SUBDIR/tmp.mnt &> /dev/null || true + rm -rf $TEST_SUBDIR } + init() { mkdir dir cp $srcdir/src/*.c $srcdir/src/*.h dir @@ -53,15 +39,9 @@ init() { imagex capture tmp.empty empty.wim } -error() { - echo "**********************************************" - echo " Test failure " - echo $* - echo "**********************************************" - exit 1 -} - cleanup +mkdir $TEST_SUBDIR +cd $TEST_SUBDIR init # imagex mount @@ -74,27 +54,30 @@ 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 + if ! cp tmp/lz77.c lz77.c; then error "Failed to extract file from read-only mounted WIM" fi - if ! diff -q dir/lz.c lz.c; then + if ! diff -q dir/lz77.c lz77.c; then error "Extracted file does not match copy in mounted WIM" fi - if ! diff -q tmp/lz.c dir/lz.c; then + if ! diff -q tmp/lz77.c dir/lz77.c; then error "Extractef file does not match original" fi - rm -f lz.c + rm -f lz77.c echo "Testing modifying mounted read-only WIM (should fail)" - if rm tmp/lz.c; then + if rm tmp/lz77.c; then error "Removing file from read-only mounted WIM didn't fail" fi if touch tmp/newfile; then error "Creating file on read-only mounted WIM didn't fail" fi - if echo 3 > tmp/lz.c; then + if echo 3 > tmp/lz77.c; then error "Writing to file on read-only mounted WIM didn't fail" fi echo "Testing diff of mounted read-only WIM with original directory" @@ -139,10 +122,10 @@ echo "Testing removing file from mounted WIM" if ! imagex mountrw dir.wim dir tmp; then error "Failed to re-mount test WIM read-write" fi -if ! rm tmp/lz.c; then +if ! rm tmp/lz77.c; then error "Failed to remove file from read-write mounted WIM" fi -if test -f tmp/lz.c; then +if test -f tmp/lz77.c; then error "Removing file from read-write mounted WIM failed" fi echo "Testing making directory in mounted WIM" @@ -159,7 +142,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" @@ -176,7 +159,7 @@ echo "Unmounting WIM with changes committed and --check" if ! imagex unmount tmp --commit --check; then error "Failed to unmount read-write mounted WIM" fi -if test "`imagex_info dir.wim | grep Integrity | awk '{print $3}'`" != "yes"; then +if test "`imagex info dir.wim | grep Integrity | awk '{print $3}'`" != "yes"; then error "Integrity information was not included" fi rm -rf tmp @@ -186,16 +169,16 @@ 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 # Now do some tests using tar. do_tree_cmp() { - if ! ./tree-cmp $1 $2; then + if ! ../tree-cmp $1 $2; then if [ -x /usr/bin/tree ]; then echo "Dumping tree of applied image" tree $2 --inodes -F -s --noreport @@ -226,7 +209,7 @@ do_test() { tar cf ../test.tar . cd .. - if ! imagex_mountrw test.wim tmp.mnt; then + if ! imagex mountrw test.wim tmp.mnt --unix-data; then error "Failed to mount WIM read-write" fi @@ -266,10 +249,12 @@ do_test() { rm -rf tmp.orig/* tmp.apply/* } -. common_tests.sh +. $srcdir/tests/common_tests.sh -cleanup echo "**********************************************************" echo " WIM mount tests passed " echo "**********************************************************" + +cd .. +cleanup