X-Git-Url: https://wimlib.net/git/?p=wimlib;a=blobdiff_plain;f=tests%2Ftest-imagex-ntfs;h=9705d9ecf156e744efbeb3e1a0a521d25f094a50;hp=a0c79fccf8ef5ed5ae88ae27cd248666b64d87f9;hb=61edb3642435e6c494d7c7f3038334dd196f58fd;hpb=507c465ba8f26dc79e43d53b3d8df1dc07074e9f diff --git a/tests/test-imagex-ntfs b/tests/test-imagex-ntfs index a0c79fcc..9705d9ec 100755 --- a/tests/test-imagex-ntfs +++ b/tests/test-imagex-ntfs @@ -1,25 +1,28 @@ -#!/bin/bash +#!/usr/bin/env bash # This script does some sanity testing of the 'imagex' program, specifically # checking the NTFS capture and apply features. # # This test will fail if wimlib was compiled with --without-ntfs-3g. +# +# Please note that cleanup is not done if a test fails, and NTFS volumes may +# remain mounted. -# Assume an in-tree build. set -e cd tests +srcdir="${srcdir:-.}/.." +srcdir="$(cd $srcdir; pwd)" +. "$srcdir/tests/tests-common.sh" -imagex() { - #echo "imagex $@" - ../imagex $@ > /dev/null -} +TEST_SUBDIR=tmpdir_test-imagex-ntfs __do_unmount() { - if ! fusermount -u $1; then + if ! fusermount -z -u $1; then error "Failed to unmount \"$1\"" fi } + do_unmount() { if mountpoint $1 &> /dev/null; then __do_unmount $1 @@ -28,8 +31,15 @@ do_unmount() { __do_mount() { options="$3" - if ! ntfs-3g ${options:+-o $options} $1 $2; then - error "Could not mount NTFS volume \"$1\" on \"$2\". Make sure ntfs-3g is installed." + 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." fi } @@ -39,15 +49,15 @@ do_mount() { } do_mkntfs() { - if ! mkntfs --force --fast $1 &> /dev/null; then - error "Could not create NTFS volume on \"$1\". Make sure ntfs-3g / ntfsprogs are installed" + 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=260 &> /dev/null - dd if=/dev/zero of=out.ntfs bs=4096 count=260 &> /dev/null + 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 mkdir in.mnt out.mnt do_mkntfs in.ntfs do_mkntfs out.ntfs @@ -55,19 +65,9 @@ init() { } cleanup() { - do_unmount in.mnt - do_unmount out.mnt - rm -rf in.ntfs out.ntfs in.mnt out.mnt in.xattr out.xattr -} -#trap cleanup exit - - -error() { - echo "****************************************************************" - echo " Test failure " - echo $* - echo "****************************************************************" - exit 1 + do_unmount $TEST_SUBDIR/in.mnt + do_unmount $TEST_SUBDIR/out.mnt + rm -rf $TEST_SUBDIR } do_test() { @@ -86,7 +86,7 @@ do_test() { if [ -x /usr/bin/tree ]; then tree in.mnt --inodes -F -s --noreport fi - if ! ./ntfs-cmp in.mnt out.mnt; 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 @@ -98,113 +98,187 @@ do_test() { __do_unmount out.mnt } msg() { - echo "Testing image capture and application of $1" + echo "--------------------------------------------------------------------" + echo "Testing image capture and application of NTFS volume containing $1" + echo "--------------------------------------------------------------------" } cleanup +mkdir $TEST_SUBDIR +cd $TEST_SUBDIR init msg "Empty NTFS volume" do_test "" -msg "NTFS volume containing a single file" +msg "a single file" do_test "echo 1 > file" -msg "NTFS volume containing a single directory" +msg "a single directory" do_test "mkdir dir" -msg "NTFS volume containing subdirectory with file" +msg "subdirectory with file" do_test "mkdir dir; echo 1 > dir/file" -msg "NTFS volume containing empty file" +msg "empty file" do_test "echo -n > empty_file" -msg "NTFS volume containing two empty files" +msg "two empty files" do_test "echo -n > empty_file_1; echo -n > empty_file_2" -msg "NTFS volume containing hard link in same directory" +msg "hard link in same directory" do_test "echo 1 > file; ln file link" -msg "NTFS volume containing hard link between empty files" +msg "hard link between empty files" do_test "echo -n > empty_file; ln empty_file link" -msg "NTFS volume containing relative symbolic link" +msg "relative symbolic link" do_test "echo 1 > file; ln -s file symlink" -msg "NTFS volume containing absolute symbolic link" +msg "absolute symbolic link" do_test "echo 1 > file; ln -s /some/absolute/target symlink" -msg "NTFS volume containing large file" +msg "large file" do_test "dd if=/dev/zero of=file bs=4096 count=10 &> /dev/null" -msg "NTFS volume containing file with DOS name" +msg "file with DOS name" do_test "echo 1 > file; setfattr -v file -n system.ntfs_dos_name file" -msg "NTFS volume containing 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" +# To be replaced/removed: files with DOS names can no longer be hard linked as +# of NTFS-3g 2013.1.13. -msg "NTFS volume containing 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 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 "NTFS volume containing 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 "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 "NTFS volume containing many nested directories" +#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' -msg "NTFS volume containing identical files and symlinks in subdirectory" +msg "identical files and symlinks in subdirectory" do_test 'mkdir dir; echo 888 > dir/file; echo 888 > dir/idfile2; ln -s ../dir dir/circle; ln -s file dir/filelink' -msg "NTFS volume containing hard link group and identical files not hard linked" +msg "hard link group and identical files not hard linked" do_test 'echo 888 > file; echo 888 > file2; ln file link; ln file link2; echo 888 > file3' -msg "NTFS volume containing file with named data stream" +msg "file with named data stream" do_test 'echo 1 > file; setfattr -n user.ads -v 2 file' -msg "NTFS volume containing file with multiple named data streams" +msg "file with multiple named data streams" do_test 'echo 1 > file; setfattr -n user.a -v 1 file; setfattr -n user.aa -v 11 file; setfattr -n user.aaa -v 111 file; setfattr -n user.aaaa -v 1111 file' -msg "NTFS volume containing file with multiple named data streams with same contents" +msg "file with multiple named data streams with same contents" do_test 'echo 1 > file; setfattr -n user.a -v 1111 file; setfattr -n user.aa -v 1111 file; setfattr -n user.aaa -v 1111 file; setfattr -n user.aaaa -v 1111 file;' - -msg "NTFS volume containing file with named data streams with same contents as other file" + +msg "file with named data streams with same contents as other file" do_test 'echo -n > file; setfattr -n user.a -v 1111 file; echo -n 1111 > otherfile;' -msg "NTFS volume containing file with empty named data stream and non-empty unnamed data stream" +msg "file with empty named data stream and non-empty unnamed data stream" do_test 'echo 1 > file; setfattr -n user.ads -v "" file;' -msg "NTFS volume containing file with empty named data stream and empty unnamed data stream" +msg "file with empty named data stream and empty unnamed data stream" do_test 'echo -n > file; setfattr -n user.ads -v "" file;' -msg "NTFS volume containing file with named data stream with hardlink" +msg "file with named data stream with hardlink" do_test 'echo 999 > file; setfattr -n user.ads -v "888" file; ln file link;' -msg "NTFS volume containing 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;' +# To be replaced/removed: files with DOS names can no longer be hard linked as +# of NTFS-3g 2013.1.13. + +#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} .' + +msg "file with security descriptor" +do_test 'touch file; + setfattr -n system.ntfs_acl -v 0s`cat $srcdir/tests/security_descriptor_1.base64` file' + +msg "files with different security descriptors" +do_test 'touch file; + touch file2; + setfattr -n system.ntfs_acl -v 0s`cat $srcdir/tests/security_descriptor_1.base64` file + setfattr -n system.ntfs_acl -v 0s`cat $srcdir/tests/security_descriptor_2.base64` file' + +msg "files with different security descriptors and some with the same security descriptor" +do_test 'touch file; + touch file2; + touch file3; + mkdir dir; + setfattr -n system.ntfs_acl -v 0s`cat $srcdir/tests/security_descriptor_1.base64` file + setfattr -n system.ntfs_acl -v 0s`cat $srcdir/tests/security_descriptor_2.base64` file + setfattr -n system.ntfs_acl -v 0s`cat $srcdir/tests/security_descriptor_1.base64` dir + setfattr -n system.ntfs_acl -v 0s`cat $srcdir/tests/security_descriptor_1.base64` file3' + +msg "tons of random stuff" +do_test 'echo -n 8 > file; + ln file hardlink; + ln -s hardlink symlink; + echo -n 8 > identical file; + dd if=/dev/urandom of=randomfile bs=4096 count=10 &>/dev/null; + mkdir dir; + setfattr -n system.ntfs_dos_name -v DOSNAME dir; + setfattr -n system.ntfs_acl -v 0s`cat $srcdir/tests/security_descriptor_1.base64` dir + mkdir anotherdir; + cp file anotherdir; + ln file anotherdir/anotherhardlink; + ln -s .. anotherdir/anothersymlink; + ln -s anothersymlink anotherdir/symlinktosymlink; + echo -n 33 > anotherfile; + setfattr -n user.ads anotherfile -v 33; + setfattr -n user.ads2 anotherfile -v 8; + 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`" + mkdir dir/subdir; + ln file dir/subdir/file; + echo -n 8 > dir/subdir/file2; + ln dir/subdir/file 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;' + +echo "**********************************************************" +echo " NTFS capture/apply tests passed " +echo "**********************************************************" + +cd .. +cleanup +