xref: /freebsd/contrib/bc/tests/read.sh (revision 1f474190)
1#! /bin/sh
2#
3# SPDX-License-Identifier: BSD-2-Clause
4#
5# Copyright (c) 2018-2020 Gavin D. Howard and contributors.
6#
7# Redistribution and use in source and binary forms, with or without
8# modification, are permitted provided that the following conditions are met:
9#
10# * Redistributions of source code must retain the above copyright notice, this
11#   list of conditions and the following disclaimer.
12#
13# * Redistributions in binary form must reproduce the above copyright notice,
14#   this list of conditions and the following disclaimer in the documentation
15#   and/or other materials provided with the distribution.
16#
17# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
21# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27# POSSIBILITY OF SUCH DAMAGE.
28#
29
30set -e
31
32script="$0"
33testdir=$(dirname "$script")
34
35. "$testdir/../functions.sh"
36
37if [ "$#" -lt 1 ]; then
38	printf 'usage: %s dir [exe [args...]]\n' "$0"
39	printf 'valid dirs are:\n'
40	printf '\n'
41	cat "$testdir/all.txt"
42	printf '\n'
43	exit 1
44fi
45
46d="$1"
47shift
48
49if [ "$#" -gt 0 ]; then
50	exe="$1"
51	shift
52else
53	exe="$testdir/../bin/$d"
54fi
55
56name="$testdir/$d/read.txt"
57results="$testdir/$d/read_results.txt"
58errors="$testdir/$d/read_errors.txt"
59
60out="$testdir/../.log_${d}_test.txt"
61
62exebase=$(basename "$exe")
63
64if [ "$d" = "bc" ]; then
65	options="-lq"
66	halt="halt"
67else
68	options="-x"
69	halt="q"
70fi
71
72if [ "$d" = "bc" ]; then
73	read_call="read()"
74	read_expr="${read_call}\n5+5;"
75else
76	read_call="?"
77	read_expr="${read_call}"
78fi
79
80printf 'Running %s read...' "$d"
81
82while read line; do
83
84	printf '%s\n%s\n' "$read_call" "$line" | "$exe" "$@" "$options" > "$out"
85	diff "$results" "$out"
86
87done < "$name"
88
89printf 'pass\n'
90
91set +e
92
93printf 'Running %s read errors...' "$d"
94
95while read line; do
96
97	printf '%s\n%s\n' "$read_call" "$line" | "$exe" "$@" "$options" 2> "$out" > /dev/null
98	err="$?"
99
100	checktest "$d" "$err" "$line" "$out" "$exebase"
101
102done < "$errors"
103
104printf 'pass\n'
105
106printf 'Running %s empty read...' "$d"
107
108read_test=$(printf '%s\n' "$read_call")
109
110printf '%s\n' "$read_test" | "$exe" "$@" "$opts" 2> "$out" > /dev/null
111err="$?"
112
113checktest "$d" "$err" "$read_test" "$out" "$exebase"
114
115printf 'pass\n'
116
117printf 'Running %s read EOF...' "$d"
118
119read_test=$(printf '%s' "$read_call")
120
121printf '%s' "$read_test" | "$exe" "$@" "$opts" 2> "$out" > /dev/null
122err="$?"
123
124checktest "$d" "$err" "$read_test" "$out" "$exebase"
125
126printf 'pass\n'
127