-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwfn_test.go
430 lines (414 loc) · 9.58 KB
/
wfn_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
package cpe
import (
"testing"
)
// TestFromCPE 测试从CPE创建WFN
func TestFromCPE(t *testing.T) {
tests := []struct {
name string
cpe *CPE
expected *WFN
}{
{
name: "基本CPE转换",
cpe: &CPE{
Cpe23: "cpe:2.3:a:microsoft:windows:10:*:*:*:*:*:*:*",
Part: *PartApplication,
Vendor: "microsoft",
ProductName: "windows",
Version: "10",
Update: "*",
Edition: "*",
Language: "*",
SoftwareEdition: "*",
TargetSoftware: "*",
TargetHardware: "*",
Other: "*",
},
expected: &WFN{
Part: "a",
Vendor: "microsoft",
Product: "windows",
Version: "10",
Update: "*",
Edition: "*",
Language: "*",
SoftwareEdition: "*",
TargetSoftware: "*",
TargetHardware: "*",
Other: "*",
},
},
{
name: "带特殊值的CPE转换",
cpe: &CPE{
Cpe23: "cpe:2.3:o:linux:linux_kernel:5.10:-:*:*:*:*:*:*",
Part: *PartOperationSystem,
Vendor: "linux",
ProductName: "linux_kernel",
Version: "5.10",
Update: "-",
Edition: "*",
Language: "*",
SoftwareEdition: "*",
TargetSoftware: "*",
TargetHardware: "*",
Other: "*",
},
expected: &WFN{
Part: "o",
Vendor: "linux",
Product: "linux_kernel",
Version: "5.10",
Update: "-",
Edition: "*",
Language: "*",
SoftwareEdition: "*",
TargetSoftware: "*",
TargetHardware: "*",
Other: "*",
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got := FromCPE(tt.cpe)
if got.Part != tt.expected.Part {
t.Errorf("FromCPE().Part = %v, want %v", got.Part, tt.expected.Part)
}
if got.Vendor != tt.expected.Vendor {
t.Errorf("FromCPE().Vendor = %v, want %v", got.Vendor, tt.expected.Vendor)
}
if got.Product != tt.expected.Product {
t.Errorf("FromCPE().Product = %v, want %v", got.Product, tt.expected.Product)
}
if got.Version != tt.expected.Version {
t.Errorf("FromCPE().Version = %v, want %v", got.Version, tt.expected.Version)
}
if got.Update != tt.expected.Update {
t.Errorf("FromCPE().Update = %v, want %v", got.Update, tt.expected.Update)
}
})
}
}
// TestToCPE 测试WFN转CPE
func TestToCPE(t *testing.T) {
tests := []struct {
name string
wfn *WFN
expected *CPE
}{
{
name: "基本WFN转换",
wfn: &WFN{
Part: "a",
Vendor: "microsoft",
Product: "windows",
Version: "10",
Update: "*",
Edition: "*",
Language: "*",
SoftwareEdition: "*",
TargetSoftware: "*",
TargetHardware: "*",
Other: "*",
},
expected: &CPE{
Part: *PartApplication,
Vendor: "microsoft",
ProductName: "windows",
Version: "10",
Update: "*",
Edition: "*",
Language: "*",
SoftwareEdition: "*",
TargetSoftware: "*",
TargetHardware: "*",
Other: "*",
},
},
{
name: "操作系统WFN转换",
wfn: &WFN{
Part: "o",
Vendor: "linux",
Product: "linux_kernel",
Version: "5.10",
Update: "-",
Edition: "*",
Language: "*",
SoftwareEdition: "*",
TargetSoftware: "*",
TargetHardware: "*",
Other: "*",
},
expected: &CPE{
Part: *PartOperationSystem,
Vendor: "linux",
ProductName: "linux_kernel",
Version: "5.10",
Update: "-",
Edition: "*",
Language: "*",
SoftwareEdition: "*",
TargetSoftware: "*",
TargetHardware: "*",
Other: "*",
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got := tt.wfn.ToCPE()
if got.Part.ShortName != tt.expected.Part.ShortName {
t.Errorf("WFN.ToCPE().Part = %v, want %v", got.Part.ShortName, tt.expected.Part.ShortName)
}
if got.Vendor != tt.expected.Vendor {
t.Errorf("WFN.ToCPE().Vendor = %v, want %v", got.Vendor, tt.expected.Vendor)
}
if got.ProductName != tt.expected.ProductName {
t.Errorf("WFN.ToCPE().ProductName = %v, want %v", got.ProductName, tt.expected.ProductName)
}
if got.Version != tt.expected.Version {
t.Errorf("WFN.ToCPE().Version = %v, want %v", got.Version, tt.expected.Version)
}
if got.Update != tt.expected.Update {
t.Errorf("WFN.ToCPE().Update = %v, want %v", got.Update, tt.expected.Update)
}
})
}
}
// TestFromCPE23String 测试从CPE 2.3字符串创建WFN
func TestFromCPE23String(t *testing.T) {
tests := []struct {
name string
cpe23 string
wantErr bool
expected *WFN
}{
{
name: "有效的CPE 2.3字符串",
cpe23: "cpe:2.3:a:microsoft:windows:10:*:*:*:*:*:*:*",
wantErr: false,
expected: &WFN{
Part: "a",
Vendor: "microsoft",
Product: "windows",
Version: "10",
Update: "*",
Edition: "*",
Language: "*",
SoftwareEdition: "*",
TargetSoftware: "*",
TargetHardware: "*",
Other: "*",
},
},
{
name: "无效的CPE 2.3格式",
cpe23: "cpe:2.3:a:microsoft:windows",
wantErr: true,
},
{
name: "无效的CPE 2.3前缀",
cpe23: "invalid:2.3:a:microsoft:windows:10:*:*:*:*:*:*:*",
wantErr: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got, err := FromCPE23String(tt.cpe23)
if (err != nil) != tt.wantErr {
t.Errorf("FromCPE23String() error = %v, wantErr %v", err, tt.wantErr)
return
}
if err == nil {
if got.Part != tt.expected.Part {
t.Errorf("FromCPE23String().Part = %v, want %v", got.Part, tt.expected.Part)
}
if got.Vendor != tt.expected.Vendor {
t.Errorf("FromCPE23String().Vendor = %v, want %v", got.Vendor, tt.expected.Vendor)
}
if got.Product != tt.expected.Product {
t.Errorf("FromCPE23String().Product = %v, want %v", got.Product, tt.expected.Product)
}
if got.Version != tt.expected.Version {
t.Errorf("FromCPE23String().Version = %v, want %v", got.Version, tt.expected.Version)
}
}
})
}
}
// TestWFNMatch 测试WFN匹配功能
func TestWFNMatch(t *testing.T) {
tests := []struct {
name string
wfn1 *WFN
wfn2 *WFN
expected bool
}{
{
name: "完全相同的WFN应匹配",
wfn1: &WFN{
Part: "a",
Vendor: "microsoft",
Product: "windows",
Version: "10",
},
wfn2: &WFN{
Part: "a",
Vendor: "microsoft",
Product: "windows",
Version: "10",
},
expected: true,
},
{
name: "通配符匹配",
wfn1: &WFN{
Part: "a",
Vendor: "microsoft",
Product: "windows",
Version: "10",
},
wfn2: &WFN{
Part: "a",
Vendor: "microsoft",
Product: "windows",
Version: "*",
},
expected: true,
},
{
name: "不匹配的版本",
wfn1: &WFN{
Part: "a",
Vendor: "microsoft",
Product: "windows",
Version: "10",
},
wfn2: &WFN{
Part: "a",
Vendor: "microsoft",
Product: "windows",
Version: "11",
},
expected: false,
},
{
name: "不匹配的产品",
wfn1: &WFN{
Part: "a",
Vendor: "microsoft",
Product: "windows",
Version: "10",
},
wfn2: &WFN{
Part: "a",
Vendor: "microsoft",
Product: "office",
Version: "10",
},
expected: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := tt.wfn1.Match(tt.wfn2); got != tt.expected {
t.Errorf("WFN.Match() = %v, want %v", got, tt.expected)
}
})
}
}
// TestEscapeValue 测试WFN值转义
func TestEscapeValue(t *testing.T) {
tests := []struct {
name string
value string
expected string
}{
{
name: "普通值不需要转义",
value: "windows",
expected: "windows",
},
{
name: "点需要转义",
value: "example.com",
expected: "example\\.com",
},
{
name: "冒号需要转义",
value: "product:name",
expected: "product\\:name",
},
{
name: "特殊值不需要转义",
value: "*",
expected: "*",
},
{
name: "特殊值不需要转义",
value: "-",
expected: "-",
},
{
name: "空值不需要转义",
value: "",
expected: "",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := escapeValue(tt.value); got != tt.expected {
t.Errorf("escapeValue() = %v, want %v", got, tt.expected)
}
})
}
}
// TestUnescapeValue 测试WFN值反转义
func TestUnescapeValue(t *testing.T) {
tests := []struct {
name string
value string
expected string
}{
{
name: "无转义字符的值",
value: "windows",
expected: "windows",
},
{
name: "转义的点",
value: "example\\.com",
expected: "example.com",
},
{
name: "转义的冒号",
value: "product\\:name",
expected: "product:name",
},
{
name: "特殊值不需要处理",
value: "*",
expected: "*",
},
{
name: "特殊值不需要处理",
value: "-",
expected: "-",
},
{
name: "空值不需要处理",
value: "",
expected: "",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := unescapeValue(tt.value); got != tt.expected {
t.Errorf("unescapeValue() = %v, want %v", got, tt.expected)
}
})
}
}