-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbase_test.go
448 lines (439 loc) · 7.41 KB
/
base_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
package cve
import (
"fmt"
"testing"
"time"
)
func TestFormat(t *testing.T) {
type args struct {
cve string
}
tests := []struct {
name string
args args
want string
}{
{
name: "format CVE with mixed case and spaces",
args: args{
cve: " cVe-2002-100098 ",
},
want: "CVE-2002-100098",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := Format(tt.args.cve); got != tt.want {
t.Errorf("Format() = %v, want %v", got, tt.want)
}
})
}
}
func TestIsCVE(t *testing.T) {
type args struct {
text string
}
tests := []struct {
name string
args args
want bool
}{
{
name: "standard CVE format",
args: args{
text: "cve-2007-199",
},
want: true,
},
{
name: "CVE with leading space",
args: args{
text: " cve-2007-199",
},
want: true,
},
{
name: "CVE with trailing space",
args: args{
text: "cve-2007-199 ",
},
want: true,
},
{
name: "CVE with mixed case",
args: args{
text: "cVe-2007-199",
},
want: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := IsCve(tt.args.text); got != tt.want {
t.Errorf("IsCve() = %v, want %v", got, tt.want)
}
})
}
}
func TestIsContainsCVE(t *testing.T) {
type args struct {
text string
}
tests := []struct {
name string
args args
want bool
}{
{
name: "text containing CVE",
args: args{
text: "this text contains cve-2908-10086",
},
want: true,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := IsContainsCve(tt.args.text); got != tt.want {
t.Errorf("IsContainsCve() = %v, want %v", got, tt.want)
}
})
}
}
func TestSplit(t *testing.T) {
type args struct {
cve string
}
tests := []struct {
name string
args args
wantYear string
wantSeq string
}{
{
name: "split standard CVE into year and sequence",
args: args{
cve: "cve-2007-10086",
},
wantYear: "2007",
wantSeq: "10086",
},
{
name: "split CVE with invalid format",
args: args{
cve: "invalid-format",
},
wantYear: "",
wantSeq: "",
},
{
name: "split empty string",
args: args{
cve: "",
},
wantYear: "",
wantSeq: "",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
gotYear, gotSeq := Split(tt.args.cve)
if gotYear != tt.wantYear {
t.Errorf("Split() gotYear = %v, want %v", gotYear, tt.wantYear)
}
if gotSeq != tt.wantSeq {
t.Errorf("Split() gotSeq = %v, want %v", gotSeq, tt.wantSeq)
}
})
}
}
func TestIsCveYearOk(t *testing.T) {
type args struct {
cve string
}
tests := []struct {
name string
args args
want bool
}{
{
name: "valid current year",
args: args{
cve: fmt.Sprintf("CVE-%d-10086", time.Now().Year()),
},
want: true,
},
{
name: "valid past year",
args: args{
cve: "CVE-2020-10086",
},
want: true,
},
{
name: "future year",
args: args{
cve: fmt.Sprintf("CVE-%d-10086", time.Now().Year()+1),
},
want: false,
},
{
name: "year before 1999",
args: args{
cve: "CVE-1998-10086",
},
want: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := IsCveYearOk(tt.args.cve); got != tt.want {
t.Errorf("IsCveYearOk() = %v, want %v", got, tt.want)
}
})
}
}
func TestIsCveYearOkWithCutoff(t *testing.T) {
type args struct {
cve string
cutoff int
}
tests := []struct {
name string
args args
want bool
}{
{
name: "valid year within cutoff",
args: args{
cve: "CVE-2020-10086",
cutoff: 5,
},
want: true,
},
{
name: "valid year at exact cutoff",
args: args{
cve: "CVE-2019-10086",
cutoff: time.Now().Year() - 2019,
},
want: true,
},
{
name: "valid year beyond cutoff",
args: args{
cve: "CVE-2000-10086",
cutoff: 5,
},
want: true,
},
{
name: "future year with larger cutoff",
args: args{
cve: "CVE-2099-10086",
cutoff: 100,
},
want: true,
},
{
name: "year before 1999",
args: args{
cve: "CVE-1998-10086",
cutoff: 100,
},
want: false,
},
{
name: "invalid CVE format",
args: args{
cve: "CVE-INVALID-FORMAT",
cutoff: 0,
},
want: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := IsCveYearOkWithCutoff(tt.args.cve, tt.args.cutoff); got != tt.want {
t.Errorf("IsCveYearOkWithCutoff() = %v, want %v", got, tt.want)
}
})
}
}
func TestValidateCve(t *testing.T) {
type args struct {
cve string
}
tests := []struct {
name string
args args
want bool
}{
{
name: "valid CVE",
args: args{
cve: "CVE-2022-1234",
},
want: true,
},
{
name: "valid CVE with leading/trailing spaces",
args: args{
cve: " CVE-2022-1234 ",
},
want: true,
},
{
name: "valid CVE lowercase",
args: args{
cve: "cve-2022-1234",
},
want: true,
},
{
name: "invalid format - missing prefix",
args: args{
cve: "2022-1234",
},
want: false,
},
{
name: "invalid format - wrong separator",
args: args{
cve: "CVE/2022/1234",
},
want: false,
},
{
name: "invalid year - before 1999",
args: args{
cve: "CVE-1998-1234",
},
want: false,
},
{
name: "invalid year - future beyond current year",
args: args{
cve: "CVE-2099-1234", // Note: This might need updating in the future
},
want: false,
},
{
name: "invalid sequence - not a number",
args: args{
cve: "CVE-2022-ABCD",
},
want: false,
},
{
name: "invalid format - extra components",
args: args{
cve: "CVE-2022-1234-5",
},
want: false,
},
{
name: "invalid format - missing components",
args: args{
cve: "CVE-2022",
},
want: false,
},
{
name: "invalid year - non-numeric",
args: args{
cve: "CVE-YEAR-1234",
},
want: false,
},
{
name: "year too large for int conversion",
args: args{
cve: "CVE-99999999999999999999-1234",
},
want: false,
},
{
name: "sequence too large for int conversion",
args: args{
cve: "CVE-2022-99999999999999999999",
},
want: false,
},
{
name: "zero sequence number",
args: args{
cve: "CVE-2022-0",
},
want: false,
},
{
name: "negative sequence number",
args: args{
cve: "CVE-2022--1",
},
want: false,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := ValidateCve(tt.args.cve); got != tt.want {
t.Errorf("ValidateCve() = %v, want %v", got, tt.want)
}
})
}
}
// TestExtractYear 测试extractYear函数(直接测试内部函数以提高覆盖率)
func TestExtractYear(t *testing.T) {
type args struct {
cve string
}
tests := []struct {
name string
args args
want int
}{
{
name: "valid CVE",
args: args{
cve: "CVE-2022-1234",
},
want: 2022,
},
{
name: "invalid format",
args: args{
cve: "not-a-cve",
},
want: 0,
},
{
name: "empty string",
args: args{
cve: "",
},
want: 0,
},
{
name: "missing components",
args: args{
cve: "CVE-2022",
},
want: 0,
},
{
name: "additional components",
args: args{
cve: "CVE-2022-1234-extra",
},
want: 0,
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := extractYear(tt.args.cve); got != tt.want {
t.Errorf("extractYear() = %v, want %v", got, tt.want)
}
})
}
}