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/>.
19 dnl Create a file "batch.sps" that is valid syntax only in batch mode.
20 m4_define([CREATE_BATCH_SPS],
21 [AT_DATA([batch.sps], [dnl
31 AT_SETUP([INSERT SYNTAX=INTERACTIVE])
33 AT_DATA([insert.sps], [dnl
39 AT_CHECK([pspp -o pspp.csv insert.sps], [1], [dnl
40 batch.sps:2.1-2.4: error: INPUT PROGRAM: Syntax error at `loop': expecting end of command.
41 batch.sps:3: error: COMPUTE: COMPUTE is allowed only after the active dataset has been defined or inside INPUT PROGRAM.
42 batch.sps:4: error: END CASE: END CASE is allowed only inside INPUT PROGRAM.
43 insert.sps:4: error: LIST: LIST is allowed only after the active dataset has been defined.
47 AT_SETUP([INSERT SYNTAX=BATCH])
49 AT_DATA([insert.sps], [dnl
55 AT_CHECK([pspp -o pspp.csv insert.sps])
56 AT_CHECK([cat pspp.csv], [0], [dnl
67 AT_SETUP([INSERT CD=NO])
68 AT_DATA([insert.sps], [INSERT FILE='Dir1/foo.sps'.
72 AT_DATA([Dir1/foo.sps], [INSERT FILE='bar.sps' CD=NO.
74 AT_DATA([Dir1/bar.sps],
82 AT_CHECK([pspp -o pspp.csv insert.sps], [1], [dnl
83 Dir1/foo.sps:1: error: INSERT: Can't find `bar.sps' in include file search path.
84 insert.sps:2: error: LIST: LIST is allowed only after the active dataset has been defined.
88 AT_SETUP([INSERT CD=YES])
89 AT_DATA([insert.sps], [INSERT FILE='Dir1/foo.sps' CD=YES.
93 AT_DATA([Dir1/foo.sps], [INSERT FILE='bar.sps'.
95 AT_DATA([Dir1/bar.sps],
103 AT_CHECK([pspp -o pspp.csv insert.sps])
104 AT_CHECK([cat pspp.csv], [0], [dnl
105 Table: Reading free-form data from INLINE.
117 m4_define([CREATE_ERROR_SPS],
118 [AT_DATA([error.sps], [dnl
119 DATA LIST NOTABLE LIST /x *.
126 * The following line is erroneous
132 AT_SETUP([INSERT ERROR=STOP])
134 AT_DATA([insert.sps], [INSERT FILE='error.sps' ERROR=STOP.
136 AT_CHECK([pspp -o pspp.csv insert.sps], [1], [dnl
137 error.sps:10: error: DISPLAY: AKSDJ is not a variable name.
138 warning: Error encountered while ERROR=STOP is effective.
142 AT_SETUP([INSERT ERROR=CONTINUE])
144 AT_DATA([insert.sps], [INSERT FILE='error.sps' ERROR=CONTINUE.
146 AT_CHECK([pspp -o pspp.csv insert.sps], [1], [dnl
147 error.sps:10: error: DISPLAY: AKSDJ is not a variable name.
149 AT_CHECK([cat pspp.csv], [0], [dnl
150 error.sps:10: error: DISPLAY: AKSDJ is not a variable name.
160 dnl Test for regression against bug #24569 in which PSPP crashed
161 dnl upon attempt to insert a nonexistent file.
162 AT_SETUP([INSERT nonexistent file])
163 AT_DATA([insert.sps], [dnl
171 AT_CHECK([pspp -O format=csv insert.sps], [1], [dnl
172 insert.sps:2: error: INSERT: Can't find `nonexistent' in include file search path.
174 insert.sps:6: error: LIST: LIST is allowed only after the active dataset has been defined.
179 dnl A test to check the INCLUDE command complete with the
180 dnl syntax and function of the ENCODING subcommand.
181 AT_SETUP([INCLUDE full check])
182 AT_DATA([two-utf8.sps], [dnl
186 AT_DATA([include.sps], [dnl
189 include FILE='two-latin1.sps' ENCODING='ISO_8859-1'.
192 AT_CHECK([iconv -f UTF-8 -t iso-8859-1 two-utf8.sps > two-latin1.sps], [0], [])
194 AT_CHECK([pspp -O format=csv include.sps], [0], [dnl
204 dnl Test for a bug where insert crashed on an unterminated string input
205 AT_SETUP([INSERT unterminated string])
207 AT_DATA([insert.sps], [INSERT FILE=7bar.sps' CD=NO.
210 AT_CHECK([pspp -O format=csv insert.sps], [1], [ignore])