From: Eric Biggers Date: Sat, 28 Dec 2013 16:00:09 +0000 (-0600) Subject: Add tests for pathlist extraction X-Git-Tag: v1.6.0~79 X-Git-Url: https://wimlib.net/git/?p=wimlib;a=commitdiff_plain;h=8bcb4fa27679c963a7a049f187a46defb649a889 Add tests for pathlist extraction --- diff --git a/tests/test-imagex-update_and_extract b/tests/test-imagex-update_and_extract index 7d5338f1..c5e25c7c 100755 --- a/tests/test-imagex-update_and_extract +++ b/tests/test-imagex-update_and_extract @@ -29,7 +29,7 @@ trap fail exit prepare_empty_wim() { rm -rf in.dir mkdir in.dir - imagex capture in.dir test.wim + imagex capture in.dir test.wim --compress=none } do_apply() { @@ -193,6 +193,85 @@ rm -rf out.dir imagex apply test.wim 1 out.dir ../tree-cmp "Some File" out.dir/"Some Destination" +msg "Testing path list extract" +echo hello1 > hello1 +echo hello2 > hello2 +echo otherfile > otherfile +prepare_empty_wim +imagex update test.wim 1 << EOF + add hello1 /hello1 + add hello2 /hello2 + add otherfile /otherfile +EOF +cat > pathlist << EOF +hello1 +hello2 +EOF +rm -rf out.dir +imagex extract test.wim 1 @pathlist --dest-dir=out.dir +../tree-cmp hello1 out.dir/hello1 +../tree-cmp hello2 out.dir/hello2 +[ ! -e out.dir/otherfile ] + +msg "Testing path list extract (w/ wildcard)" +cat > pathlist << EOF +hello* +EOF +rm -rf out.dir +imagex extract test.wim 1 @pathlist --dest-dir=out.dir +../tree-cmp hello1 out.dir/hello1 +../tree-cmp hello2 out.dir/hello2 +[ ! -e out.dir/otherfile ] + +msg "Testing path list extract (no match w/ strict; error expected)" +cat > pathlist << EOF +hello* +EOF +rm -rf out.dir +! imagex extract test.wim 1 @pathlist --dest-dir=out.dir --no-wildcards --strict-wildcards + +msg "Testing path list extract (w/ wildcard)" +cat > pathlist << EOF +* +EOF +rm -rf out.dir +imagex extract test.wim 1 @pathlist --dest-dir=out.dir +../tree-cmp hello1 out.dir/hello1 +../tree-cmp hello2 out.dir/hello2 +../tree-cmp otherfile out.dir/otherfile + +msg "Testing path list extract (subdir files)" +prepare_empty_wim +imagex update test.wim 1 << EOF + add hello1 /topdir/subdir1/hello1 + add hello2 /topdir/subdir2/hello2 + add hello1 /topdir/hello1 +EOF +cat > pathlist << EOF +/topdir/subdir?/hello* +EOF +rm -rf out.dir +imagex extract test.wim 1 @pathlist --dest-dir=out.dir +../tree-cmp hello1 out.dir/topdir/subdir1/hello1 +../tree-cmp hello2 out.dir/topdir/subdir2/hello2 +[ ! -e out.dir/topdir/hello1 ] + +msg "Testing case insensitivity" +prepare_empty_wim +imagex update test.wim 1 << EOF + add hello1 /HELLO1 +EOF +cat > pathlist << EOF +hello1 +EOF +rm -rf out.dir +! WIMLIB_IMAGEX_IGNORE_CASE=0 imagex extract test.wim 1 @pathlist \ + --dest-dir=out.dir --strict-wildcards +WIMLIB_IMAGEX_IGNORE_CASE=1 imagex extract test.wim 1 @pathlist \ + --dest-dir=out.dir --strict-wildcards +../tree-cmp hello1 out.dir/HELLO1 +[ ! -e out.dir/topdir/hello1 ] + echo "**********************************************************" echo " imagex update/extract tests passed "