]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/bc/tests/read.sh
usr.bin/gh-bc, contrib/bc: update to version 5.0.0
[FreeBSD/FreeBSD.git] / contrib / bc / tests / read.sh
1 #! /bin/sh
2 #
3 # SPDX-License-Identifier: BSD-2-Clause
4 #
5 # Copyright (c) 2018-2021 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
30 set -e
31
32 script="$0"
33 testdir=$(dirname "$script")
34
35 . "$testdir/../scripts/functions.sh"
36
37 outputdir=${BC_TEST_OUTPUT_DIR:-$testdir}
38
39 # Command-line processing.
40 if [ "$#" -lt 1 ]; then
41         printf 'usage: %s dir [exe [args...]]\n' "$0"
42         printf 'valid dirs are:\n'
43         printf '\n'
44         cat "$testdir/all.txt"
45         printf '\n'
46         exit 1
47 fi
48
49 d="$1"
50 shift
51
52 if [ "$#" -gt 0 ]; then
53         exe="$1"
54         shift
55 else
56         exe="$testdir/../bin/$d"
57 fi
58
59 name="$testdir/$d/read.txt"
60 results="$testdir/$d/read_results.txt"
61 errors="$testdir/$d/read_errors.txt"
62
63 out="$outputdir/${d}_outputs/read_results.txt"
64 outdir=$(dirname "$out")
65
66 # Make sure the directory exists.
67 if [ ! -d "$outdir" ]; then
68         mkdir -p "$outdir"
69 fi
70
71 exebase=$(basename "$exe")
72
73 # Set stuff for the correct calculator.
74 if [ "$d" = "bc" ]; then
75         options="-lq"
76         halt="halt"
77         read_call="read()"
78         read_expr="${read_call}\n5+5;"
79 else
80         options="-x"
81         halt="q"
82         read_call="?"
83         read_expr="${read_call}"
84 fi
85
86 # I use these, so unset them to make the tests work.
87 unset BC_ENV_ARGS
88 unset BC_LINE_LENGTH
89 unset DC_ENV_ARGS
90 unset DC_LINE_LENGTH
91
92 printf 'Running %s read...' "$d"
93
94 set +e
95
96 # Run read() on every line.
97 while read line; do
98
99         printf '%s\n%s\n' "$read_call" "$line" | "$exe" "$@" "$options" > "$out"
100         checktest "$d" "$?" 'read' "$results" "$out"
101
102 done < "$name"
103
104 printf 'pass\n'
105
106 printf 'Running %s read errors...' "$d"
107
108 # Run read on every line.
109 while read line; do
110
111         printf '%s\n%s\n' "$read_call" "$line" | "$exe" "$@" "$options" 2> "$out" > /dev/null
112         err="$?"
113
114         checkerrtest "$d" "$err" "$line" "$out" "$exebase"
115
116 done < "$errors"
117
118 printf 'pass\n'
119
120 printf 'Running %s empty read...' "$d"
121
122 read_test=$(printf '%s\n' "$read_call")
123
124 printf '%s\n' "$read_test" | "$exe" "$@" "$opts" 2> "$out" > /dev/null
125 err="$?"
126
127 checkerrtest "$d" "$err" "$read_test" "$out" "$exebase"
128
129 printf 'pass\n'
130
131 printf 'Running %s read EOF...' "$d"
132
133 read_test=$(printf '%s' "$read_call")
134
135 printf '%s' "$read_test" | "$exe" "$@" "$opts" 2> "$out" > /dev/null
136 err="$?"
137
138 checkerrtest "$d" "$err" "$read_test" "$out" "$exebase"
139
140 exec printf 'pass\n'