tc_test.sh revision 275988
1# Copyright (c) 2007 The NetBSD Foundation, Inc.
2# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions
6# are met:
7# 1. Redistributions of source code must retain the above copyright
8#    notice, this list of conditions and the following disclaimer.
9# 2. Redistributions in binary form must reproduce the above copyright
10#    notice, this list of conditions and the following disclaimer in the
11#    documentation and/or other materials provided with the distribution.
12#
13# THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND
14# CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
15# INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
16# MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17# IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS BE LIABLE FOR ANY
18# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
20# GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
21# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
22# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
23# OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
24# IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25
26atf_test_case default_status
27default_status_head()
28{
29    atf_set "descr" "Verifies that test cases get the correct default" \
30                    "status if they did not provide any"
31}
32default_status_body()
33{
34    h="$(atf_get_srcdir)/misc_helpers -s $(atf_get_srcdir)"
35    atf_check -s eq:0 -o ignore -e ignore ${h} tc_pass_true
36    atf_check -s eq:1 -o ignore -e ignore ${h} tc_pass_false
37    atf_check -s eq:1 -o match:'failed:.*body.*non-ok exit code' -e ignore \
38        ${h} tc_pass_return_error
39    atf_check -s eq:1 -o ignore -e match:'An error' ${h} tc_fail
40}
41
42atf_test_case missing_body
43missing_body_head()
44{
45    atf_set "descr" "Verifies that test cases without a body are reported" \
46                    "as failed"
47}
48missing_body_body()
49{
50    h="$(atf_get_srcdir)/misc_helpers -s $(atf_get_srcdir)"
51    atf_check -s eq:1 -o ignore -e ignore ${h} tc_missing_body
52}
53
54atf_init_test_cases()
55{
56    atf_add_test_case default_status
57    atf_add_test_case missing_body
58}
59
60# vim: syntax=sh:expandtab:shiftwidth=4:softtabstop=4
61