- From 8b3408639e65914aca9f780db765b5eb14162e1b Mon Sep 17 00:00:00 2001
- From: Roland Mainz <roland.mainz@nrubsig.org>
- Date: Wed, 13 Nov 2024 18:12:19 +0100
- Subject: [PATCH] cygwin,tests: Add tests for Windows native tar
- Add tests for Windows native tar (/cygdrive/c/Windows/system32/tar.exe)
- Signed-off-by: Cedric Blancher <cedric.blancher@gmail.com>
- ---
- cygwin/Makefile.install | 2 +
- tests/manual_testing.txt | 10 +++
- .../wintartest_comparewinvsgnu001.bash | 77 +++++++++++++++++++
- tests/wintartests/wintartest_seq001.bash | 51 ++++++++++++
- 4 files changed, 140 insertions(+)
- create mode 100644 tests/wintartests/wintartest_comparewinvsgnu001.bash
- create mode 100644 tests/wintartests/wintartest_seq001.bash
- diff --git a/cygwin/Makefile.install b/cygwin/Makefile.install
- index 438475b..019f038 100644
- --- a/cygwin/Makefile.install
- +++ b/cygwin/Makefile.install
- @@ -96,6 +96,8 @@ installdest:
- fi
- cp $(PROJECT_BASEDIR_DIR)/tests/nfsbuildtest/nfsbuildtest.ksh93 $(DESTDIR)/$(CYGWIN_BASEPATH)/usr/share/msnfs41client/tests/misc/nfsbuildtest.ksh93
- cp $(PROJECT_BASEDIR_DIR)/tests/fstest_make_numtree1/fstest_make_numtree1.ksh93 $(DESTDIR)/$(CYGWIN_BASEPATH)/usr/share/msnfs41client/tests/misc/fstest_make_numtree1.ksh93
- + cp $(PROJECT_BASEDIR_DIR)/tests/wintartests/wintartest_comparewinvsgnu001.bash $(DESTDIR)/$(CYGWIN_BASEPATH)/usr/share/msnfs41client/tests/misc/wintartest_comparewinvsgnu001.bash
- + cp $(PROJECT_BASEDIR_DIR)/tests/wintartests/wintartest_seq001.bash $(DESTDIR)/$(CYGWIN_BASEPATH)/usr/share/msnfs41client/tests/misc/wintartest_seq001.bash
- @ printf "# Package ksh93&co (if available) since Cygwin does not ship with it yet\n"
- [[ -x $(CYGWIN_BASEPATH)/bin/ksh93.exe ]] && cp -f $(CYGWIN_BASEPATH)/bin/ksh93.exe $(DESTDIR)/$(CYGWIN_BASEPATH)/bin/ksh93.exe || true
- [[ -x $(CYGWIN_BASEPATH)/bin/shcomp.exe ]] && cp -f $(CYGWIN_BASEPATH)/bin/shcomp.exe $(DESTDIR)/$(CYGWIN_BASEPATH)/bin/shcomp.exe || true
- diff --git a/tests/manual_testing.txt b/tests/manual_testing.txt
- index 65848c8..8ba983c 100644
- --- a/tests/manual_testing.txt
- +++ b/tests/manual_testing.txt
- @@ -411,5 +411,15 @@ time ksh93 $msnfs41clientgitroot/tests/fstest_make_numtree1/fstest_make_numtree1
- cd /cygdrive/n/xxx/
- drmemory -batch -check_uninit_all -strict_bitops -logdir "$(cygpath -w "$PWD")" -- "$(cygpath -w /sbin/nfs_mount)"
- +#
- +# Run Windows tar (/cygdrive/c/Windows/system32/tar) tests
- +# on NFSv4.1 filesystem
- +#
- +
- +cd /cygdrive/n/xxx/
- +bash /usr/share/msnfs41client/tests/misc/wintartests/wintartest_seq001.bash
- +
- +cd /cygdrive/n/xxx/
- +bash /usr/share/msnfs41client/tests/misc/wintartest_comparewinvsgnu001.bash mytarfile.tar.bz2
- # EOF.
- diff --git a/tests/wintartests/wintartest_comparewinvsgnu001.bash b/tests/wintartests/wintartest_comparewinvsgnu001.bash
- new file mode 100644
- index 0000000..39c1ffb
- --- /dev/null
- +++ b/tests/wintartests/wintartest_comparewinvsgnu001.bash
- @@ -0,0 +1,77 @@
- +#!/bin/bash
- +
- +#
- +# wintartest_comparewinvsgnu001.bash - filesystem test
- +# which compares files unpacked by /cygdrive/c/Windows/system32/tar
- +# and /usr/bin/tar, and checks whether files have same hashes
- +#
- +# Written by Roland Mainz <roland.mainz@nrubsig.org>
- +#
- +
- +#
- +# Notes:
- +# - Genreate test tar.bz2 files like this:
- +# $ seq 1000000 >10000seq.txt ; tar -cvf - 10000seq.txt | bzip2 -9 >10000seq.tar.bz2
- +# - Compare individual files with
- +# $ diff -u <(od -x -v cygwintar/bin/ksh93.exe) <(od -x -v wintar/bin/ksh93.exe)
- +#
- +
- +export PATH='/bin:/usr/bin'
- +
- +# set umask=0000 to avoid permission madness on SMB
- +umask 0000
- +
- +typeset intarfile="$1"
- +typeset f
- +typeset -i num_failed_hash_compare=0
- +
- +if [[ ! -x '/cygdrive/c/Windows/system32/tar' ]] ; then
- + printf $"%s: %s not found.\n" \
- + "$0" '/cygdrive/c/Windows/system32/tar' 1>&2
- + exit 1
- +fi
- +
- +if [[ ! -r "$intarfile" ]] ; then
- + printf $"%s: Input file %q not readable.\n" \
- + "$0" "$intarfile" 1>&2
- + exit 1
- +fi
- +
- +typeset IFS=$'\n'
- +
- +set -o xtrace
- +set -o errexit
- +
- +intarfile="$(realpath "$intarfile")"
- +
- +rm -Rf 'wintar_tmp' 'cygwintar_tmp'
- +mkdir 'wintar_tmp' 'cygwintar_tmp'
- +
- +cd 'wintar_tmp'
- +/cygdrive/c/Windows/system32/tar -xvf "$(cygpath -w "$intarfile")"
- +cd '..'
- +
- +cd 'cygwintar_tmp'
- +/usr/bin/tar -xvf "$intarfile"
- +cd '..'
- +
- +typeset -a file_list=(
- + $(cd 'cygwintar_tmp' && find . -type f)
- +)
- +
- +set +o xtrace +o errexit
- +
- +for f in "${file_list[@]}" ; do
- + IFS=' ' read wintar_hash dummy < <(openssl md5 -r "wintar_tmp/$f")
- + IFS=' ' read cygwintar_hash dummy < <(openssl md5 -r "cygwintar_tmp/$f")
- +
- + if [[ "$wintar_hash" == "$cygwintar_hash" ]] ; then
- + printf $"NOTE:\tHashes for file %q OK\n" "$f"
- + else
- + printf $"ERROR:\tHashes for file %q differ, wintar_hash(%s) != cygwintar_hash(%s)\n" \
- + "$f" "$wintar_hash" "$cygwintar_hash"
- + (( num_failed_hash_compare++ ))
- + fi
- +done
- +
- +exit $((num_failed_hash_compare > 0?1:0))
- diff --git a/tests/wintartests/wintartest_seq001.bash b/tests/wintartests/wintartest_seq001.bash
- new file mode 100644
- index 0000000..489d169
- --- /dev/null
- +++ b/tests/wintartests/wintartest_seq001.bash
- @@ -0,0 +1,51 @@
- +#!/bin/bash
- +
- +#
- +# wintartest_seq001.bash - filesystem test
- +# which generates files with /usr/bin/seq, packs them with
- +# Cygwin's GNU /usr/bin/tar and tests whether they contain
- +# zero-bytes (which should never appear in a text file)
- +# after unpacking them
- +# with /cygdrive/c/Windows/system32/tar
- +#
- +# Written by Roland Mainz <roland.mainz@nrubsig.org>
- +#
- +
- +export PATH='/bin:/usr/bin'
- +
- +typeset -i i
- +typeset out
- +
- +set -o xtrace
- +set -o errexit
- +
- +# Set umask=0000 to avoid permission trouble with SMB filesystems
- +umask 0000
- +
- +rm -f '10000seq.txt'
- +seq 100000 >'10000seq.txt' ; tar -cvf - '10000seq.txt' >'10000seq.tar' #| pbzip2 -1 >'10000seq.tar.bz2'
- +
- +rm -Rf 'tmp'
- +mkdir 'tmp'
- +cd 'tmp'
- +
- +set +o xtrace
- +
- +for (( i=0 ; i < 2000 ; i++ )) ; do
- + printf '# Cycle %d:\n' "$i"
- + /cygdrive/c/Windows/system32/tar -xvf "$(cygpath -w '../10000seq.tar')"
- + out="$(od -x -v '10000seq.txt' | grep -F ' 0000' | head -n 5)"
- +
- + if [[ "$out" != '' ]] ; then
- + printf '# ERROR: Sequence of zero bytes in plain /usr/bin/seq output found:\n'
- + printf -- '---- snip ----\n%s\n---- snip ----\n' "$out"
- + exit 1
- + fi
- +
- + rm -f '10000seq.txt'
- +done
- +
- +printf '# SUCCESS\n'
- +
- +exit 0
- +# EOF.
- --
- 2.45.1
msnfs41client: Patch for tests using native Windows tar.exe, 2024-11-13
Posted by Anonymous on Wed 13th Nov 2024 17:35
raw | new post
Submit a correction or amendment below (click here to make a fresh posting)
After submitting an amendment, you'll be able to view the differences between the old and new posts easily.