d71e813743b0119fb60f6424c9d589630405c25c
[pspp] / tests / language / dictionary / sys-file-info.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([SYSFILE INFO])
18
19 AT_SETUP([SYSFILE INFO])
20 AT_DATA([sysfile-info.sps], [dnl
21 DATA LIST LIST /x * name (a10) .
22 BEGIN DATA
23 1 one
24 2 two
25 3 three
26 END DATA.
27 SAVE OUTFILE='pro.sav'.
28
29 sysfile info file='pro.sav'.
30 ])
31 AT_CHECK([pspp -o pspp.csv sysfile-info.sps])
32 AT_CHECK(
33   [sed -e '/^Created:,/d' \
34        -e '/^Endian:,/d' \
35        -e '/^Integer Format:,/d' \
36        -e '/^Real Format:,/d' \
37        -e '/^Encoding:,/d' pspp.csv],
38   [0], [dnl
39 Table: Reading free-form data from INLINE.
40 Variable,Format
41 x,F8.0
42 name,A10
43
44 File:,pro.sav
45 Label:,No label.
46 Variables:,2
47 Cases:,3
48 Type:,SPSS System File
49 Weight:,Not weighted.
50 Compression:,SAV
51
52 Table: Variables
53 Name,Position,Label,Measurement Level,Role,Width,Alignment,Print Format,Write Format,Missing Values
54 x,1,,Scale,Input,8,Right,F8.2,F8.2,
55 name,2,,Nominal,Input,10,Left,A10,A10,
56 ])
57 AT_CLEANUP
58
59 AT_BANNER([DISPLAY])
60
61 dnl DISPLAY DOCUMENTS is tested with commands for documents.
62
63 AT_SETUP([DISPLAY FILE LABEL])
64 AT_DATA([display.sps], [dnl
65 DATA LIST LIST NOTABLE /x * name (a10) .
66
67 DISPLAY FILE LABEL.
68
69 FILE LABEL 'foo bar baz quux'.
70 DISPLAY FILE LABEL.
71 ])
72 AT_CHECK([pspp -O format=csv display.sps], [0], [dnl
73 The active dataset does not have a file label.
74
75 File label: foo bar baz quux
76 ])
77 AT_CLEANUP
78
79 dnl DISPLAY VECTORS is tested with commands for vectors.
80
81 dnl DISPLAY ATTRIBUTES and @ATTRIBUTES are tested with commands for attributes.
82
83 AT_SETUP([DISPLAY SCRATCH])
84 AT_DATA([sysfile-info.sps], [dnl
85 DATA LIST LIST NOTABLE /x * name (a10) .
86 DISPLAY SCRATCH.
87 COMPUTE #x=0.
88 DISPLAY SCRATCH.
89 ])
90 AT_CHECK([pspp -O format=csv sysfile-info.sps], [0], [dnl
91 sysfile-info.sps:2: warning: DISPLAY: No variables to display.
92
93 Table: Variables
94 Name
95 #x
96 ])
97 AT_CLEANUP
98
99 AT_SETUP([DISPLAY INDEX])
100 AT_DATA([sysfile-info.sps], [dnl
101 DATA LIST LIST NOTABLE /x * name (a10) .
102 DISPLAY INDEX.
103 ])
104 AT_CHECK([pspp -O format=csv sysfile-info.sps], [0], [dnl
105 Table: Variables
106 Name,Position
107 x,1
108 name,2
109 ])
110 AT_CLEANUP
111
112 AT_SETUP([DISPLAY NAMES])
113 AT_DATA([sysfile-info.sps], [dnl
114 DATA LIST LIST NOTABLE /x * name (a10) .
115 DISPLAY NAMES.
116 ])
117 AT_CHECK([pspp -O format=csv sysfile-info.sps], [0], [dnl
118 Table: Variables
119 Name
120 x
121 name
122 ])
123 AT_CLEANUP
124
125 AT_SETUP([DISPLAY LABELS])
126 AT_DATA([sysfile-info.sps], [dnl
127 DATA LIST LIST NOTABLE /x * name (a10) .
128 VARIABLE LABEL x 'variable one' name 'variable two'.
129 VALUE LABEL x 1 'asdf' 2 'jkl;'.
130 DISPLAY LABELS.
131 ])
132 AT_CHECK([pspp -O format=csv sysfile-info.sps], [0], [dnl
133 Table: Variables
134 Name,Position,Label
135 x,1,variable one
136 name,2,variable two
137 ])
138 AT_CLEANUP
139
140 dnl DISPLAY VARIABLES Is tested in multiple places.