X-Git-Url: https://wimlib.net/git/?p=wimlib;a=blobdiff_plain;f=tests%2Ftest-imagex-ntfs;h=8abab0d368bb4557f1b1f084ae03f0a4f9f10d9f;hp=85812baf022dad29c897e5c89fed840f73e02ebe;hb=d85424218ef1148204aac3289bbf4ba2c0da9255;hpb=a3c53f0d3e2ea2267ca89caf100cd41adfabd556 diff --git a/tests/test-imagex-ntfs b/tests/test-imagex-ntfs index 85812baf..8abab0d3 100755 --- a/tests/test-imagex-ntfs +++ b/tests/test-imagex-ntfs @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # This script does some sanity testing of the 'imagex' program, specifically # checking the NTFS capture and apply features. @@ -12,34 +12,44 @@ set -e cd tests srcdir="${srcdir:-.}/.." srcdir="$(cd $srcdir; pwd)" +. "$srcdir/tests/tests-common.sh" -imagex() { - ../imagex $@ > /dev/null -} +TEST_SUBDIR=tmpdir_test-imagex-ntfs __do_unmount() { - if ! fusermount -z -u $1; then - error "Failed to unmount \"$1\"" - fi - + for ((i = 0; i < 10; i++)); do + if fusermount -z -u $1; then + return 0 + else + sleep 1 + fi + done + error "Failed to unmount \"$1\"" } + do_unmount() { if mountpoint $1 &> /dev/null; then __do_unmount $1 fi } +skip_test() { + cd .. + cleanup + exit 77 +} + __do_mount() { - options="$3" - if [ -z "$options" ]; then - options="no_def_opts,silent" - else - options="$options,no_def_opts,silent" - fi - if ! ntfs-3g -o $options $1 $2; then - error "Could not mount NTFS volume \"$1\" on \"$2\"! Make sure ntfs-3g is "\ - "installed, and that you are either running the tests as root or have ntfs-3g "\ - "installed setuid root, so that we can mount a NTFS volume." + if ! ntfs-3g -o "no_def_opts,silent" $1 $2; then + if [ $UID -ne 0 ] && [ "$3" = "nofail" ]; then + echo "WARNING: skipping NTFS tests because we aren't able to " + echo "mount an NTFS volume (perhaps ntfs-3g is not installed setuid root?)" + skip_test + else + error "Could not mount NTFS volume \"$1\" on \"$2\"! Make sure ntfs-3g is "\ + "installed, and that you are either running the tests as root or have ntfs-3g "\ + "installed setuid root, so that we can mount an NTFS volume." + fi fi } @@ -49,38 +59,25 @@ do_mount() { } do_mkntfs() { - if ! mkntfs --force --fast $1 &> /dev/null; then + if ! mkntfs --force --fast $1 > /dev/null; then error "Could not create NTFS volume \"$1\"! Make sure ntfsprogs are installed." fi } init() { echo "Creating NTFS volumes and empty directories to use as mountpoints" - dd if=/dev/zero of=in.ntfs bs=4096 count=500 &> /dev/null - dd if=/dev/zero of=out.ntfs bs=4096 count=500 &> /dev/null + dd if=/dev/zero of=in.ntfs bs=4096 count=1000 &> /dev/null + dd if=/dev/zero of=out.ntfs bs=4096 count=1000 &> /dev/null mkdir in.mnt out.mnt do_mkntfs in.ntfs do_mkntfs out.ntfs - do_mount in.ntfs in.mnt + do_mount in.ntfs in.mnt nofail } cleanup() { - do_unmount in.mnt - do_unmount out.mnt - rm -rf in.ntfs out.ntfs in.mnt out.mnt in.xattr out.xattr ntfs.wim -} -#trap cleanup exit - - -error() { - echo "****************************************************************" - echo " Test failure " - while [ $# -gt 0 ]; do - echo $1 - shift - done - echo "****************************************************************" - exit 1 + do_unmount $TEST_SUBDIR/in.mnt + do_unmount $TEST_SUBDIR/out.mnt + rm -rf $TEST_SUBDIR } do_test() { @@ -88,10 +85,10 @@ do_test() { eval "$1" cd .. __do_unmount in.mnt - if ! imagex capture in.ntfs ntfs.wim; then + if ! wimcapture in.ntfs ntfs.wim; then error "Failed to capture NTFS volume into a WIM" fi - if ! imagex apply ntfs.wim 1 out.ntfs; then + if ! wimapply ntfs.wim 1 out.ntfs; then error "Failed to apply WIM to NTFS volume" fi __do_mount in.ntfs in.mnt noatime @@ -99,12 +96,12 @@ do_test() { if [ -x /usr/bin/tree ]; then tree in.mnt --inodes -F -s --noreport fi - if ! ./tree-cmp in.mnt out.mnt NTFS; then + if ! ../tree-cmp in.mnt out.mnt NTFS; then if [ -x /usr/bin/tree ]; then echo "Dumping tree of applied image" tree out.mnt --inodes -F -s --noreport error 'Information was lost or corrupted while capturing - and then applying a NTFS volume' + and then applying an NTFS volume' fi fi rm -rf out.mnt/* in.mnt/* @@ -117,6 +114,8 @@ msg() { } cleanup +mkdir $TEST_SUBDIR +cd $TEST_SUBDIR init msg "Empty NTFS volume" @@ -155,17 +154,6 @@ do_test "dd if=/dev/zero of=file bs=4096 count=10 &> /dev/null" msg "file with DOS name" do_test "echo 1 > file; setfattr -v file -n system.ntfs_dos_name file" -msg "file with DOS name with alphabetically smaller hardlink in same directory" -do_test "echo 1 > file; setfattr -v file -n system.ntfs_dos_name file; ln file aaa_link" - -msg "file with DOS name with alphabetically larger hardlink in same directory" -do_test "echo 1 > file; setfattr -v file -n system.ntfs_dos_name file; ln file zzz_link" - -msg "file with long name and with DOS name with alphabetically smaller hardlink in same directory" -do_test 'echo 1 > file_with_a_long_name; - setfattr -v "file~1" -n system.ntfs_dos_name file_with_a_long_name; - ln file_with_a_long_name aaa_link' - msg "many nested directories" do_test 'mkdir dir; mkdir dir/subdir; mkdir dir/subdir/subdir2; mkdir dir/subdir/subdir3' @@ -207,25 +195,19 @@ do_test 'echo -n > file; msg "file with empty named data stream and non-empty unnamed data stream" do_test 'echo 1 > file; - setfattr -n user.ads -v "" file;' + setfattr -n user.ads -v 0x file;' msg "file with empty named data stream and empty unnamed data stream" do_test 'echo -n > file; - setfattr -n user.ads -v "" file;' + setfattr -n user.ads -v 0x file;' msg "file with named data stream with hardlink" do_test 'echo 999 > file; - setfattr -n user.ads -v "888" file; + setfattr -n user.ads -v 0x123456 file; ln file link;' -msg "file with named data stream with hardlink and DOS name" -do_test 'echo 999 > file; - setfattr -n user.ads -v "888" file; - ln file link; - setfattr -v DOSNAME -n system.ntfs_dos_name file;' - msg "C source code of wimlib" -do_test 'cp $srcdir/src/*.{c,h} .' +do_test 'cp $srcdir/src/*.c .' msg "file with security descriptor" do_test 'touch file; @@ -267,20 +249,23 @@ do_test 'echo -n 8 > file; setfattr -n user.ads3 anotherfile -v 33; echo -n > emptyfile; setfattr -n user.ads emptyfile -v 8; - setfattr -n user.ads5 emptyfile -v"`cat $srcdir/src/hardlink.c`" + setfattr -n user.ads5 emptyfile -v"`cat $srcdir/src/sha1.c`" mkdir dir/subdir; ln file dir/subdir/file; echo -n 8 > dir/subdir/file2; ln dir/subdir/file dir/subdir/link; - setfattr -n system.ntfs_dos_name -v 123 dir/subdir/link; + echo -n > dir/subdir/empty; + setfattr -n system.ntfs_dos_name -v 123 dir/subdir/empty; setfattr -n system.ntfs_acl -v 0s`cat $srcdir/tests/security_descriptor_1.base64` dir/subdir/link; setfattr -n user.yet_another_ads -v "" dir/subdir/link; setfattr -n user.yet_another_ads2 -v "" dir/subdir/link; setfattr -n user.yet_another_ads3 -v "abc" dir/subdir/link; setfattr -n user.yet_another_ads4 -v "" dir/subdir/link;' -cleanup - echo "**********************************************************" echo " NTFS capture/apply tests passed " echo "**********************************************************" + +cd .. +cleanup +