xref: /netbsd-src/external/bsd/kyua-atf-compat/dist/helpers.sh (revision b92cbc7321a4a2d13071f4a9bcf671898920c6b4)
1#! __ATF_SH__
2# Copyright 2012 Google Inc.
3# All rights reserved.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions are
7# met:
8#
9# * Redistributions of source code must retain the above copyright
10#   notice, this list of conditions and the following disclaimer.
11# * Redistributions in binary form must reproduce the above copyright
12#   notice, this list of conditions and the following disclaimer in the
13#   documentation and/or other materials provided with the distribution.
14# * Neither the name of Google Inc. nor the names of its contributors
15#   may be used to endorse or promote products derived from this software
16#   without specific prior written permission.
17#
18# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
22# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
24# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
26# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
27# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29
30
31# Path outside of this test program's work directory to which we can write
32# temporary files for inspection by the caller.
33CONTROL_DIR='@CONTROL_DIR@'
34
35
36# This is set by the test programs when copying the helpers into the work
37# directory to specify which test cases to enable.
38ENABLED_TESTS='@ENABLED_TESTS@'
39
40
41atf_test_case fail
42fail_body() {
43    atf_fail "On purpose"
44}
45
46
47atf_test_case pass
48pass_body() {
49    :
50}
51
52
53atf_test_case skip
54skip_body() {
55    atf_skip "Skipped reason"
56}
57
58
59atf_test_case config
60config_body() {
61    local outfile="${CONTROL_DIR}/config.out"
62
63    rm "${outfile}"
64    touch "${outfile}"
65    for var in unprivileged-user var1 var2 var3; do
66        if atf_config_has "${var}"; then
67            echo "${var} = $(atf_config_get "${var}")" >>"${outfile}"
68        fi
69    done
70}
71
72
73atf_init_test_cases() {
74    for test_name in ${ENABLED_TESTS}; do
75        atf_add_test_case "${test_name}"
76    done
77}
78