[Skiboot] [PATCH 1/2] external/test: Create an external test harness

Cyril Bur cyril.bur at au1.ibm.com
Mon Sep 7 17:24:09 AEST 2015


Unlike skiboot where individual functions can be tested, the external/
binaries can sometimes only be fully tested by observing the output of the
full binary as such this little framework designed to grab stdout and
stderr and compare to provided output files should prove useful.

Signed-off-by: Cyril Bur <cyril.bur at au1.ibm.com>
---
 external/test/test.sh | 80 +++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 80 insertions(+)
 create mode 100755 external/test/test.sh

diff --git a/external/test/test.sh b/external/test/test.sh
new file mode 100755
index 0000000..98fddf8
--- /dev/null
+++ b/external/test/test.sh
@@ -0,0 +1,80 @@
+#! /bin/sh
+
+
+run_binary() {
+	if [ -x "$1" ] ; then
+		$VALGRIND "$1" $2 2>> $STDERR_OUT 1>> $STDOUT_OUT
+	else
+		echo "Fatal error, cannot execute binary '$1'. Did you make?";
+		exit 1;
+	fi
+}
+
+fail_test() {
+	rm -rf "$STDERR_OUT";
+	rm -rf "$STDOUT_OUT";
+	echo "$0 ($CUR_TEST): test failed";
+	exit ${1:-1};
+}
+
+pass_test() {
+	/bin/true;
+}
+
+diff_with_result() {
+	# Explicitly diff a file with an arbitary result file
+	if [ "$#" -eq 1 ] ; then
+		if ! diff -u "$RESULT" "$1" ; then
+			fail_test;
+		fi
+	# Otherwise just diff result.out with stdout and result.err with stderr
+	else
+		if ! diff -u "${RESULT}.out" "$STDOUT_OUT" ; then
+			fail_test;
+		fi
+		if ! diff -u "${RESULT}.err" "$STDERR_OUT" ; then
+			fail_test;
+		fi
+	fi
+}
+
+run_tests() {
+	if [ $# -ne 2 ] ; then
+		echo "Usage run_tests test_dir result_dir";
+		exit 1;
+	fi
+
+	all_tests="$1";
+	res_path="$2";
+
+	if [ ! -d "$res_path" ] ; then
+		echo "Result path isn't a valid directory";
+		exit 1;
+	fi
+
+	export STDERR_OUT=$(mktemp --tmpdir external-test-stderr.XXXXXX);
+	export STDOUT_OUT=$(mktemp --tmpdir external-test-stdout.XXXXXX);
+
+
+	for the_test in $all_tests; do
+		export CUR_TEST=$(basename $the_test)
+		export RESULT="$res_path/$CUR_TEST"
+
+		. "$the_test";
+		R="$?"
+		if [ "$R" -ne 0 ] ; then
+			fail_test "$R";
+		fi
+	#reset for next test
+	> "$STDERR_OUT";
+	> "$STDOUT_OUT";
+	done
+
+	rm -rf $STDERR_OUT;
+	rm -rf $STDOUT_OUT;
+
+	echo "$0 tests passed"
+
+	exit 0;
+}
+
-- 
2.5.1



More information about the Skiboot mailing list