2008-04-16 12:34:53 +02:00
#
# subunit.sh: shell functions to report test status via the subunit protocol.
# Copyright (C) 2006 Robert Collins <robertc@robertcollins.net>
# Copyright (C) 2008 Jelmer Vernooij <jelmer@samba.org>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
2022-04-22 15:46:04 +02:00
timestamp( )
{
# mark the start time. With Gnu date, you get nanoseconds from %N
# (here truncated to microseconds with %6N), but not on BSDs,
# Solaris, etc, which will apparently leave either %N or N at the end.
date -u +'time: %Y-%m-%d %H:%M:%S.%6NZ' | sed 's/\..*NZ$/.000000Z/'
2016-08-03 16:03:57 +12:00
}
2022-04-22 15:46:04 +02:00
subunit_start_test( )
{
# emit the current protocol start-marker for test $1
timestamp
printf 'test: %s\n' " $1 "
2008-04-16 12:34:53 +02:00
}
2022-04-22 15:46:04 +02:00
subunit_pass_test( )
{
# emit the current protocol test passed marker for test $1
timestamp
printf 'success: %s\n' " $1 "
2008-04-16 12:34:53 +02:00
}
2010-07-10 09:25:57 +02:00
# This is just a hack as we have some broken scripts
# which use "exit $failed", without initializing failed.
failed = 0
2008-04-16 12:34:53 +02:00
2022-04-22 15:46:04 +02:00
subunit_fail_test( )
{
# emit the current protocol fail-marker for test $1, and emit stdin as
# the error text.
# we use stdin because the failure message can be arbitrarily long, and this
# makes it convenient to write in scripts (using <<END syntax.
timestamp
printf 'failure: %s [\n' " $1 "
cat -
printf '\n]\n'
2008-04-16 12:34:53 +02:00
}
2022-04-22 15:46:04 +02:00
subunit_error_test( )
{
# emit the current protocol error-marker for test $1, and emit stdin as
# the error text.
# we use stdin because the failure message can be arbitrarily long, and this
# makes it convenient to write in scripts (using <<END syntax.
timestamp
printf 'error: %s [\n' " $1 "
cat -
printf '\n]\n'
2008-04-16 12:34:53 +02:00
}
2022-04-22 15:46:04 +02:00
subunit_skip_test( )
{
# emit the current protocol skip-marker for test $1, and emit stdin as
# the error text.
# we use stdin because the failure message can be arbitrarily long, and this
# makes it convenient to write in scripts (using <<END syntax.
printf 'skip: %s [\n' " $1 "
cat -
printf '\n]\n'
2013-02-16 09:36:07 +11:00
}
2022-04-22 15:46:04 +02:00
testit( )
{
2008-04-16 12:34:53 +02:00
name = " $1 "
shift
2023-06-16 09:42:07 +02:00
cmdline = " $* "
2008-04-16 12:34:53 +02:00
subunit_start_test " $name "
2022-04-22 15:46:04 +02:00
output = $( $cmdline 2>& 1)
2008-04-16 12:34:53 +02:00
status = $?
if [ x$status = x0 ] ; then
subunit_pass_test " $name "
else
2009-01-08 15:57:59 +01:00
echo " $output " | subunit_fail_test " $name "
2008-04-16 12:34:53 +02:00
fi
return $status
}
2009-09-08 16:01:26 -05:00
2018-09-04 10:38:44 +02:00
# This returns 0 if the command gave success and the grep value was found
# all other cases return != 0
2022-04-22 15:46:04 +02:00
testit_grep( )
{
2018-09-04 10:38:44 +02:00
name = " $1 "
shift
grep = " $1 "
shift
2023-06-16 09:42:07 +02:00
cmdline = " $* "
2018-09-04 10:38:44 +02:00
subunit_start_test " $name "
2022-04-22 15:46:04 +02:00
output = $( $cmdline 2>& 1)
2018-09-04 10:38:44 +02:00
status = $?
if [ x$status != x0 ] ; then
printf '%s' " $output " | subunit_fail_test " $name "
return $status
fi
printf '%s' " $output " | grep -q " $grep "
gstatus = $?
if [ x$gstatus = x0 ] ; then
subunit_pass_test " $name "
else
printf 'GREP: "%s" not found in output:\n%s' " $grep " " $output " | subunit_fail_test " $name "
fi
2023-04-11 14:38:30 +12:00
return $gstatus
2022-11-09 14:04:23 +01:00
}
# This returns 0 if the command gave success and the grep value was found
# num times all other cases return != 0
testit_grep_count( )
{
name = " $1 "
shift
grep = " $1 "
shift
num = " $1 "
shift
2023-06-16 09:42:07 +02:00
cmdline = " $* "
2022-11-09 14:04:23 +01:00
subunit_start_test " $name "
output = $( $cmdline 2>& 1)
status = $?
if [ x$status != x0 ] ; then
printf '%s' " $output " | subunit_fail_test " $name "
return $status
fi
found = $( printf '%s' " $output " | grep -c " $grep " )
if [ x" $found " = x" $num " ] ; then
subunit_pass_test " $name "
else
printf 'GREP: "%s" found "%d" times, expected "%d" in output:\n%s' \
" $grep " " $found " " $num " " $output " |
subunit_fail_test " $name "
2023-02-22 19:02:38 +00:00
return 1
2022-11-09 14:04:23 +01:00
fi
2023-02-22 19:02:38 +00:00
return 0
2018-09-04 10:38:44 +02:00
}
2022-04-22 15:46:04 +02:00
testit_expect_failure( )
{
2009-09-08 16:01:26 -05:00
name = " $1 "
shift
2023-06-16 09:42:07 +02:00
cmdline = " $* "
2009-09-08 16:01:26 -05:00
subunit_start_test " $name "
2022-04-22 15:46:04 +02:00
output = $( $cmdline 2>& 1)
2009-09-08 16:01:26 -05:00
status = $?
if [ x$status = x0 ] ; then
echo " $output " | subunit_fail_test " $name "
2023-04-11 14:04:59 +12:00
return 1
2009-09-08 16:01:26 -05:00
else
subunit_pass_test " $name "
2023-04-11 14:04:59 +12:00
return 0
2009-09-08 16:01:26 -05:00
fi
}
2011-02-03 17:30:53 +11:00
2018-09-04 10:38:44 +02:00
# This returns 0 if the command gave a failure and the grep value was found
# all other cases return != 0
2022-04-22 15:46:04 +02:00
testit_expect_failure_grep( )
{
2018-09-04 10:38:44 +02:00
name = " $1 "
shift
grep = " $1 "
shift
2023-06-16 09:42:07 +02:00
cmdline = " $* "
2018-09-04 10:38:44 +02:00
subunit_start_test " $name "
2022-04-22 15:46:04 +02:00
output = $( $cmdline 2>& 1)
2018-09-04 10:38:44 +02:00
status = $?
if [ x$status = x0 ] ; then
printf '%s' " $output " | subunit_fail_test " $name "
return 1
fi
printf '%s' " $output " | grep -q " $grep "
gstatus = $?
if [ x$gstatus = x0 ] ; then
subunit_pass_test " $name "
else
printf 'GREP: "%s" not found in output:\n%s' " $grep " " $output " | subunit_fail_test " $name "
2023-02-22 19:02:38 +00:00
return 1
2018-09-04 10:38:44 +02:00
fi
2022-11-09 14:09:34 +01:00
return 0
2018-09-04 10:38:44 +02:00
}
2022-04-22 15:46:04 +02:00
testok( )
{
name = $( basename $1 )
2011-02-15 16:03:58 +01:00
failed = $2
exit $failed
}
2011-02-03 17:30:53 +11:00
# work out the top level source directory
if [ -d source4 ] ; then
2022-04-22 15:46:04 +02:00
SRCDIR = "."
2011-02-03 17:30:53 +11:00
else
2022-04-22 15:46:04 +02:00
SRCDIR = ".."
2011-02-03 17:30:53 +11:00
fi
export SRCDIR