summaryrefslogtreecommitdiffstats
path: root/src/preproc/tbl/tests/boxes-and-vertical-rules.sh
blob: 04711883abaab5f5b000a1da216b027341400809 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
#!/bin/sh
#
# Copyright (C) 2023 Free Software Foundation, Inc.
#
# This file is part of groff.
#
# groff is free software; you can redistribute it and/or modify it under
# the terms of the GNU General Public License as published by the Free
# Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# groff is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
# for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#

groff="${abs_top_builddir:-.}/test-groff"

fail=

wail () {
    echo ...FAILED >&2
    fail=YES
}

# Test behavior of unexpanded tables using boxes and/or vertical rules.

# Case 1: "naked" table

input='.ll 64n
.nf
1234567890123456789012345678901234567890123456789012345678901234
.fi
.TS
tab(@);
L L L L L.
abcdef@abcdef@abcdef@abcdef@abcdef
.TE
.pl \n(nlu'

echo "checking unboxed table without vertical rules" >&2
output=$(printf "%s\n" "$input" | "$groff" -t -Tascii)
echo "$output"
# 3 spaces between table entries
echo "$output" | sed -n '2p' \
    | grep -qx 'abcdef   abcdef   abcdef   abcdef   abcdef' || wail

# Case 2: left-hand vertical rule

input='.ll 64n
.nf
1234567890123456789012345678901234567890123456789012345678901234
.fi
.TS
tab(@);
| L L L L L.
abcdef@abcdef@abcdef@abcdef@abcdef
.TE
.pl \n(nlu'

echo "checking unboxed table with left-hand rule" >&2
output=$(printf "%s\n" "$input" | "$groff" -t -Tascii)
echo "$output"
# 3 spaces between table entries
echo "$output" | sed -n '3p' \
    | grep -qx '| abcdef   abcdef   abcdef   abcdef   abcdef' || wail

# Case 3: right-hand vertical rule

input='.ll 64n
.nf
1234567890123456789012345678901234567890123456789012345678901234
.fi
.TS
tab(@);
L L L L L |.
abcdef@abcdef@abcdef@abcdef@abcdef
.TE
.pl \n(nlu'

echo "checking unboxed table with right-hand rule" >&2
output=$(printf "%s\n" "$input" | "$groff" -t -Tascii)
echo "$output"
# 3 spaces between table entries
echo "$output" | sed -n '3p' \
    | grep -qx 'abcdef   abcdef   abcdef   abcdef   abcdef |' || wail

# Case 4: vertical rule on both ends

input='.ll 64n
.nf
1234567890123456789012345678901234567890123456789012345678901234
.fi
.TS
tab(@);
| L L L L L |.
abcdef@abcdef@abcdef@abcdef@abcdef
.TE
.pl \n(nlu'

echo "checking unboxed table with both rules" >&2
output=$(printf "%s\n" "$input" | "$groff" -t -Tascii)
echo "$output"
# 3 spaces between table entries
echo "$output" | sed -n '3p' \
    | grep -qx '| abcdef   abcdef   abcdef   abcdef   abcdef |' || wail

# Case 5: vertical rule on both ends and interior rule

input='.ll 64n
.nf
1234567890123456789012345678901234567890123456789012345678901234
.fi
.TS
tab(@);
| L L L | L L |.
abcdef@abcdef@abcdef@abcdef@abcdef
.TE
.pl \n(nlu'

echo "checking unboxed table with both edge and interior rules" >&2
output=$(printf "%s\n" "$input" | "$groff" -t -Tascii)
echo "$output"
# 3 spaces between table entries
echo "$output" | sed -n '3p' \
    | grep -qx '| abcdef   abcdef   abcdef | abcdef   abcdef |' || wail

# Case 6: boxed table

input='.ll 64n
.nf
1234567890123456789012345678901234567890123456789012345678901234
.fi
.TS
box tab(@);
L L L L L.
abcdef@abcdef@abcdef@abcdef@abcdef
.TE
.pl \n(nlu'

echo "checking boxed table without interior rules" >&2
output=$(printf "%s\n" "$input" | "$groff" -t -Tascii)
echo "$output"
# 3 spaces between table entries
echo "$output" | sed -n '3p' \
    | grep -qx '| abcdef   abcdef   abcdef   abcdef   abcdef |' || wail

# Case 7: boxed table with interior vertical rule

input='.ll 64n
.nf
1234567890123456789012345678901234567890123456789012345678901234
.fi
.TS
box tab(@);
L L L | L L.
abcdef@abcdef@abcdef@abcdef@abcdef
.TE
.pl \n(nlu'

echo "checking boxed table with interior rules" >&2
output=$(printf "%s\n" "$input" | "$groff" -t -Tascii)
echo "$output"
# 3 spaces between table entries
echo "$output" | sed -n '3p' \
    | grep -qx '| abcdef   abcdef   abcdef | abcdef   abcdef |' || wail

test -z "$fail"

# vim:set ai et sw=4 ts=4 tw=72: