ce5510f47e3214d813e4df83a14a9d5b0c4939e5
[pspp] / tests / language / dictionary / attributes.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([VARIABLE ATTRIBUTES and DATAFILE ATTRIBUTES])
17
18 AT_SETUP([VARIABLE ATTRIBUTES and DATAFILE ATTRIBUTES])
19 AT_DATA([save-attrs.pspp],
20   [[DATA LIST FREE/a b c.
21 BEGIN DATA.
22 1 2 3
23 END DATA.
24
25 DATAFILE ATTRIBUTE
26         ATTRIBUTE=key('value')
27                   array('array element 1')
28                   Array[2]('array element 2').
29 VARIABLE ATTRIBUTE
30         VARIABLES=a b
31         ATTRIBUTE=ValidationRule[2]("a + b > 2")
32                   ValidationRule[1]('a * b > 3')
33        /VARIABLES=c
34         ATTRIBUTE=QuestionWording('X or Y?').
35 DISPLAY ATTRIBUTES.
36
37 SAVE OUTFILE='attributes.sav'.
38 ]])
39 AT_DATA([get-attrs.pspp],
40   [[GET FILE='attributes.sav'.
41
42 DATAFILE ATTRIBUTE
43          DELETE=Array[1] Array[2].
44 VARIABLE ATTRIBUTE
45          VARIABLES=a
46          DELETE=ValidationRule
47         /VARIABLE=b
48          DELETE=validationrule[2].
49
50 DISPLAY ATTRIBUTES.
51 ]])
52 AT_CHECK([pspp -O format=csv save-attrs.pspp], [0], 
53   [[Variable,Description
54 a,"Attribute,Value
55 ValidationRule[1],a * b > 3
56 ValidationRule[2],a + b > 2"
57 b,"Attribute,Value
58 ValidationRule[1],a * b > 3
59 ValidationRule[2],a + b > 2"
60 c,"Attribute,Value
61 QuestionWording,X or Y?"
62
63 Table: Custom data file attributes.
64 Attribute,Value
65 array[1],array element 1
66 array[2],array element 2
67 key,value
68 ]])
69 AT_CHECK([pspp -O format=csv get-attrs.pspp], [0], [dnl
70 Variable,Description
71 a,
72 b,"Attribute,Value
73 ValidationRule,a * b > 3"
74 c,"Attribute,Value
75 QuestionWording,X or Y?"
76
77 Table: Custom data file attributes.
78 Attribute,Value
79 array,array element 2
80 key,value
81 ])
82 AT_CLEANUP