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