File: command-name.at

package info (click to toggle)
pspp 2.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 66,676 kB
  • sloc: ansic: 267,210; xml: 18,446; sh: 5,534; python: 2,881; makefile: 125; perl: 64
file content (250 lines) | stat: -rw-r--r-- 7,505 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
dnl PSPP - a program for statistical analysis.
dnl Copyright (C) 2017 Free Software Foundation, Inc.
dnl
dnl This program is free software: you can redistribute it and/or modify
dnl it under the terms of the GNU General Public License as published by
dnl the Free Software Foundation, either version 3 of the License, or
dnl (at your option) any later version.
dnl
dnl This program is distributed in the hope that it will be useful,
dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
dnl GNU General Public License for more details.
dnl
dnl You should have received a copy of the GNU General Public License
dnl along with this program.  If not, see <http://www.gnu.org/licenses/>.
dnl
AT_BANNER([command name matching])

AT_SETUP([single words])
AT_KEYWORDS([command name matching])
AT_CHECK([command-name-test DESCRIPTIVES , DESCRIPTIVESX DESCRIPTIVES descr Des DEX DE '' 'DESCRIPTIVES MORE' 'DESCRIPTIVES++MORE'],
  [0], [dnl
string="DESCRIPTIVESX":
	command="DESCRIPTIVES" match=no
match: none, missing_words=0

string="DESCRIPTIVES":
	command="DESCRIPTIVES" match=yes exact=yes missing_words=0
match: DESCRIPTIVES, missing_words=0

string="descr":
	command="DESCRIPTIVES" match=yes exact=no missing_words=0
match: DESCRIPTIVES, missing_words=0

string="Des":
	command="DESCRIPTIVES" match=yes exact=no missing_words=0
match: DESCRIPTIVES, missing_words=0

string="DEX":
	command="DESCRIPTIVES" match=no
match: none, missing_words=0

string="DE":
	command="DESCRIPTIVES" match=no
match: none, missing_words=0

string="":
	command="DESCRIPTIVES" match=yes exact=yes missing_words=1
match: none, missing_words=1

string="DESCRIPTIVES MORE":
	command="DESCRIPTIVES" match=yes exact=yes missing_words=-1
match: DESCRIPTIVES, missing_words=-1

string="DESCRIPTIVES@<00A0>@MORE":
	command="DESCRIPTIVES" match=yes exact=yes missing_words=-1
match: DESCRIPTIVES, missing_words=-1
])
AT_CLEANUP

AT_SETUP([two words without prefix match])
AT_KEYWORDS([command name matching])
AT_CHECK([command-name-test 'DO IF' 'DO REPEAT' , 'DO++IF' 'DO REPEAT' 'DO REP' 'DO OTHER' 'D IF' 'DO I' DO],
  [0], [dnl
string="DO@<00A0>@IF":
	command="DO IF" match=yes exact=yes missing_words=0
	command="DO REPEAT" match=no
match: DO IF, missing_words=0

string="DO REPEAT":
	command="DO IF" match=no
	command="DO REPEAT" match=yes exact=yes missing_words=0
match: DO REPEAT, missing_words=0

string="DO REP":
	command="DO IF" match=no
	command="DO REPEAT" match=yes exact=no missing_words=0
match: DO REPEAT, missing_words=0

string="DO OTHER":
	command="DO IF" match=no
	command="DO REPEAT" match=no
match: none, missing_words=0

string="D IF":
	command="DO IF" match=no
	command="DO REPEAT" match=no
match: none, missing_words=0

string="DO I":
	command="DO IF" match=no
	command="DO REPEAT" match=no
match: none, missing_words=0

string="DO":
	command="DO IF" match=yes exact=yes missing_words=1
	command="DO REPEAT" match=yes exact=yes missing_words=1
match: none, missing_words=1
])
AT_CLEANUP

AT_SETUP([two words with prefix match])
AT_KEYWORDS([command name matching])
AT_CHECK([command-name-test GET 'GET DATA' , GET 'GET TYPE' 'GET DAT' 'GET DATA'],
  [0], [dnl
string="GET":
	command="GET" match=yes exact=yes missing_words=0
	command="GET DATA" match=yes exact=yes missing_words=1
match: none, missing_words=1

string="GET TYPE":
	command="GET" match=yes exact=yes missing_words=-1
	command="GET DATA" match=no
match: GET, missing_words=-1

string="GET DAT":
	command="GET" match=yes exact=yes missing_words=-1
	command="GET DATA" match=yes exact=no missing_words=0
match: GET DATA, missing_words=0

string="GET DATA":
	command="GET" match=yes exact=yes missing_words=-1
	command="GET DATA" match=yes exact=yes missing_words=0
match: GET DATA, missing_words=0
])
AT_CLEANUP

