Merge remote-tracking branch 'origin/master' into sheet
[pspp] / tests / data / encrypted-file.at
1 dnl PSPP - a program for statistical analysis.
2 dnl Copyright (C) 2017 Free Software Foundation, Inc.
3 dnl 
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.
8 dnl 
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.
13 dnl 
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/>.
16 dnl
17 AT_BANNER([encrypted files])
18
19 AT_SETUP([decrypt an encrypted system file])
20 AT_KEYWORDS([system file decrypt pspp-convert])
21 AT_CHECK([pspp-convert $srcdir/data/hotel-encrypted.sav hotel.sav -p pspp])
22 AT_CHECK([pspp-convert hotel.sav hotel.csv])
23 AT_CHECK([cat hotel.csv], [0], [dnl
24 v1,v2,v3,v4,v5
25 4,2,3,4,1
26 1,1,3,1,1
27 5,2,2,3,4
28 3,1,3,1,2
29 5,3,1,5,3
30 1,2,5,4,2
31 3,2,4,3,1
32 1,4,5,2,1
33 3,2,3,1,2
34 2,5,4,2,1
35 4,2,2,3,5
36 2,1,4,1,1
37 1,2,5,5,2
38 2,3,3,3,1
39 4,1,1,1,3
40 1,1,5,1,2
41 2,5,5,2,2
42 ])
43 AT_CLEANUP
44
45 AT_SETUP([decrypt an encrypted syntax file])
46 AT_KEYWORDS([syntax file decrypt pspp-convert])
47 AT_CHECK([pspp-convert $srcdir/data/test-encrypted.sps test.sps -p password])
48
49 # The sample file is not ideal: lines end in CRLF and its last line
50 # lacks a new-line, so "sed" and "echo" make it easier to work with.
51 AT_CHECK([tr -d "\r" < test.sps; echo], [0], [dnl
52 * Encoding: windows-1252.
53 DATA LIST LIST /name (a25) quantity (f8).
54 BEGIN DATA.
55 widgets 10345
56 oojars 2345
57 dubreys 98
58 thingumies 518
59 END DATA.
60  @&t@
61 LIST.
62  @&t@
63 DESCRIPTIVES /quantity
64  /statistics ALL.
65 ])
66 AT_CLEANUP
67