-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalidation_test.go
333 lines (315 loc) · 7.08 KB
/
validation_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
package cpe
import (
"testing"
)
// TestValidateComponent 测试组件验证
func TestValidateComponent(t *testing.T) {
tests := []struct {
name string
value string
componentName string
wantErr bool
}{
{
name: "有效的普通值",
value: "windows",
componentName: "product",
wantErr: false,
},
{
name: "有效的特殊字符",
value: "example.com",
componentName: "vendor",
wantErr: false,
},
{
name: "有效的ANY值",
value: "*",
componentName: "version",
wantErr: false,
},
{
name: "有效的NA值",
value: "-",
componentName: "update",
wantErr: false,
},
{
name: "空值",
value: "",
componentName: "edition",
wantErr: false,
},
{
name: "非法字符",
value: "product!name",
componentName: "product",
wantErr: true,
},
{
name: "非法控制字符",
value: "product\tname",
componentName: "product",
wantErr: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
err := ValidateComponent(tt.value, tt.componentName)
if (err != nil) != tt.wantErr {
t.Errorf("ValidateComponent() error = %v, wantErr %v", err, tt.wantErr)
}
})
}
}
// TestValidateCPE 测试CPE验证
func TestValidateCPE(t *testing.T) {
tests := []struct {
name string
cpe *CPE
wantErr bool
}{
{
name: "有效的CPE",
cpe: &CPE{
Cpe23: "cpe:2.3:a:microsoft:windows:10:*:*:*:*:*:*:*",
Part: *PartApplication,
Vendor: "microsoft",
ProductName: "windows",
Version: "10",
},
wantErr: false,
},
{
name: "无效的Part",
cpe: &CPE{
Part: Part{ShortName: "x"},
Vendor: "microsoft",
ProductName: "windows",
Version: "10",
},
wantErr: true,
},
{
name: "无效的Vendor",
cpe: &CPE{
Part: *PartApplication,
Vendor: "microsoft!invalid",
ProductName: "windows",
Version: "10",
},
wantErr: true,
},
{
name: "无效的ProductName",
cpe: &CPE{
Part: *PartApplication,
Vendor: "microsoft",
ProductName: "windows\nbreak",
Version: "10",
},
wantErr: true,
},
{
name: "部分为空的CPE",
cpe: &CPE{
Part: *PartApplication,
Vendor: "",
ProductName: "windows",
Version: "",
},
wantErr: false, // 空值是允许的
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
err := ValidateCPE(tt.cpe)
if (err != nil) != tt.wantErr {
t.Errorf("ValidateCPE() error = %v, wantErr %v", err, tt.wantErr)
}
})
}
}
// TestNormalizeComponent 测试组件标准化
func TestNormalizeComponent(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: "Windows 10",
expected: "windows_10",
},
{
name: "多个空格替换",
value: "Windows 10",
expected: "windows_10",
},
{
name: "不修改特殊值",
value: "*",
expected: "*",
},
{
name: "不修改特殊值",
value: "-",
expected: "-",
},
{
name: "标准化为空",
value: "",
expected: "",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got := NormalizeComponent(tt.value)
if got != tt.expected {
t.Errorf("NormalizeComponent() = %v, want %v", got, tt.expected)
}
})
}
}
// TestNormalizeCPE 测试CPE标准化
func TestNormalizeCPE(t *testing.T) {
tests := []struct {
name string
cpe *CPE
expected *CPE
}{
{
name: "标准化所有字段",
cpe: &CPE{
Vendor: "Microsoft",
ProductName: "Windows 10",
Version: "2H22",
Update: "Latest",
},
expected: &CPE{
Vendor: "microsoft",
ProductName: "windows_10",
Version: "2h22",
Update: "latest",
},
},
{
name: "保留特殊值",
cpe: &CPE{
Vendor: "Microsoft",
ProductName: "Windows",
Version: "*",
Update: "-",
},
expected: &CPE{
Vendor: "microsoft",
ProductName: "windows",
Version: "*",
Update: "-",
},
},
{
name: "nil CPE",
cpe: nil,
expected: nil,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got := NormalizeCPE(tt.cpe)
if tt.cpe == nil {
if got != nil {
t.Errorf("NormalizeCPE() = %v, want nil", got)
}
return
}
if got.Vendor != tt.expected.Vendor {
t.Errorf("NormalizeCPE().Vendor = %v, want %v", got.Vendor, tt.expected.Vendor)
}
if got.ProductName != tt.expected.ProductName {
t.Errorf("NormalizeCPE().ProductName = %v, want %v", got.ProductName, tt.expected.ProductName)
}
if got.Version != tt.expected.Version {
t.Errorf("NormalizeCPE().Version = %v, want %v", got.Version, tt.expected.Version)
}
if got.Update != tt.expected.Update {
t.Errorf("NormalizeCPE().Update = %v, want %v", got.Update, tt.expected.Update)
}
})
}
}
// TestFSStringToURI 测试文件系统安全字符串到URI的转换
func TestFSStringToURI(t *testing.T) {
tests := []struct {
name string
fs string
expected string
}{
{
name: "基本转换",
fs: "cpe___2.3_a_microsoft_windows_10_-_-_-_-_-_-_-",
expected: "cpe:2.3:a:microsoft:windows:10:-:-:-:-:-:-:-",
},
{
name: "保留下划线",
fs: "cpe___2.3_a_microsoft_windows__server_10_-_-_-_-_-_-_-",
expected: "cpe:2.3:a:microsoft:windows_server:10:-:-:-:-:-:-:-",
},
{
name: "处理特殊字符",
fs: "cpe___2.3_a_example__20__com_product_1.0_-_-_-_-_-_-_-",
expected: "cpe:2.3:a:example.com:product:1.0:-:-:-:-:-:-:-",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got := FSStringToURI(tt.fs)
if got != tt.expected {
t.Errorf("FSStringToURI() = %v, want %v", got, tt.expected)
}
})
}
}
// TestURIToFSString 测试URI到文件系统安全字符串的转换
func TestURIToFSString(t *testing.T) {
tests := []struct {
name string
uri string
expected string
}{
{
name: "基本转换",
uri: "cpe:2.3:a:microsoft:windows:10:-:-:-:-:-:-:-",
expected: "cpe___2.3_a_microsoft_windows_10_-_-_-_-_-_-_-",
},
{
name: "保留下划线",
uri: "cpe:2.3:a:microsoft:windows_server:10:-:-:-:-:-:-:-",
expected: "cpe___2.3_a_microsoft_windows__server_10_-_-_-_-_-_-_-",
},
{
name: "处理特殊字符",
uri: "cpe:2.3:a:example.com:product:1.0:-:-:-:-:-:-:-",
expected: "cpe___2.3_a_example__20__com_product_1.0_-_-_-_-_-_-_-",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
got := URIToFSString(tt.uri)
if got != tt.expected {
t.Errorf("URIToFSString() = %v, want %v", got, tt.expected)
}
})
}
}