1 dnl PSPP - a program for statistical analysis.
2 dnl Copyright (C) 2017 Free Software Foundation, Inc.
4 dnl This program is free software: you can redistribute it and/or modify
5 dnl it under the terms of the GNU General Public License as published by
6 dnl the Free Software Foundation, either version 3 of the License, or
7 dnl (at your option) any later version.
9 dnl This program is distributed in the hope that it will be useful,
10 dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
11 dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 dnl GNU General Public License for more details.
14 dnl You should have received a copy of the GNU General Public License
15 dnl along with this program. If not, see <http://www.gnu.org/licenses/>.
17 AT_BANNER([u8_istream])
19 AT_SETUP([read ASCII])
20 AT_KEYWORDS([u8_istream])
21 AT_CHECK([i18n-test supports_encodings ASCII])
22 AT_CHECK([echo string | u8-istream-test read - ASCII], [0], [string
26 AT_SETUP([read UTF-8])
27 AT_KEYWORDS([u8_istream])
28 # Without byte-order-mark.
29 AT_CHECK([printf '\346\227\245\346\234\254\350\252\236\n' | u8-istream-test read - UTF-8], [0], [dnl
34 # With byte-order-mark.
35 AT_CHECK([printf '\357\273\277\346\227\245\346\234\254\350\252\236\n' | u8-istream-test read - UTF-8], [0], [dnl
42 AT_SETUP([read EUC-JP])
43 AT_KEYWORDS([u8_istream])
44 AT_CHECK([i18n-test supports_encodings EUC-JP])
45 AT_CHECK([printf '\244\241 \244\242 \244\243 \244\244 \244\245 \244\246 \244\247 \244\250 \244\251 \244\252\n' | u8-istream-test read - EUC-JP],
51 AT_SETUP([read UTF-8 with character split across input buffers])
52 AT_KEYWORDS([u8_istream])
53 buffer_size=`u8-istream-test buffer-size`
54 ($PERL -e "print 'x' x ($buffer_size - 16)"
55 printf '\343\201\201\343\201\202\343\201\203\343\201\204\343\201\205\343\201\206\343\201\207\343\201\210\343\201\211\343\201\212\n') > input
58 echo "UTF-8 mode") > expout
59 AT_CHECK([u8-istream-test read input UTF-8 16], [0], [expout])
62 AT_SETUP([read UTF-8 with character split across output buffers])
63 AT_KEYWORDS([u8_istream])
64 AT_CHECK([printf '\343\201\201\343\201\202\343\201\203\343\201\204\343\201\205\343\201\206\343\201\207\343\201\210\343\201\211\343\201\212\n' | u8-istream-test read - UTF-8 16], [0], [dnl
71 AT_SETUP([read UTF-8 with character split across input and output buffers])
72 AT_KEYWORDS([u8_istream])
73 buffer_size=`u8-istream-test buffer-size`
74 ($PERL -e "print 'x' x ($buffer_size - 16)"
75 printf '\343\201\201\343\201\202\343\201\203\343\201\204\343\201\205\343\201\206\343\201\207\343\201\210\343\201\211\343\201\212\n') > input
78 echo "UTF-8 mode") > expout
79 AT_CHECK([u8-istream-test read input UTF-8 16], [0], [expout])
82 AT_SETUP([read EUC-JP with character split across input buffers])
83 AT_KEYWORDS([u8_istream])
84 AT_CHECK([i18n-test supports_encodings EUC-JP])
85 buffer_size=`u8-istream-test buffer-size`
86 ($PERL -e "print 'x' x ($buffer_size - 16)"
87 printf '\244\241 \244\242 \244\243 \244\244 \244\245 \244\246 \244\247 '
88 printf '\244\250 \244\251 \244\252\n') > input
89 ($PERL -e "print 'x' x ($buffer_size - 16)"
90 printf '\343\201\201\040\343\201\202\040\343\201\203\040\343\201\204\040'
91 printf '\343\201\205\040\343\201\206\040\343\201\207\040\343\201\210\040'
92 printf '\343\201\211\040\343\201\212\n') > expout
93 AT_CHECK([u8-istream-test read input EUC-JP], [0], [expout])
96 AT_SETUP([read EUC-JP with character split across output buffers])
97 AT_KEYWORDS([u8_istream])
98 AT_CHECK([i18n-test supports_encodings EUC-JP])
99 AT_CHECK([printf '\244\241\244\242\244\243\244\244\244\245\244\246\244\247\244\250\244\251\244\252\n' | u8-istream-test read - EUC-JP 16],
105 AT_SETUP([read EUC-JP with character split across input and output buffers])
106 AT_KEYWORDS([u8_istream])
107 AT_CHECK([i18n-test supports_encodings EUC-JP])
108 buffer_size=`u8-istream-test buffer-size`
109 ($PERL -e "print 'x' x ($buffer_size - 16)"
110 printf 'xyz\244\241\244\242\244\243\244\244\244\245\244\246\244\247\244\250'
111 printf '\244\251\244\252\n') > input
112 ($PERL -e "print 'x' x ($buffer_size - 16)"
113 printf '\170\171\172\343\201\201\343\201\202\343\201\203\343\201\204\343'
114 printf '\201\205\343\201\206\343\201\207\343\201\210\343\201\211\343\201'
115 printf '\212\n') > expout
116 AT_CHECK([u8-istream-test read input EUC-JP 16], [0], [expout])
119 AT_SETUP([read ASCII as Auto])
120 AT_KEYWORDS([u8_istream])
121 AT_CHECK([echo string | u8-istream-test read - Auto], [0], [dnl
128 AT_SETUP([read UTF-8 as Auto])
129 AT_KEYWORDS([u8_istream])
130 # Without byte-order mark.
131 AT_CHECK([printf 'entr\303\251e\n' | u8-istream-test read - Auto], [0], [dnl
136 # With byte-order mark.
137 AT_CHECK([printf '\357\273\277entr\303\251e\n' | u8-istream-test read - Auto], [0], [dnl
144 AT_SETUP([read ISO-8859-1 as Auto,ISO-8859-1])
145 AT_KEYWORDS([u8_istream])
146 AT_CHECK([i18n-test supports_encodings ISO-8859-1])
147 buffer_size=`u8-istream-test buffer-size`
148 ($PERL -e 'print "xyzzy\n" x int('$buffer_size' * 2.5 / 7)'; printf 'entr\351e\n') > input
150 $PERL -e 'print "xyzzy\n" x int('$buffer_size' * 2.5 / 7)'
151 printf 'entr\303\251e\n') > expout
152 AT_CHECK([u8-istream-test read input Auto,ISO-8859-1], [0], [expout])
155 dnl UTF-16BE is not ASCII compatible so this doesn't start out in Auto mode.
156 AT_SETUP([read UTF-16BE as Auto,UTF-16BE])
157 AT_KEYWORDS([u8_istream])
158 AT_CHECK([i18n-test supports_encodings UTF-16BE])
159 # Without byte-order mark.
160 AT_CHECK([printf '\0e\0n\0t\0r\0\351\0e\0\n' | u8-istream-test read - Auto,UTF-16BE],
164 # With byte-order mark.
165 AT_CHECK([printf '\376\377\0e\0n\0t\0r\0\351\0e\0\n' | u8-istream-test read - Auto,UTF-16BE],
171 AT_SETUP([read UTF-16 as Auto])
172 AT_KEYWORDS([u8_istream slow])
173 AT_CHECK([i18n-test supports_encodings UTF-16 UTF-16BE UTF-16LE])
174 # Without byte-order mark.
175 dnl The "sleep 1" checks for a bug in which u8-istream did not properly
176 dnl handle receiving data in multiple chunks.
177 AT_CHECK([{ printf '\0e\0n\0t\0'; sleep 1; printf 'r\0\351\0e\0\n'; } | u8-istream-test read - Auto],
180 AT_CHECK([printf 'e\0n\0t\0r\0\351\0e\0\n\0' | u8-istream-test read - Auto],
183 # With byte-order mark.
184 AT_CHECK([printf '\376\377\0e\0n\0t\0r\0\351\0e\0\n' | u8-istream-test read - Auto],
187 AT_CHECK([printf '\377\376e\0n\0t\0r\0\351\0e\0\n\0' | u8-istream-test read - Auto],
192 AT_SETUP([read UTF-32 as Auto])
193 AT_KEYWORDS([u8_istream])
194 AT_CHECK([i18n-test supports_encodings UTF-16 UTF-16BE UTF-16LE])
195 # Without byte-order mark.
196 AT_CHECK([printf '\0\0\0e\0\0\0n\0\0\0t\0\0\0r\0\0\0\351\0\0\0e\0\0\0\n' | u8-istream-test read - Auto],
199 AT_CHECK([printf 'e\0\0\0n\0\0\0t\0\0\0r\0\0\0\351\0\0\0e\0\0\0\n\0\0\0' | u8-istream-test read - Auto],
202 # With byte-order mark.
203 AT_CHECK([printf '\0\0\376\377\0\0\0e\0\0\0n\0\0\0t\0\0\0r\0\0\0\351\0\0\0e\0\0\0\n' | u8-istream-test read - Auto],
206 AT_CHECK([printf '\377\376\0\0e\0\0\0n\0\0\0t\0\0\0r\0\0\0\351\0\0\0e\0\0\0\n\0\0\0' | u8-istream-test read - Auto],
211 AT_SETUP([read EUC-JP as Auto,EUC-JP])
212 AT_KEYWORDS([u8_istream])
213 AT_CHECK([i18n-test supports_encodings EUC-JP])
214 AT_CHECK([printf 'entr\217\253\261e\n' | u8-istream-test read - Auto,EUC-JP],