-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathadvanced_matching_test.go
481 lines (463 loc) · 10.7 KB
/
advanced_matching_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
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
package cpe
import (
"testing"
)
// TestNewAdvancedMatchOptions 测试创建高级匹配选项
func TestNewAdvancedMatchOptions(t *testing.T) {
options := NewAdvancedMatchOptions()
// 检查默认值
if options.UseRegex {
t.Errorf("NewAdvancedMatchOptions().UseRegex = %v, want false", options.UseRegex)
}
if options.IgnoreCase {
t.Errorf("NewAdvancedMatchOptions().IgnoreCase = %v, want false", options.IgnoreCase)
}
if options.UseFuzzyMatch {
t.Errorf("NewAdvancedMatchOptions().UseFuzzyMatch = %v, want false", options.UseFuzzyMatch)
}
if options.MatchCommonOnly {
t.Errorf("NewAdvancedMatchOptions().MatchCommonOnly = %v, want false", options.MatchCommonOnly)
}
if options.PartialMatch {
t.Errorf("NewAdvancedMatchOptions().PartialMatch = %v, want false", options.PartialMatch)
}
if options.MatchMode != "exact" {
t.Errorf("NewAdvancedMatchOptions().MatchMode = %v, want 'exact'", options.MatchMode)
}
if options.VersionCompareMode != "exact" {
t.Errorf("NewAdvancedMatchOptions().VersionCompareMode = %v, want 'exact'", options.VersionCompareMode)
}
if options.FieldOptions == nil {
t.Errorf("NewAdvancedMatchOptions().FieldOptions is nil, want a map")
}
}
// TestAdvancedMatchCPE 测试高级CPE匹配
func TestAdvancedMatchCPE(t *testing.T) {
tests := []struct {
name string
criteria *CPE
target *CPE
options *AdvancedMatchOptions
expected bool
}{
{
name: "精确匹配模式",
criteria: &CPE{
Part: *PartApplication,
Vendor: "microsoft",
ProductName: "windows",
Version: "10",
},
target: &CPE{
Part: *PartApplication,
Vendor: "microsoft",
ProductName: "windows",
Version: "10",
},
options: &AdvancedMatchOptions{
MatchMode: "exact",
},
expected: true,
},
{
name: "忽略大小写匹配",
criteria: &CPE{
Part: *PartApplication,
Vendor: "Microsoft",
ProductName: "Windows",
Version: "10",
},
target: &CPE{
Part: *PartApplication,
Vendor: "microsoft",
ProductName: "windows",
Version: "10",
},
options: &AdvancedMatchOptions{
IgnoreCase: true,
},
expected: true,
},
{
name: "正则表达式匹配",
criteria: &CPE{
Part: *PartApplication,
Vendor: "microsoft",
ProductName: "windows",
Version: "1.*",
},
target: &CPE{
Part: *PartApplication,
Vendor: "microsoft",
ProductName: "windows",
Version: "10",
},
options: &AdvancedMatchOptions{
UseRegex: true,
},
expected: true,
},
{
name: "部分匹配模式",
criteria: &CPE{
Part: *PartApplication,
Vendor: "microsoft",
ProductName: "windows",
},
target: &CPE{
Part: *PartApplication,
Vendor: "microsoft",
ProductName: "windows",
Version: "10",
},
options: &AdvancedMatchOptions{
PartialMatch: true,
},
expected: true,
},
{
name: "子集匹配模式",
criteria: &CPE{
Part: *PartApplication,
Vendor: "microsoft",
ProductName: "windows",
},
target: &CPE{
Part: *PartApplication,
Vendor: "microsoft",
ProductName: "windows",
Version: "10",
},
options: &AdvancedMatchOptions{
MatchMode: "subset",
},
expected: true,
},
{
name: "超集匹配模式",
criteria: &CPE{
Part: *PartApplication,
Vendor: "microsoft",
ProductName: "windows",
Version: "10",
Update: "pro",
},
target: &CPE{
Part: *PartApplication,
Vendor: "microsoft",
ProductName: "windows",
},
options: &AdvancedMatchOptions{
MatchMode: "superset",
},
expected: true,
},
{
name: "仅匹配常见字段",
criteria: &CPE{
Part: *PartApplication,
Vendor: "microsoft",
ProductName: "windows",
Version: "10",
SoftwareEdition: "professional",
},
target: &CPE{
Part: *PartApplication,
Vendor: "microsoft",
ProductName: "windows",
Version: "10",
SoftwareEdition: "home",
},
options: &AdvancedMatchOptions{
MatchCommonOnly: true,
},
expected: true,
},
{
name: "版本范围匹配",
criteria: &CPE{
Part: *PartApplication,
Vendor: "microsoft",
ProductName: "windows",
Version: "10",
},
target: &CPE{
Part: *PartApplication,
Vendor: "microsoft",
ProductName: "windows",
Version: "11",
},
options: &AdvancedMatchOptions{
VersionCompareMode: "range",
VersionLower: "9",
VersionUpper: "12",
},
expected: true,
},
{
name: "不匹配 - 不同的产品",
criteria: &CPE{
Part: *PartApplication,
Vendor: "microsoft",
ProductName: "office",
},
target: &CPE{
Part: *PartApplication,
Vendor: "microsoft",
ProductName: "windows",
},
options: &AdvancedMatchOptions{},
expected: false,
},
{
name: "不匹配 - 不同的供应商",
criteria: &CPE{
Part: *PartApplication,
Vendor: "adobe",
ProductName: "reader",
},
target: &CPE{
Part: *PartApplication,
Vendor: "microsoft",
ProductName: "reader",
},
options: &AdvancedMatchOptions{},
expected: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := AdvancedMatchCPE(tt.criteria, tt.target, tt.options); got != tt.expected {
t.Errorf("AdvancedMatchCPE() = %v, want %v", got, tt.expected)
}
})
}
}
// TestMatchWithRegex 测试正则表达式匹配
func TestMatchWithRegex(t *testing.T) {
tests := []struct {
name string
criteria *CPE
target *CPE
options *AdvancedMatchOptions
expected bool
}{
{
name: "简单正则匹配",
criteria: &CPE{
Vendor: "micro.*",
ProductName: "windows",
},
target: &CPE{
Vendor: "microsoft",
ProductName: "windows",
},
options: &AdvancedMatchOptions{
UseRegex: true,
},
expected: true,
},
{
name: "精确版本正则",
criteria: &CPE{
Vendor: "microsoft",
ProductName: "windows",
Version: "10\\.[0-9]+",
},
target: &CPE{
Vendor: "microsoft",
ProductName: "windows",
Version: "10.2",
},
options: &AdvancedMatchOptions{
UseRegex: true,
},
expected: true,
},
{
name: "版本不匹配正则",
criteria: &CPE{
Vendor: "microsoft",
ProductName: "windows",
Version: "11\\.[0-9]+",
},
target: &CPE{
Vendor: "microsoft",
ProductName: "windows",
Version: "10.2",
},
options: &AdvancedMatchOptions{
UseRegex: true,
},
expected: false,
},
{
name: "忽略大小写匹配",
criteria: &CPE{
Vendor: "Microsoft",
ProductName: "Windows",
},
target: &CPE{
Vendor: "microsoft",
ProductName: "windows",
},
options: &AdvancedMatchOptions{
UseRegex: true,
IgnoreCase: true,
},
expected: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := matchWithRegex(tt.criteria, tt.target, tt.options); got != tt.expected {
t.Errorf("matchWithRegex() = %v, want %v", got, tt.expected)
}
})
}
}
// TestMatchNonVersionFields 测试非版本字段匹配
func TestMatchNonVersionFields(t *testing.T) {
tests := []struct {
name string
criteria *CPE
target *CPE
options *AdvancedMatchOptions
expected bool
}{
{
name: "基本字段匹配",
criteria: &CPE{
Part: *PartApplication,
Vendor: "microsoft",
ProductName: "windows",
},
target: &CPE{
Part: *PartApplication,
Vendor: "microsoft",
ProductName: "windows",
},
options: &AdvancedMatchOptions{},
expected: true,
},
{
name: "忽略大小写",
criteria: &CPE{
Part: *PartApplication,
Vendor: "Microsoft",
ProductName: "Windows",
},
target: &CPE{
Part: *PartApplication,
Vendor: "microsoft",
ProductName: "windows",
},
options: &AdvancedMatchOptions{
IgnoreCase: true,
},
expected: true,
},
{
name: "字段不匹配",
criteria: &CPE{
Part: *PartApplication,
Vendor: "microsoft",
ProductName: "office",
},
target: &CPE{
Part: *PartApplication,
Vendor: "microsoft",
ProductName: "windows",
},
options: &AdvancedMatchOptions{},
expected: false,
},
{
name: "需要字段权重 - 部分匹配",
criteria: &CPE{
Part: *PartApplication,
Vendor: "microsoft",
ProductName: "windows",
Edition: "professional",
},
target: &CPE{
Part: *PartApplication,
Vendor: "microsoft",
ProductName: "windows",
Edition: "home",
},
options: &AdvancedMatchOptions{
FieldOptions: map[string]FieldMatchOption{
"part": {Weight: 0.3, Required: true},
"vendor": {Weight: 0.3, Required: true},
"product": {Weight: 0.3, Required: true},
"edition": {Weight: 0.1, Required: false},
},
ScoreThreshold: 0.9, // 90%匹配度
},
expected: true, // 因为主要字段都匹配,总分超过阈值
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := matchNonVersionFields(tt.criteria, tt.target, tt.options); got != tt.expected {
t.Errorf("matchNonVersionFields() = %v, want %v", got, tt.expected)
}
})
}
}
// TestIsRequiredField 测试字段是否必需
func TestIsRequiredField(t *testing.T) {
tests := []struct {
name string
options *AdvancedMatchOptions
field string
expected bool
}{
{
name: "字段在FieldOptions中设置为必需",
options: &AdvancedMatchOptions{
FieldOptions: map[string]FieldMatchOption{
"vendor": {Required: true},
},
},
field: "vendor",
expected: true,
},
{
name: "字段在FieldOptions中设置为非必需",
options: &AdvancedMatchOptions{
FieldOptions: map[string]FieldMatchOption{
"edition": {Required: false},
},
},
field: "edition",
expected: false,
},
{
name: "字段不在FieldOptions中",
options: &AdvancedMatchOptions{
FieldOptions: map[string]FieldMatchOption{
"vendor": {Required: true},
},
},
field: "language",
expected: false, // 默认为非必需
},
{
name: "FieldOptions为nil",
options: &AdvancedMatchOptions{
FieldOptions: nil,
},
field: "vendor",
expected: false, // 默认为非必需
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := isRequiredField(tt.options, tt.field); got != tt.expected {
t.Errorf("isRequiredField() = %v, want %v", got, tt.expected)
}
})
}
}