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([encrypted files])
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
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])
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).
63 DESCRIPTIVES /quantity
68 AT_SETUP([decrypt an encrypted viewer file])
69 AT_KEYWORDS([syntax file decrypt pspp-convert spv])
70 AT_CHECK([pspp-convert $srcdir/data/test-encrypted.spv test.spv -p Password1])
71 AT_CHECK([cmp $srcdir/data/test-decrypted.spv test.spv])