AT_SETUP([ambiguous single-word names])
AT_KEYWORDS([command name matching])
AT_CHECK([command-name-test CASEPLOT CASESTOVARS , CAS Case CaseP CaseS], [0],
  [dnl
string="CAS":
	command="CASEPLOT" match=yes exact=no missing_words=0
	command="CASESTOVARS" match=yes exact=no missing_words=0
match: none, missing_words=0

string="Case":
	command="CASEPLOT" match=yes exact=no missing_words=0
	command="CASESTOVARS" match=yes exact=no missing_words=0
match: none, missing_words=0

string="CaseP":
	command="CASEPLOT" match=yes exact=no missing_words=0
	command="CASESTOVARS" match=no
match: CASEPLOT, missing_words=0

string="CaseS":
	command="CASEPLOT" match=no
	command="CASESTOVARS" match=yes exact=no missing_words=0
match: CASESTOVARS, missing_words=0
])
AT_CLEANUP

AT_SETUP([ambiguous two-word names])
AT_KEYWORDS([command name matching])
AT_CHECK([command-name-test VARCOMP VARSTOCASES 'VARIABLE ATTRIBUTE' , VAR VARC VARS VARI 'VAR++ATT'],
  [0], [dnl
string="VAR":
	command="VARCOMP" match=yes exact=no missing_words=0
	command="VARSTOCASES" match=yes exact=no missing_words=0
	command="VARIABLE ATTRIBUTE" match=yes exact=no missing_words=1
match: none, missing_words=1

string="VARC":
	command="VARCOMP" match=yes exact=no missing_words=0
	command="VARSTOCASES" match=no
	command="VARIABLE ATTRIBUTE" match=no
match: VARCOMP, missing_words=0

string="VARS":
	command="VARCOMP" match=no
	command="VARSTOCASES" match=yes exact=no missing_words=0
	command="VARIABLE ATTRIBUTE" match=no
match: VARSTOCASES, missing_words=0

string="VARI":
	command="VARCOMP" match=no
	command="VARSTOCASES" match=no
	command="VARIABLE ATTRIBUTE" match=yes exact=no missing_words=1
match: none, missing_words=1

string="VAR@<00A0>@ATT":
	command="VARCOMP" match=yes exact=no missing_words=-1
	command="VARSTOCASES" match=yes exact=no missing_words=-1
	command="VARIABLE ATTRIBUTE" match=yes exact=no missing_words=0
match: VARIABLE ATTRIBUTE, missing_words=0
])
AT_CLEANUP

AT_SETUP([numbers and punctuation])
AT_KEYWORDS([command name matching])
AT_CHECK([command-name-test T-TEST 2SLS LIST , T-TEST 'T - Test' 2SLS '2 SLS' List],
  [0], [dnl
string="T-TEST":
	command="T-TEST" match=yes exact=yes missing_words=0
	command="2SLS" match=no
	command="LIST" match=no
match: T-TEST, missing_words=0

string="T - Test":
	command="T-TEST" match=yes exact=yes missing_words=0
	command="2SLS" match=no
	command="LIST" match=no
match: T-TEST, missing_words=0

string="2SLS":
	command="T-TEST" match=no
	command="2SLS" match=yes exact=yes missing_words=0
	command="LIST" match=no
match: 2SLS, missing_words=0

string="2 SLS":
	command="T-TEST" match=no
	command="2SLS" match=yes exact=yes missing_words=0
	command="LIST" match=no
match: 2SLS, missing_words=0

string="List":
	command="T-TEST" match=no
	command="2SLS" match=no
	command="LIST" match=yes exact=yes missing_words=0
match: LIST, missing_words=0
])
AT_CLEANUP

AT_SETUP([off by more than one word])
AT_KEYWORDS([command name matching])
AT_CHECK([command-name-test 'a++b c' , a 'a b' 'a b c' 'a++b c d' 'a b c++d e'],
  [0], [dnl
string="a":
	command="a@<00A0>@b c" match=yes exact=yes missing_words=2
match: none, missing_words=1

string="a b":
	command="a@<00A0>@b c" match=yes exact=yes missing_words=1
match: none, missing_words=1

string="a b c":
	command="a@<00A0>@b c" match=yes exact=yes missing_words=0
match: a@<00A0>@b c, missing_words=0

string="a@<00A0>@b c d":
	command="a@<00A0>@b c" match=yes exact=yes missing_words=-1
match: a@<00A0>@b c, missing_words=-1

string="a b c@<00A0>@d e":
	command="a@<00A0>@b c" match=yes exact=yes missing_words=-2
match: a@<00A0>@b c, missing_words=-2
])
AT_CLEANUP