-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcodegen_test.go
470 lines (431 loc) · 11 KB
/
codegen_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
package asn1go
import (
"bytes"
"github.com/google/go-cmp/cmp"
"go/token"
"testing"
goparser "go/parser"
goprint "go/printer"
)
func generateDeclarationsString(m ModuleDefinition) (string, error) {
bufw := bytes.NewBufferString("")
gen := NewCodeGenerator(GenParams{})
err := gen.Generate(m, bufw)
if err != nil {
return "", err
} else {
return bufw.String(), nil
}
}
func testModule(assignments AssignmentList) ModuleDefinition {
return ModuleDefinition{
ModuleIdentifier: ModuleIdentifier{Reference: "My-ASN1-ModuleName"},
ModuleBody: ModuleBody{
AssignmentList: assignments,
},
}
}
func TestDeclMinSynax(t *testing.T) {
m := ModuleDefinition{
ModuleIdentifier: ModuleIdentifier{Reference: "My-ASN1-ModuleName"},
}
expected := `package My_ASN1_ModuleName
`
got, err := generateDeclarationsString(m)
if err != nil {
t.Fatalf("Unexpected error: %v", err.Error())
}
if got != expected {
t.Errorf("Output did not match\n\nExp:\n`%v`\n\nGot:\n`%v`", expected, got)
}
}
func TestDeclPrimitiveTypesSyntax(t *testing.T) {
m := ModuleDefinition{
ModuleIdentifier: ModuleIdentifier{Reference: "My-ASN1-ModuleName"},
ModuleBody: ModuleBody{
AssignmentList: AssignmentList{
TypeAssignment{TypeReference("MyBool"), BooleanType{}},
TypeAssignment{TypeReference("MyInt"), IntegerType{}},
TypeAssignment{TypeReference("MyString"), CharacterStringType{}},
TypeAssignment{TypeReference("MyOctetString"), OctetStringType{}},
TypeAssignment{TypeReference("MyReal"), RealType{}},
},
},
}
expected := `package My_ASN1_ModuleName
type MyBool = bool
type MyInt = int64
type MyString = string
type MyOctetString = []byte
type MyReal = float64
`
got, err := generateDeclarationsString(m)
if err != nil {
t.Fatalf("Unexpected error: %v", err.Error())
}
if diff := cmp.Diff(expected, got); diff != "" {
t.Errorf("Output did not match expected, diff (-want, +got): %v", diff)
}
}
func TestDeclSequenceTypeSyntax(t *testing.T) {
m := testModule(AssignmentList{
TypeAssignment{TypeReference("MySequence"), SequenceType{Components: ComponentTypeList{
NamedComponentType{NamedType: NamedType{
Identifier: Identifier("myIntField"),
Type: IntegerType{},
}},
NamedComponentType{NamedType: NamedType{
Identifier: Identifier("myStructField"),
Type: SequenceType{Components: ComponentTypeList{
NamedComponentType{NamedType: NamedType{
Identifier: Identifier("myOctetString"),
Type: OctetStringType{},
}},
}},
}},
}}},
})
expected := `package My_ASN1_ModuleName
type MySequence struct {
MyIntField int64
MyStructField struct {
MyOctetString []byte
}
}
`
got, err := generateDeclarationsString(m)
if err != nil {
t.Fatalf("Unexpected error: %v", err.Error())
}
if got != expected {
t.Errorf("Output did not match\n\nExp:\n`%v`\n\nGot:\n`%v`", expected, got)
}
}
func TestDeclSequenceOFTypeSyntax(t *testing.T) {
m := testModule(AssignmentList{
TypeAssignment{TypeReference("MySequenceOfInt"), SequenceOfType{IntegerType{}}},
TypeAssignment{TypeReference("MySequenceOfSequence"), SequenceOfType{SequenceType{Components: ComponentTypeList{
NamedComponentType{NamedType: NamedType{
Identifier: Identifier("myIntField"),
Type: IntegerType{},
}}},
}}},
})
expected := `package My_ASN1_ModuleName
type MySequenceOfInt = []int64
type MySequenceOfSequence = []struct {
MyIntField int64
}
`
got, err := generateDeclarationsString(m)
if err != nil {
t.Fatalf("Unexpected error: %v", err.Error())
}
if diff := cmp.Diff(expected, got); diff != "" {
t.Errorf("Output did not match expected, diff (-want, +got): %v", diff)
}
}
func TestTags(t *testing.T) {
m := testModule(AssignmentList{
TypeAssignment{TypeReference("MySequence"), SequenceType{Components: ComponentTypeList{
NamedComponentType{NamedType: NamedType{
Identifier: Identifier("myStringField"),
Type: RestrictedStringType{IA5String},
}},
}}},
})
expected := `package My_ASN1_ModuleName
type MySequence struct {
MyStringField string ` + "`asn1:\"ia5\"`" + `
}
`
got, err := generateDeclarationsString(m)
if err != nil {
t.Fatalf("Unexpected error: %v", err.Error())
}
if got != expected {
t.Errorf("Output did not match\n\nExp:\n`%v`\n\nGot:\n`%v`", expected, got)
}
}
type e2eTestCase struct {
name string
asnModule string
goModule string
}
func testParsingAndGeneration(t *testing.T, testCases []e2eTestCase) {
for _, tc := range testCases {
t.Run(tc.name, func(t *testing.T) {
m := parseModule(t, tc.asnModule)
expected := tc.goModule
fileAst, err := goparser.ParseFile(token.NewFileSet(), "testsample", bytes.NewBufferString(expected), 0)
if err != nil {
t.Fatalf("Syntax of expected go module is incorrect: %v", err)
}
normalizedBuf := &bytes.Buffer{}
if err := goprint.Fprint(normalizedBuf, token.NewFileSet(), fileAst); err != nil {
t.Fatalf("Failed to format generated go module: %v", err)
}
expected = normalizedBuf.String()
got, err := generateDeclarationsString(*m)
if err != nil {
t.Fatalf("Unexpected error: %v", err.Error())
}
if diff := cmp.Diff(expected, got); diff != "" {
t.Errorf("Generated module did not match expected, diff (-want, +got): %v", diff)
}
})
}
}
func TestTagType(t *testing.T) {
testCases := []e2eTestCase{
{
name: "default (explicit)",
asnModule: `
TestSpec DEFINITIONS ::= BEGIN
Struct ::= SEQUENCE {
untagged BOOLEAN,
default [1] BOOLEAN,
explicit [2] EXPLICIT BOOLEAN,
implicit [3] IMPLICIT BOOLEAN
}
END
`,
goModule: `package TestSpec
type Struct struct {
Untagged bool
Default bool ` + "`asn1:\"explicit,tag:1\"`" + `
Explicit bool ` + "`asn1:\"explicit,tag:2\"`" + `
Implicit bool ` + "`asn1:\"tag:3\"`" + `
}
`,
},
{
name: "module explicit tags",
asnModule: `
TestSpec DEFINITIONS EXPLICIT TAGS ::= BEGIN
Struct ::= SEQUENCE {
untagged BOOLEAN,
default [1] BOOLEAN,
explicit [2] EXPLICIT BOOLEAN,
implicit [3] IMPLICIT BOOLEAN
}
END
`,
goModule: `package TestSpec
type Struct struct {
Untagged bool
Default bool ` + "`asn1:\"explicit,tag:1\"`" + `
Explicit bool ` + "`asn1:\"explicit,tag:2\"`" + `
Implicit bool ` + "`asn1:\"tag:3\"`" + `
}
`,
},
{
name: "module implicit tags",
asnModule: `
TestSpec DEFINITIONS IMPLICIT TAGS ::= BEGIN
Struct ::= SEQUENCE {
untagged BOOLEAN,
default [1] BOOLEAN,
explicit [2] EXPLICIT BOOLEAN,
implicit [3] IMPLICIT BOOLEAN
}
END
`,
goModule: `package TestSpec
type Struct struct {
Untagged bool
Default bool ` + "`asn1:\"tag:1\"`" + `
Explicit bool ` + "`asn1:\"explicit,tag:2\"`" + `
Implicit bool ` + "`asn1:\"tag:3\"`" + `
}
`,
},
}
testParsingAndGeneration(t, testCases)
}
func TestIntegerType(t *testing.T) {
testCases := []e2eTestCase{
{
name: "bare integer",
asnModule: `
TestSpec DEFINITIONS IMPLICIT TAGS ::= BEGIN
Int ::= INTEGER
END
`,
goModule: `package TestSpec
type Int = int64
`,
},
{
name: "integer with consts",
asnModule: `
TestSpec DEFINITIONS IMPLICIT TAGS ::= BEGIN
d INTEGER ::= 42
Int ::= INTEGER {
a(42),
b(-1),
c(d)
}
END
`,
goModule: `package TestSpec
var ValD int64 = 42
type Int = int64
var (
IntValA Int = 42
IntValB Int = -1
IntValC Int = ValD
)
`,
},
}
testParsingAndGeneration(t, testCases)
}
func TestValueAssignments(t *testing.T) {
testCases := []e2eTestCase{
{
name: "primitive types",
asnModule: `
TestSpec DEFINITIONS IMPLICIT TAGS ::= BEGIN
myInt INTEGER ::= 42
myBool BOOLEAN ::= TRUE
myReal REAL ::= 3.14
END
`,
goModule: `package TestSpec
var ValMyInt int64 = 42
var ValMyBool bool = true
var ValMyReal float64 = 3.14
`,
},
}
testParsingAndGeneration(t, testCases)
}
func TestExtensionsE2E(t *testing.T) {
testcases := []e2eTestCase{
{
name: "sequence extension",
asnModule: `
TestSpec DEFINITIONS IMPLICIT TAGS ::= BEGIN
Struct ::= SEQUENCE {
untagged BOOLEAN,
...,
extension BOOLEAN
}
END
`,
goModule: `package TestSpec
type Struct struct {
Untagged bool
Extension bool
}
`,
},
{
name: "set extension",
asnModule: `
TestSpec DEFINITIONS IMPLICIT TAGS ::= BEGIN
Set ::= SET {
untagged BOOLEAN,
...,
extension BOOLEAN
}
END
`,
goModule: `package TestSpec
type (
SetSET struct {
Untagged bool
Extension bool
}
Set = SetSET
)
`,
},
}
testParsingAndGeneration(t, testcases)
}
func parseModule(t *testing.T, s string) *ModuleDefinition {
t.Helper()
def, err := ParseString(s)
if err != nil {
t.Fatalf("Failed to parse ASN.1 module: %v", err)
}
return def
}
func TestTime(t *testing.T) {
m := testModule(AssignmentList{
TypeAssignment{TypeReference("MyTimeType"), TypeReference("GeneralizedTime")},
TypeAssignment{TypeReference("MySequence"), SequenceType{Components: ComponentTypeList{
NamedComponentType{NamedType: NamedType{
Identifier: Identifier("myTimeField"),
Type: TypeReference("MyTimeType"),
}},
}}},
})
expected := `package My_ASN1_ModuleName
import "time"
type MyTimeType = time.Time
type MySequence struct {
MyTimeField time.Time ` + "`asn1:\"generalized\"`" + `
}
`
got, err := generateDeclarationsString(m)
if err != nil {
t.Fatalf("Unexpected error: %v", err.Error())
}
if diff := cmp.Diff(expected, got); diff != "" {
t.Errorf("Output did not match expected, diff (-want, +got): %v", diff)
}
}
func TestBitString(t *testing.T) {
m := testModule(AssignmentList{
TypeAssignment{TypeReference("MyBitStringType"), ConstraintedType{
Type: BitStringType{},
Constraint: Constraint{ConstraintSpec: SubtypeConstraint{
Unions{Intersections{IntersectionElements{Elements: SizeConstraint{Constraint: Constraint{ConstraintSpec: SubtypeConstraint{
Unions{Intersections{IntersectionElements{Elements: ValueRange{
LowerEndpoint: RangeEndpoint{Value: Number(32)},
UpperEndpoint: RangeEndpoint{},
},
}}},
}},
},
}}},
}},
}},
TypeAssignment{TypeReference("MyNestedBitStringType"), TypeReference("MyBitStringType")},
TypeAssignment{TypeReference("MySequence"), SequenceType{Components: ComponentTypeList{
NamedComponentType{NamedType: NamedType{
Identifier: Identifier("myNestedBitStringField"),
Type: TypeReference("MyNestedBitStringType"),
}},
NamedComponentType{NamedType: NamedType{
Identifier: Identifier("myBitStringField"),
Type: TypeReference("MyBitStringType"),
}},
NamedComponentType{NamedType: NamedType{
Identifier: Identifier("bitStringField"),
Type: BitStringType{},
}},
}}},
})
expected := `package My_ASN1_ModuleName
import "encoding/asn1"
type MyBitStringType = asn1.BitString
type MyNestedBitStringType = asn1.BitString
type MySequence struct {
MyNestedBitStringField asn1.BitString
MyBitStringField asn1.BitString
BitStringField asn1.BitString
}
`
got, err := generateDeclarationsString(m)
if err != nil {
t.Fatalf("Unexpected error: %v", err.Error())
}
if diff := cmp.Diff(expected, got); diff != "" {
t.Errorf("Output did not match expected, diff (-want, +got): %v", diff)
}
}