-
Notifications
You must be signed in to change notification settings - Fork 15
/
quirks_test.go
436 lines (381 loc) · 8.63 KB
/
quirks_test.go
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
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
/* ipp-usb - HTTP reverse proxy, backed by IPP-over-USB connection to device
*
* Copyright (C) 2020 and up by Alexander Pevzner ([email protected])
* See LICENSE for license terms and conditions
*
* Tests for device-specific quirks
*/
package main
import (
"reflect"
"testing"
"time"
)
// TestQuirksLookup tests lookup of various parameters
func TestQuirksLookup(t *testing.T) {
const path = "testdata/quirks"
// Load quirks
qset, err := LoadQuirksSet(path)
if err != nil {
t.Fatalf("LoadQuirksSet(%q): %s", path, err)
}
// Test loaded values against expected
type testData struct {
model string // Model name
param string // Parameter (quirk) name
get func(Quirks) interface{} // Lookup function
match string // Expected match
value interface{} // Expected value
origin string // Expected origin
}
tests := []testData{
// Default values for unknown device
{
model: "Unknown Device",
param: QuirkNmBlacklist,
get: func(quirks Quirks) interface{} {
return quirks.GetBlacklist()
},
match: "*",
value: false,
origin: "testdata/quirks/default.conf:4",
},
{
model: "Unknown Device",
param: QuirkNmBuggyIppResponses,
get: func(quirks Quirks) interface{} {
return quirks.GetBuggyIppRsp()
},
match: "*",
value: QuirkBuggyIppRspReject,
origin: "default",
},
{
model: "Unknown Device",
param: QuirkNmDisableFax,
get: func(quirks Quirks) interface{} {
return quirks.GetDisableFax()
},
match: "*",
value: false,
origin: "default",
},
{
model: "Unknown Device",
param: QuirkNmIgnoreIppStatus,
get: func(quirks Quirks) interface{} {
return quirks.GetIgnoreIppStatus()
},
match: "*",
value: false,
origin: "default",
},
{
model: "Unknown Device",
param: QuirkNmInitDelay,
get: func(quirks Quirks) interface{} {
return quirks.GetInitDelay()
},
match: "*",
value: time.Duration(0),
origin: "default",
},
{
model: "Unknown Device",
param: QuirkNmInitRetryPartial,
get: func(quirks Quirks) interface{} {
return quirks.GetInitRetryPartial()
},
match: "*",
value: false,
origin: "default",
},
{
model: "Unknown Device",
param: QuirkNmInitReset,
get: func(quirks Quirks) interface{} {
return quirks.GetInitReset()
},
match: "*",
value: QuirkResetNone,
origin: "default",
},
{
model: "Unknown Device",
param: QuirkNmInitTimeout,
get: func(quirks Quirks) interface{} {
return quirks.GetInitTimeout()
},
match: "*",
value: DevInitTimeout,
origin: "default",
},
{
model: "Unknown Device",
param: QuirkNmRequestDelay,
get: func(quirks Quirks) interface{} {
return quirks.GetRequestDelay()
},
match: "*",
value: time.Duration(0),
origin: "default",
},
{
model: "Unknown Device",
param: QuirkNmUsbMaxInterfaces,
get: func(quirks Quirks) interface{} {
return quirks.GetUsbMaxInterfaces()
},
match: "*",
value: uint(0),
origin: "default",
},
{
model: "Unknown Device",
param: QuirkNmZlpRecvHack,
get: func(quirks Quirks) interface{} {
return quirks.GetZlpRecvHack()
},
match: "*",
value: false,
origin: "default",
},
{
model: "Unknown Device",
param: QuirkNmZlpSend,
get: func(quirks Quirks) interface{} {
return quirks.GetZlpSend()
},
match: "*",
value: false,
origin: "default",
},
// Quirks for some known devices
{
model: "HP ScanJet Pro 4500 fn1",
param: QuirkNmUsbMaxInterfaces,
get: func(quirks Quirks) interface{} {
return quirks.GetUsbMaxInterfaces()
},
match: "HP ScanJet Pro 4500 fn1",
value: uint(1),
origin: "testdata/quirks/HP.conf:16",
},
{
model: "HP ScanJet Pro 4500 fn1",
param: QuirkNmRequestDelay,
get: func(quirks Quirks) interface{} {
return quirks.GetRequestDelay()
},
match: "*",
value: time.Duration(0),
origin: "default",
},
{
// Here we test that more specific 'http-connection'
// for the particular model overrides less specific
// default value.
model: "HP OfficeJet Pro 8730",
param: "http-connection",
get: func(quirks Quirks) interface{} {
q := quirks.Get("http-connection")
return q.Parsed
},
match: "HP OfficeJet Pro 8730",
value: "close",
origin: "testdata/quirks/HP.conf:7",
},
}
for _, test := range tests {
quirks := qset.MatchByModelName(test.model)
q := quirks.Get(test.param)
v := test.get(quirks)
if !reflect.DeepEqual(v, test.value) {
t.Errorf("model: %q, param: %q: value mismatch\n"+
"expected: %s(%v)\n"+
"present: %s(%v)",
test.model, test.param,
reflect.TypeOf(test.value), test.value,
reflect.TypeOf(v), v)
}
if q.Match != test.match {
t.Errorf("model: %q, param: %q: match mismatch\n"+
"expected: %q\n"+
"present: %q",
test.model, test.param, test.match, q.Match)
}
if q.Origin != test.origin {
t.Errorf("model: %q, param: %q: origin mismatch\n"+
"expected: %q\n"+
"present: %q",
test.model, test.param, test.origin, q.Origin)
}
}
}
// TestQuirksParsers tests parsers for quirks
func TestQuirksParsers(t *testing.T) {
type testData struct {
parser func(*Quirk) error // Parser to test
input string // Input string
value interface{} // Expected output value
err string // Or expected error
}
tests := []testData{
// parseBool
{
parser: (*Quirk).parseBool,
input: "true",
value: true,
},
{
parser: (*Quirk).parseBool,
input: "false",
value: false,
},
{
parser: (*Quirk).parseBool,
input: "invalid",
err: `"invalid": must be true or false`,
},
// parseQuirkBuggyIppRsp
{
parser: (*Quirk).parseQuirkBuggyIppRsp,
input: "allow",
value: QuirkBuggyIppRspAllow,
},
{
parser: (*Quirk).parseQuirkBuggyIppRsp,
input: "reject",
value: QuirkBuggyIppRspReject,
},
{
parser: (*Quirk).parseQuirkBuggyIppRsp,
input: "sanitize",
value: QuirkBuggyIppRspSanitize,
},
{
parser: (*Quirk).parseQuirkBuggyIppRsp,
input: "invalid",
err: `"invalid": must be allow, reject or sanitize`,
},
// parseDuration
{
parser: (*Quirk).parseDuration,
input: "0",
value: time.Duration(0),
},
{
parser: (*Quirk).parseDuration,
input: "0s",
value: time.Duration(0),
},
{
parser: (*Quirk).parseDuration,
input: "12345",
value: 12345 * time.Millisecond,
},
{
parser: (*Quirk).parseDuration,
input: "1h2m3s",
value: time.Hour +
2*time.Minute +
3*time.Second,
},
{
parser: (*Quirk).parseDuration,
input: "0.5s",
value: time.Second / 2,
},
{
parser: (*Quirk).parseDuration,
input: "+0s",
err: `"+0s": invalid duration`,
},
{
parser: (*Quirk).parseDuration,
input: "-0s",
err: `"-0s": invalid duration`,
},
{
parser: (*Quirk).parseDuration,
input: "hello",
err: `"hello": invalid duration`,
},
// parseQuirkResetMethod
{
parser: (*Quirk).parseQuirkResetMethod,
input: "none",
value: QuirkResetNone,
},
{
parser: (*Quirk).parseQuirkResetMethod,
input: "soft",
value: QuirkResetSoft,
},
{
parser: (*Quirk).parseQuirkResetMethod,
input: "hard",
value: QuirkResetHard,
},
{
parser: (*Quirk).parseQuirkResetMethod,
input: "invalid",
err: `"invalid": must be none, soft or hard`,
},
// parseUint
{
parser: (*Quirk).parseUint,
input: "0",
value: uint(0),
},
{
parser: (*Quirk).parseUint,
input: "12345",
value: uint(12345),
},
{
parser: (*Quirk).parseUint,
input: "hello",
err: `"hello": invalid unsigned integer`,
},
}
for _, test := range tests {
q := Quirk{
RawValue: test.input,
}
err := test.parser(&q)
errstr := ""
if err != nil {
errstr = err.Error()
}
if errstr != test.err {
t.Errorf("error mismatch:\n"+
"expected: %s\n"+
"present: %s",
test.err, errstr)
continue
}
if q.Parsed != test.value {
t.Errorf("value mismatch:\n"+
"expected: %s(%v)\n"+
"present: %s(%v)",
reflect.TypeOf(test.value), test.value,
reflect.TypeOf(q.Parsed), q.Parsed)
}
}
}
// TestQuirksSetLoad tests LoadQuirksSet
func TestQuirksSetLoad(t *testing.T) {
const path = "testdata/quirks"
const badPath = path + "-not-exist"
// Try non-existent directory
_, err := LoadQuirksSet(badPath)
if err != nil {
t.Fatalf("LoadQuirksSet(%q): %s", badPath, err)
}
// Try test data
_, err = LoadQuirksSet(path)
if err != nil {
t.Fatalf("LoadQuirksSet(%q): %s", path, err)
}
}