Merge remote-tracking branch 'origin/master' into sheet
[pspp] / tests / language / utilities / permissions.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([PERMISSIONS])
18
19 AT_SETUP([PERMISSIONS])
20 AT_DATA([foobar], [Hello
21 ])
22
23 chmod 666 foobar
24 AT_CHECK([ls -l foobar], [0], [stdout])
25 AT_CHECK([sed 's/^\(..........\).*/\1/' stdout], [0], [-rw-rw-rw-
26 ])
27
28 AT_DATA([permissions.sps], [PERMISSIONS /FILE='foobar' PERMISSIONS=READONLY.
29 ])
30 AT_CHECK([pspp -O format=csv permissions.sps])
31 AT_CHECK([ls -l foobar], [0], [stdout])
32 AT_CHECK([sed 's/^\(..........\).*/\1/' stdout], [0], [-r--r--r--
33 ])
34
35 AT_DATA([permissions.sps], [PERMISSIONS /FILE='foobar' PERMISSIONS=WRITEABLE.
36 ])
37 AT_CHECK([pspp -O format=csv permissions.sps])
38 AT_CHECK([ls -l foobar], [0], [stdout])
39 AT_CHECK([sed 's/^\(..........\).*/\1/' stdout], [0], [-rw-r--r--
40 ])
41 AT_CLEANUP
42
43
44
45 AT_SETUP([PERMISSIONS - bad syntax])
46 AT_DATA([pe.sps], [[PERMI|SIONS /FILE='foobar' PERMISSIONS=WRITEABLE.
47 ]])
48
49 AT_CHECK([pspp -O format=csv pe.sps], [1], [dnl
50 pe.sps:1.6: error: PERMISSIONS: Syntax error at `|': expecting STRING.
51 ])
52 AT_CLEANUP