1# Copyright 2012 Google 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 are
6# met:
7#
8# * Redistributions of source code must retain the above copyright
9#   notice, this list of conditions and the following disclaimer.
10# * Redistributions in binary form must reproduce the above copyright
11#   notice, this list of conditions and the following disclaimer in the
12#   documentation and/or other materials provided with the distribution.
13# * Neither the name of Google Inc. nor the names of its contributors
14#   may be used to endorse or promote products derived from this software
15#   without specific prior written permission.
16#
17# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28
29# Helper function for the various one_* test cases.
30#
31# The first argument must be one of C, CXX or SH, and this indicates the
32# language of the test program.
33#
34# The second argument is the name of the test program, without an extension.
35# The corresponding source file must exist in the current directory.
36one_test() {
37	local lang="${1}"; shift
38	local name="${1}"; shift
39
40	cat >Makefile <<EOF
41.include <bsd.own.mk>
42TESTSDIR = \${TESTSBASE}/fake
43TESTS_${lang} = ${name}
44.include <bsd.test.mk>
45EOF
46
47	atf_check -o ignore make
48	mkdir -p root/usr/tests/fake
49	create_make_conf mk.conf owngrp DESTDIR="$(pwd)/root"
50	atf_check -o ignore make install
51
52	atf_check -o match:'ident: one_tc' "./root/usr/tests/fake/${name}" -l
53}
54
55atf_test_case one_c
56one_c_body() {
57	cat >t_fake.c <<EOF
58#include <atf-c.h>
59ATF_TC_WITHOUT_HEAD(one_tc);
60ATF_TC_BODY(one_tc, tc)
61{
62	atf_tc_fail("Failing explicitly");
63}
64
65ATF_TP_ADD_TCS(tp)
66{
67	ATF_TP_ADD_TC(tp, one_tc);
68	return atf_no_error();
69}
70EOF
71	one_test C t_fake
72}
73
74atf_test_case one_cxx
75one_cxx_body() {
76	cat >t_fake.cpp <<EOF
77#include <atf-c++.hpp>
78ATF_TEST_CASE_WITHOUT_HEAD(one_tc);
79ATF_TEST_CASE_BODY(one_tc)
80{
81	fail("Failing explicitly");
82}
83
84ATF_INIT_TEST_CASES(tcs)
85{
86	ATF_ADD_TEST_CASE(tcs, one_tc);
87}
88EOF
89	one_test CXX t_fake
90}
91
92atf_test_case one_sh
93one_sh_body() {
94	cat >t_fake.sh <<EOF
95atf_test_case one_tc
96one_tc_body() {
97	atf_fail "Failing explicitly"
98}
99
100atf_init_test_cases() {
101	atf_add_test_case one_tc
102}
103EOF
104	one_test SH t_fake
105}
106
107atf_init_test_cases() {
108	atf_add_test_case one_c
109	atf_add_test_case one_cxx
110	atf_add_test_case one_sh
111}
112