summaryrefslogtreecommitdiffstats
path: root/testsuite
diff options
context:
space:
mode:
authorDaniel Baumann <mail@daniel-baumann.ch>2015-11-07 15:57:18 +0000
committerDaniel Baumann <mail@daniel-baumann.ch>2015-11-07 15:57:18 +0000
commite0310a3e54eb3ed0938c63f6df4528520b6c0e51 (patch)
tree8079176d348230619f2d1ae9dedc1f4ec27f9e61 /testsuite
parentInitial commit. (diff)
downloadzutils-e0310a3e54eb3ed0938c63f6df4528520b6c0e51.tar.xz
zutils-e0310a3e54eb3ed0938c63f6df4528520b6c0e51.zip
Adding upstream version 0.2.upstream/0.2
Signed-off-by: Daniel Baumann <mail@daniel-baumann.ch>
Diffstat (limited to 'testsuite')
-rwxr-xr-xtestsuite/check.sh110
1 files changed, 110 insertions, 0 deletions
diff --git a/testsuite/check.sh b/testsuite/check.sh
new file mode 100755
index 0000000..5d20086
--- /dev/null
+++ b/testsuite/check.sh
@@ -0,0 +1,110 @@
+#! /bin/sh
+# check script for Zutils - Utilities dealing with compressed files
+# Copyright (C) 2009 Antonio Diaz Diaz.
+#
+# This script is free software: you have unlimited permission
+# to copy, distribute and modify it.
+
+LC_ALL=C
+export LC_ALL
+objdir=`pwd`
+testdir=`cd "$1" ; pwd`
+ZCAT="${objdir}"/zcat
+ZDIFF="${objdir}"/zdiff
+ZGREP="${objdir}"/zgrep
+compressors="gzip bzip2 lzip"
+extensions="gz bz2 lz"
+framework_failure() { echo 'failure in testing framework'; exit 1; }
+
+if [ ! -x "${ZCAT}" ] ; then
+ echo "${ZCAT}: cannot execute"
+ exit 1
+fi
+
+if [ -d tmp ] ; then rm -r tmp ; fi
+mkdir tmp
+echo -n "testing zutils..."
+cd "${objdir}"/tmp
+
+for i in ${compressors}; do
+ cat "${testdir}"/../COPYING > in || framework_failure
+ $i in || framework_failure
+ echo -n .
+done
+
+cat "${testdir}"/../COPYING > in || framework_failure
+cat in > -in- || framework_failure
+cat in.lz > -in-.lz || framework_failure
+cat in in in in in > in5 || framework_failure
+fail=0
+
+
+for i in ${extensions}; do
+ "${ZCAT}" in.$i > copy || fail=1
+ cmp in copy || fail=1
+ echo -n .
+done
+
+"${ZCAT}" in in.gz in.bz2 in.lz -- -in- > copy5 || fail=1
+cmp in5 copy5 || fail=1
+echo -n .
+
+
+for i in ${extensions}; do
+ "${ZDIFF}" in.$i || fail=1
+ echo -n .
+ "${ZDIFF}" in in.$i || fail=1
+ echo -n .
+ "${ZDIFF}" in.$i in || fail=1
+ echo -n .
+done
+
+"${ZDIFF}" in || fail=1
+echo -n .
+"${ZDIFF}" in.lz in.gz || fail=1
+echo -n .
+"${ZDIFF}" in.gz -- -in-.lz || fail=1
+echo -n .
+"${ZDIFF}" -- -in-.lz in.gz || fail=1
+echo -n .
+"${ZDIFF}" in -- -in-.lz || fail=1
+echo -n .
+"${ZDIFF}" -- -in- in.lz || fail=1
+echo -n .
+"${ZDIFF}" in.lz -- -in- || fail=1
+echo -n .
+"${ZDIFF}" -- -in-.lz in || fail=1
+echo -n .
+"${ZDIFF}" -- -in- in || fail=1
+echo -n .
+"${ZDIFF}" in -- -in- || fail=1
+echo -n .
+
+
+for i in ${extensions}; do
+ "${ZDIFF}" --cmp in.$i || fail=1
+ echo -n .
+ "${ZDIFF}" --cmp in in.$i || fail=1
+ echo -n .
+ "${ZDIFF}" --cmp in.$i in || fail=1
+ echo -n .
+done
+
+
+for i in ${extensions}; do
+ "${ZGREP}" License in.$i 2>&1 > /dev/null || fail=1
+ echo -n .
+done
+
+"${ZGREP}" License in in.gz in.bz2 in.lz -- -in- 2>&1 > /dev/null || fail=1
+echo -n .
+
+
+echo
+if test ${fail} = 0; then
+ echo "tests completed successfully."
+ cd "${objdir}" && rm -r tmp
+else
+ echo "tests failed."
+fi
+exit ${fail}