xref: /freebsd/lib/libxo/tests/functional_test.sh (revision a0ee8cc6)
1#
2# Copyright 2015 EMC Corp.
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#
15# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
16# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
17# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
18# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
19# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
20# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
21# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26#
27# $FreeBSD$
28
29SRCDIR=$(atf_get_srcdir)
30
31check()
32{
33	local tc=${1}; shift
34	local xo_fmt=${1}; shift
35
36	local err_file="${SRCDIR}/${tc}${xo_fmt:+.${xo_fmt}}.err"
37	[ -s "${err_file}" ] && err_flag="-e file:${err_file}"
38	local out_file="${SRCDIR}/${tc}${xo_fmt:+.${xo_fmt}}.out"
39	[ -s "${out_file}" ] && out_flag="-o file:${out_file}"
40
41	if [ "$xo_fmt" = "E" ]; then
42		LIBXO_OPTIONS="warn,encoder=test"
43	else
44		LIBXO_OPTIONS=":W${xo_fmt}"
45	fi
46
47	atf_check -s exit:0 -e file:${err_file} -o file:${out_file} \
48	    env LC_ALL=en_US.UTF-8 \
49	        LIBXO_OPTIONS="${LIBXO_OPTIONS}" TZ="EST" "${SRCDIR}/${tc}" \
50
51}
52
53add_testcase()
54{
55	local tc=${1}
56	local tc_escaped
57
58	oldIFS=$IFS
59	IFS='.'
60	set -- $tc
61	tc_script=${1}
62	[ $# -eq 3 ] && xo_fmt=${2} # Don't set xo_fmt to `out'
63	IFS=$oldIFS
64	tc_escaped="${tc_script}${xo_fmt:+__${xo_fmt}}"
65
66	atf_test_case ${tc_escaped}
67	eval "${tc_escaped}_body() { check ${tc_script} ${xo_fmt}; }"
68	atf_add_test_case ${tc_escaped}
69}
70
71atf_init_test_cases()
72{
73	for path in $(find -Es "${SRCDIR}" -name '*.out'); do
74		add_testcase ${path##*/}
75	done
76}
77