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([files handling])
19 AT_SETUP([Write error - directory exists])
23 AT_DATA([file.sps], [dnl
24 DATA LIST NOTABLE/x 1.
28 SAVE OUTFILE='foobar.sav'.
31 AT_CHECK([pspp -O format=csv file.sps], [1], [dnl
32 error: Opening foobar.sav for writing: Is a directory.
34 error: Error opening `foobar.sav' for writing as a system file: Is a directory.
40 AT_SETUP([Write error - no permission])
43 touch directory/foobar.sav
46 AT_DATA([file.sps], [dnl
47 DATA LIST NOTABLE/x 1.
51 SAVE OUTFILE='directory/foobar.sav'.
54 AT_CHECK([pspp -O format=csv file.sps], [1], [dnl
55 error: Creating temporary file to replace directory/foobar.sav: Permission denied.
57 error: Error opening `directory/foobar.sav' for writing as a system file: Permission denied.
66 AT_SETUP([Write error - temp file disappeared])
68 AT_DATA([file.sps], [dnl
69 DATA LIST NOTABLE/x 1.
73 XSAVE OUTFILE='foobar.sav'.
74 HOST COMMAND=[['rm foobar.savtmp*']].
78 AT_CHECK([pspp -O format=csv file.sps], [1], [ignore])
84 AT_SETUP([Write fifo])
86 dnl The Fifo feature is not available in w32 builds
89 AT_DATA([file.sps], [dnl
90 DATA LIST NOTABLE/x 1.
94 SAVE OUTFILE='foobar.sav'.
98 cat foobar.sav > /dev/null &
101 AT_CHECK([pspp -O format=csv file.sps], [0], [ignore])
107 AT_SETUP([Reading from pipe])
109 AT_DATA([pipe.sps], [dnl
110 data list file='printf "1 2\n 3 4\n 5 6\n" |' notable list /x * y *.
114 AT_CHECK([pspp -O format=csv pipe.sps], [0], [dnl
125 dnl This was seen to crash pspp
126 AT_SETUP([Reusing inline file])
128 AT_DATA([inline-reuse.sps], [dnl
129 get data /type=txt /file=inline /variables=A f7.2 .
131 data list notable list /foo.
135 data list notable list /foo.
138 AT_CHECK([pspp inline-reuse.sps], [0], [ignore])