Tests: Add trace reading test with babeltrace bin
authorChristian Babeux <christian.babeux@efficios.com>
Thu, 22 Aug 2013 17:01:48 +0000 (13:01 -0400)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Thu, 22 Aug 2013 17:08:20 +0000 (13:08 -0400)
This test uses the sample traces found in tests/ctf-traces and the
babeltrace cli tool to parse them. The traces found in
ctf-traces/succeed should return a successful exit code and those in
ctf-traces/fail should return a failure exit code.

Signed-off-by: Christian Babeux <christian.babeux@efficios.com>
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
configure.ac
tests/Makefile.am
tests/bin/Makefile.am [new file with mode: 0644]
tests/bin/test_trace_read [new file with mode: 0755]
tests/runall.sh [deleted file]

index f38bfb711e51086748fcda3570fe1066516e113e..58a472d1fac2c2976964ccad603cb96aa53faede 100644 (file)
@@ -133,6 +133,7 @@ AC_CONFIG_FILES([
        lib/prio_heap/Makefile
        include/Makefile
        tests/Makefile
+       tests/bin/Makefile
        tests/lib/Makefile
        tests/utils/Makefile
        tests/utils/tap/Makefile
index cf68aace63ecb6d7dbc9b5b25db933ddfbe1072c..b03b7e0aa1d9ce46345e4fe8c1ea0e42ce0413ca 100644 (file)
@@ -1,8 +1,3 @@
-AM_CFLAGS = $(PACKAGE_CFLAGS) -I$(top_srcdir)/include
+SUBDIRS = utils bin lib
 
-SUBDIRS = utils lib
-
-EXTRA_DIST = runall.sh ctf-traces/**
-
-check-am:
-       ./runall.sh
+EXTRA_DIST = ctf-traces/**
diff --git a/tests/bin/Makefile.am b/tests/bin/Makefile.am
new file mode 100644 (file)
index 0000000..1243823
--- /dev/null
@@ -0,0 +1 @@
+EXTRA_DIST = test_trace_read
diff --git a/tests/bin/test_trace_read b/tests/bin/test_trace_read
new file mode 100755 (executable)
index 0000000..b80ca95
--- /dev/null
@@ -0,0 +1,48 @@
+#!/bin/bash
+#
+# Copyright (C) - 2013 Christian Babeux <christian.babeux@efficios.com>
+#
+# This program is free software; you can redistribute it and/or modify it
+# under the terms of the GNU General Public License, version 2 only, as
+# published by the Free Software Foundation.
+#
+# This program is distributed in the hope that it will be useful, but WITHOUT
+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
+# more details.
+#
+# You should have received a copy of the GNU General Public License along with
+# this program; if not, write to the Free Software Foundation, Inc., 51
+# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+
+CURDIR=$(dirname $0)
+TESTDIR=$CURDIR/..
+
+BABELTRACE_BIN=$CURDIR/../../converter/babeltrace
+
+CTF_TRACES=$TESTDIR/ctf-traces
+
+source $TESTDIR/utils/tap/tap.sh
+
+SUCCESS_TRACES=(${CTF_TRACES}/succeed/*)
+FAIL_TRACES=(${CTF_TRACES}/fail/*)
+
+NUM_TESTS=$((${#SUCCESS_TRACES[@]} + ${#FAIL_TRACES[@]}))
+
+plan_tests $NUM_TESTS
+
+for path in ${SUCCESS_TRACES[@]}; do
+       trace=$(basename ${path})
+       $BABELTRACE_BIN ${path} > /dev/null 2>&1
+       ok $? "Run babeltrace with trace ${trace}"
+done
+
+for path in ${FAIL_TRACES[@]}; do
+       trace=$(basename ${path})
+       $BABELTRACE_BIN ${path} > /dev/null 2>&1
+       if [ $? -eq 0 ]; then
+               fail "Run babeltrace with invalid trace ${trace}"
+       else
+               pass "Run babeltrace with invalid trace ${trace}"
+       fi
+done
diff --git a/tests/runall.sh b/tests/runall.sh
deleted file mode 100755 (executable)
index c10e88a..0000000
+++ /dev/null
@@ -1,76 +0,0 @@
-#!/bin/bash
-
-TESTDIR=$(dirname $0)
-DIR=$(readlink -f ${TESTDIR})
-BABELTRACE_BIN=${DIR}/../converter/babeltrace
-CTF_TRACES=${DIR}/ctf-traces
-
-function test_check_success ()
-{
-       if [ $? -ne 0 ] ; then
-               return 1
-       else
-               return 0
-       fi
-}
-
-function test_check_fail ()
-{
-       if [ $? -eq 0 ] ; then
-               return 1
-       else
-               return 0
-       fi
-}
-
-function run_babeltrace ()
-{
-       ${BABELTRACE_BIN} $* > /dev/null 2>&1
-       return $?
-}
-
-function print_test_result ()
-{
-       if [ $# -ne 3 ] ; then
-               echo "Invalid arguments provided"
-               exit 1
-       fi
-
-       if [ ${2} -eq 0 ] ; then
-               echo -n "ok"
-       else
-               echo -n "not ok"
-       fi
-       echo -e " "${1}" - "${3}
-}
-
-successTraces=(${CTF_TRACES}/succeed/*)
-failTraces=(${CTF_TRACES}/fail/*)
-testCount=$((2 + ${#successTraces[@]} + ${#failTraces[@]}))
-
-currentTestIndex=1
-echo -e 1..${testCount}
-
-#run babeltrace, expects success
-run_babeltrace
-test_check_success
-print_test_result $((currentTestIndex++)) $? "Running babeltrace without arguments"
-
-#run babeltrace with a bogus argument, expects failure
-run_babeltrace --bogusarg
-test_check_fail
-print_test_result $((currentTestIndex++)) $? "Running babeltrace with a bogus argument"
-
-for tracePath in ${successTraces[@]}; do
-       run_babeltrace ${tracePath}
-       test_check_success
-       print_test_result $((currentTestIndex++)) $? "Running babeltrace with trace ${tracePath}"
-done
-
-for tracePath in ${failTraces[@]}; do
-       run_babeltrace ${tracePath}
-       test_check_fail
-       print_test_result $((currentTestIndex++)) $? "Running babeltrace with trace ${tracePath}"
-done
-
-exit 0
This page took 0.02726 seconds and 4 git commands to generate.