tests: Rename python/samba/tests/libsmb.py
[Samba.git] / testprogs / blackbox / subunit.sh
blob75a9b5ec7e3cf58397f1af3c1243ed298d90a9f4
2 # subunit.sh: shell functions to report test status via the subunit protocol.
3 # Copyright (C) 2006 Robert Collins <robertc@robertcollins.net>
4 # Copyright (C) 2008 Jelmer Vernooij <jelmer@samba.org>
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with this program; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 timestamp()
23 # mark the start time. With Gnu date, you get nanoseconds from %N
24 # (here truncated to microseconds with %6N), but not on BSDs,
25 # Solaris, etc, which will apparently leave either %N or N at the end.
26 date -u +'time: %Y-%m-%d %H:%M:%S.%6NZ' | sed 's/\..*NZ$/.000000Z/'
29 subunit_start_test()
31 # emit the current protocol start-marker for test $1
32 timestamp
33 printf 'test: %s\n' "$1"
36 subunit_pass_test()
38 # emit the current protocol test passed marker for test $1
39 timestamp
40 printf 'success: %s\n' "$1"
43 # This is just a hack as we have some broken scripts
44 # which use "exit $failed", without initializing failed.
45 failed=0
47 subunit_fail_test()
49 # emit the current protocol fail-marker for test $1, and emit stdin as
50 # the error text.
51 # we use stdin because the failure message can be arbitrarily long, and this
52 # makes it convenient to write in scripts (using <<END syntax.
53 timestamp
54 printf 'failure: %s [\n' "$1"
55 cat -
56 printf '\n]\n'
59 subunit_error_test()
61 # emit the current protocol error-marker for test $1, and emit stdin as
62 # the error text.
63 # we use stdin because the failure message can be arbitrarily long, and this
64 # makes it convenient to write in scripts (using <<END syntax.
65 timestamp
66 printf 'error: %s [\n' "$1"
67 cat -
68 printf '\n]\n'
71 subunit_skip_test()
73 # emit the current protocol skip-marker for test $1, and emit stdin as
74 # the error text.
75 # we use stdin because the failure message can be arbitrarily long, and this
76 # makes it convenient to write in scripts (using <<END syntax.
77 printf 'skip: %s [\n' "$1"
78 cat -
79 printf '\n]\n'
82 testit()
84 name="$1"
85 shift
86 cmdline="$@"
87 subunit_start_test "$name"
88 output=$($cmdline 2>&1)
89 status=$?
90 if [ x$status = x0 ]; then
91 subunit_pass_test "$name"
92 else
93 echo "$output" | subunit_fail_test "$name"
95 return $status
98 # This returns 0 if the command gave success and the grep value was found
99 # all other cases return != 0
100 testit_grep()
102 name="$1"
103 shift
104 grep="$1"
105 shift
106 cmdline="$@"
107 subunit_start_test "$name"
108 output=$($cmdline 2>&1)
109 status=$?
110 if [ x$status != x0 ]; then
111 printf '%s' "$output" | subunit_fail_test "$name"
112 return $status
114 printf '%s' "$output" | grep -q "$grep"
115 gstatus=$?
116 if [ x$gstatus = x0 ]; then
117 subunit_pass_test "$name"
118 else
119 printf 'GREP: "%s" not found in output:\n%s' "$grep" "$output" | subunit_fail_test "$name"
121 return $status
124 testit_expect_failure()
126 name="$1"
127 shift
128 cmdline="$@"
129 subunit_start_test "$name"
130 output=$($cmdline 2>&1)
131 status=$?
132 if [ x$status = x0 ]; then
133 echo "$output" | subunit_fail_test "$name"
134 else
135 subunit_pass_test "$name"
137 return $status
140 # This returns 0 if the command gave a failure and the grep value was found
141 # all other cases return != 0
142 testit_expect_failure_grep()
144 name="$1"
145 shift
146 grep="$1"
147 shift
148 cmdline="$@"
149 subunit_start_test "$name"
150 output=$($cmdline 2>&1)
151 status=$?
152 if [ x$status = x0 ]; then
153 printf '%s' "$output" | subunit_fail_test "$name"
154 return 1
156 printf '%s' "$output" | grep -q "$grep"
157 gstatus=$?
158 if [ x$gstatus = x0 ]; then
159 subunit_pass_test "$name"
160 else
161 printf 'GREP: "%s" not found in output:\n%s' "$grep" "$output" | subunit_fail_test "$name"
163 return $status
166 testok()
168 name=$(basename $1)
169 failed=$2
171 exit $failed
174 # work out the top level source directory
175 if [ -d source4 ]; then
176 SRCDIR="."
177 else
178 SRCDIR=".."
180 export SRCDIR