File: name_test.go

package info (click to toggle)
golang-github-smallstep-crypto 0.63.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,800 kB
  • sloc: sh: 66; makefile: 50
file content (575 lines) | stat: -rw-r--r-- 20,958 bytes parent folder | download | duplicates (2)
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
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
package x509util

import (
	"crypto/x509"
	"crypto/x509/pkix"
	"encoding/asn1"
	"reflect"
	"testing"
)

func Test_newName(t *testing.T) {
	type args struct {
		n pkix.Name
	}
	tests := []struct {
		name string
		args args
		want Name
	}{
		{"ok", args{pkix.Name{
			Country:            []string{"The country"},
			Organization:       []string{"The organization"},
			OrganizationalUnit: []string{"The organizationalUnit 1", "The organizationalUnit 2"},
			Locality:           []string{"The locality 1", "The locality 2"},
			Province:           []string{"The province"},
			StreetAddress:      []string{"The streetAddress"},
			PostalCode:         []string{"The postalCode"},
			SerialNumber:       "The serialNumber",
			CommonName:         "The commonName",
			Names: []pkix.AttributeTypeAndValue{
				{Type: asn1.ObjectIdentifier{2, 5, 4, 6}, Value: "The country"},
				{Type: asn1.ObjectIdentifier{2, 5, 4, 10}, Value: "The organization"},
				{Type: asn1.ObjectIdentifier{2, 5, 4, 11}, Value: "The organizationalUnit 1"},
				{Type: asn1.ObjectIdentifier{2, 5, 4, 11}, Value: "The organizationalUnit 2"},
				{Type: asn1.ObjectIdentifier{2, 5, 4, 3}, Value: "The commonName"},
				{Type: asn1.ObjectIdentifier{2, 5, 4, 5}, Value: "The serialNumber"},
				{Type: asn1.ObjectIdentifier{2, 5, 4, 7}, Value: "The locality 1"},
				{Type: asn1.ObjectIdentifier{2, 5, 4, 7}, Value: "The locality 2"},
				{Type: asn1.ObjectIdentifier{2, 5, 4, 8}, Value: "The province"},
				{Type: asn1.ObjectIdentifier{2, 5, 4, 9}, Value: "The streetAddress"},
				{Type: asn1.ObjectIdentifier{2, 5, 4, 17}, Value: "The postalCode"},
				{Type: asn1.ObjectIdentifier{1, 2, 840, 113549, 1, 9, 1}, Value: asn1.RawValue{Class: asn1.ClassUniversal, Tag: asn1.TagIA5String, Bytes: []byte("jane@example.com")}},
			},
		}}, Name{
			Country:            []string{"The country"},
			Organization:       []string{"The organization"},
			OrganizationalUnit: []string{"The organizationalUnit 1", "The organizationalUnit 2"},
			Locality:           []string{"The locality 1", "The locality 2"},
			Province:           []string{"The province"},
			StreetAddress:      []string{"The streetAddress"},
			PostalCode:         []string{"The postalCode"},
			SerialNumber:       "The serialNumber",
			CommonName:         "The commonName",
			ExtraNames: []DistinguishedName{
				{Type: ObjectIdentifier{1, 2, 840, 113549, 1, 9, 1}, Value: asn1.RawValue{Class: asn1.ClassUniversal, Tag: asn1.TagIA5String, Bytes: []byte("jane@example.com")}},
			},
		}},
	}
	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			if got := newName(tt.args.n); !reflect.DeepEqual(got, tt.want) {
				t.Errorf("newName() = %v, want %v", got, tt.want)
			}
		})
	}
}

func TestName_UnmarshalJSON(t *testing.T) {
	type args struct {
		data []byte
	}
	tests := []struct {
		name    string
		args    args
		want    Name
		wantErr bool
	}{
		{"null", args{[]byte("null")}, Name{}, false},
		{"empty", args{[]byte("{}")}, Name{}, false},
		{"commonName", args{[]byte(`"commonName"`)}, Name{CommonName: "commonName"}, false},
		{"object", args{[]byte(`{
			"country": "The country",
			"organization": "The organization",
			"organizationalUnit": ["The organizationalUnit 1", "The organizationalUnit 2"],
			"locality": ["The locality 1", "The locality 2"],
			"province": "The province",
			"streetAddress": "The streetAddress",
			"postalCode": "The postalCode",
			"serialNumber": "The serialNumber",
			"commonName": "The commonName",
			"extraNames": [{"type":"1.2.840.113549.1.9.1", "value":"jane@example.com"}]
		}`)}, Name{
			Country:            []string{"The country"},
			Organization:       []string{"The organization"},
			OrganizationalUnit: []string{"The organizationalUnit 1", "The organizationalUnit 2"},
			Locality:           []string{"The locality 1", "The locality 2"},
			Province:           []string{"The province"},
			StreetAddress:      []string{"The streetAddress"},
			PostalCode:         []string{"The postalCode"},
			SerialNumber:       "The serialNumber",
			CommonName:         "The commonName",
			ExtraNames: []DistinguishedName{
				{Type: ObjectIdentifier{1, 2, 840, 113549, 1, 9, 1}, Value: "jane@example.com"},
			},
		}, false},
		{"number", args{[]byte("1234")}, Name{}, true},
		{"badJSON", args{[]byte("'badJSON'")}, Name{}, true},
	}
	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			var got Name
			if err := got.UnmarshalJSON(tt.args.data); (err != nil) != tt.wantErr {
				t.Errorf("Name.UnmarshalJSON() error = %v, wantErr %v", err, tt.wantErr)
			}
			if !reflect.DeepEqual(got, tt.want) {
				t.Errorf("Name.UnmarshalJSON() = %v, want %v", got, tt.want)
			}
		})
	}
}

func Test_newSubject(t *testing.T) {
	type args struct {
		n pkix.Name
	}
	tests := []struct {
		name string
		args args
		want Subject
	}{
		{"ok", args{pkix.Name{
			Country:            []string{"The country"},
			Organization:       []string{"The organization"},
			OrganizationalUnit: []string{"The organizationalUnit 1", "The organizationalUnit 2"},
			Locality:           []string{"The locality 1", "The locality 2"},
			Province:           []string{"The province"},
			StreetAddress:      []string{"The streetAddress"},
			PostalCode:         []string{"The postalCode"},
			SerialNumber:       "The serialNumber",
			CommonName:         "The commonName",
			Names: []pkix.AttributeTypeAndValue{
				{Type: asn1.ObjectIdentifier{1, 2, 840, 113549, 1, 9, 1}, Value: asn1.RawValue{Class: asn1.ClassUniversal, Tag: asn1.TagIA5String, Bytes: []byte("jane@example.com")}},
			},
		}}, Subject{
			Country:            []string{"The country"},
			Organization:       []string{"The organization"},
			OrganizationalUnit: []string{"The organizationalUnit 1", "The organizationalUnit 2"},
			Locality:           []string{"The locality 1", "The locality 2"},
			Province:           []string{"The province"},
			StreetAddress:      []string{"The streetAddress"},
			PostalCode:         []string{"The postalCode"},
			SerialNumber:       "The serialNumber",
			CommonName:         "The commonName",
			ExtraNames: []DistinguishedName{
				{Type: ObjectIdentifier{1, 2, 840, 113549, 1, 9, 1}, Value: asn1.RawValue{Class: asn1.ClassUniversal, Tag: asn1.TagIA5String, Bytes: []byte("jane@example.com")}},
			},
		}},
	}
	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			if got := newSubject(tt.args.n); !reflect.DeepEqual(got, tt.want) {
				t.Errorf("newSubject() = %v, want %v", got, tt.want)
			}
		})
	}
}

func TestSubject_UnmarshalJSON(t *testing.T) {
	type args struct {
		data []byte
	}
	tests := []struct {
		name    string
		args    args
		want    Subject
		wantErr bool
	}{
		{"null", args{[]byte("null")}, Subject{}, false},
		{"empty", args{[]byte("{}")}, Subject{}, false},
		{"commonName", args{[]byte(`"commonName"`)}, Subject{CommonName: "commonName"}, false},
		{"object", args{[]byte(`{
			"country": "The country",
			"organization": "The organization",
			"organizationalUnit": ["The organizationalUnit 1", "The organizationalUnit 2"],
			"locality": ["The locality 1", "The locality 2"],
			"province": "The province",
			"streetAddress": "The streetAddress",
			"postalCode": "The postalCode",
			"serialNumber": "The serialNumber",
			"commonName": "The commonName"
		}`)}, Subject{
			Country:            []string{"The country"},
			Organization:       []string{"The organization"},
			OrganizationalUnit: []string{"The organizationalUnit 1", "The organizationalUnit 2"},
			Locality:           []string{"The locality 1", "The locality 2"},
			Province:           []string{"The province"},
			StreetAddress:      []string{"The streetAddress"},
			PostalCode:         []string{"The postalCode"},
			SerialNumber:       "The serialNumber",
			CommonName:         "The commonName",
		}, false},
		{"number", args{[]byte("1234")}, Subject{}, true},
		{"badJSON", args{[]byte("'badJSON'")}, Subject{}, true},
	}
	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			var got Subject
			if err := got.UnmarshalJSON(tt.args.data); (err != nil) != tt.wantErr {
				t.Errorf("Subject.UnmarshalJSON() error = %v, wantErr %v", err, tt.wantErr)
			}
			if !reflect.DeepEqual(got, tt.want) {
				t.Errorf("Subject.UnmarshalJSON() = %v, want %v", got, tt.want)
			}
		})
	}
}

func TestSubject_Set(t *testing.T) {
	type fields struct {
		Country            MultiString
		Organization       MultiString
		OrganizationalUnit MultiString
		Locality           MultiString
		Province           MultiString
		StreetAddress      MultiString
		PostalCode         MultiString
		SerialNumber       string
		CommonName         string
	}
	type args struct {
		c *x509.Certificate
	}
	tests := []struct {
		name   string
		fields fields
		args   args
		want   *x509.Certificate
	}{
		{"ok", fields{
			Country:            []string{"The country"},
			Organization:       []string{"The organization"},
			OrganizationalUnit: []string{"The organizationalUnit 1", "The organizationalUnit 2"},
			Locality:           []string{"The locality 1", "The locality 2"},
			Province:           []string{"The province"},
			StreetAddress:      []string{"The streetAddress"},
			PostalCode:         []string{"The postalCode"},
			SerialNumber:       "The serialNumber",
			CommonName:         "The commonName",
		}, args{&x509.Certificate{}}, &x509.Certificate{
			Subject: pkix.Name{
				Country:            []string{"The country"},
				Organization:       []string{"The organization"},
				OrganizationalUnit: []string{"The organizationalUnit 1", "The organizationalUnit 2"},
				Locality:           []string{"The locality 1", "The locality 2"},
				Province:           []string{"The province"},
				StreetAddress:      []string{"The streetAddress"},
				PostalCode:         []string{"The postalCode"},
				SerialNumber:       "The serialNumber",
				CommonName:         "The commonName",
			},
		}},
		{"overwrite", fields{
			CommonName: "The commonName",
		}, args{&x509.Certificate{}}, &x509.Certificate{
			Subject: pkix.Name{
				CommonName: "The commonName",
			},
		}},
	}
	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			s := Subject{
				Country:            tt.fields.Country,
				Organization:       tt.fields.Organization,
				OrganizationalUnit: tt.fields.OrganizationalUnit,
				Locality:           tt.fields.Locality,
				Province:           tt.fields.Province,
				StreetAddress:      tt.fields.StreetAddress,
				PostalCode:         tt.fields.PostalCode,
				SerialNumber:       tt.fields.SerialNumber,
				CommonName:         tt.fields.CommonName,
			}
			s.Set(tt.args.c)
			if !reflect.DeepEqual(tt.args.c, tt.want) {
				t.Errorf("Subject.Set() = %v, want %v", tt.args.c, tt.want)
			}
		})
	}
}

func TestSubject_IsEmpty(t *testing.T) {
	type fields struct {
		Country            MultiString
		Organization       MultiString
		OrganizationalUnit MultiString
		Locality           MultiString
		Province           MultiString
		StreetAddress      MultiString
		PostalCode         MultiString
		SerialNumber       string
		CommonName         string
		ExtraNames         []DistinguishedName
	}
	tests := []struct {
		name   string
		fields fields
		want   bool
	}{
		{"ok", fields{}, true},
		{"country", fields{Country: []string{"The country"}}, false},
		{"commonName", fields{CommonName: "The commonName"}, false},
		{"all fields", fields{
			Country:            []string{"The country"},
			Organization:       []string{"The organization"},
			OrganizationalUnit: []string{"The organizationalUnit 1", "The organizationalUnit 2"},
			Locality:           []string{"The locality 1", "The locality 2"},
			Province:           []string{"The province"},
			StreetAddress:      []string{"The streetAddress"},
			PostalCode:         []string{"The postalCode"},
			SerialNumber:       "The serialNumber",
			CommonName:         "The commonName",
		}, false},
	}
	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			s := Subject{
				Country:            tt.fields.Country,
				Organization:       tt.fields.Organization,
				OrganizationalUnit: tt.fields.OrganizationalUnit,
				Locality:           tt.fields.Locality,
				Province:           tt.fields.Province,
				StreetAddress:      tt.fields.StreetAddress,
				PostalCode:         tt.fields.PostalCode,
				SerialNumber:       tt.fields.SerialNumber,
				CommonName:         tt.fields.CommonName,
				ExtraNames:         tt.fields.ExtraNames,
			}
			if got := s.IsEmpty(); got != tt.want {
				t.Errorf("Subject.IsEmpty() = %v, want %v", got, tt.want)
			}
		})
	}
}

func Test_newIssuer(t *testing.T) {
	type args struct {
		n pkix.Name
	}
	tests := []struct {
		name string
		args args
		want Issuer
	}{
		{"ok", args{pkix.Name{
			Country:            []string{"The country"},
			Organization:       []string{"The organization"},
			OrganizationalUnit: []string{"The organizationalUnit 1", "The organizationalUnit 2"},
			Locality:           []string{"The locality 1", "The locality 2"},
			Province:           []string{"The province"},
			StreetAddress:      []string{"The streetAddress"},
			PostalCode:         []string{"The postalCode"},
			SerialNumber:       "The serialNumber",
			CommonName:         "The commonName",
		}}, Issuer{
			Country:            []string{"The country"},
			Organization:       []string{"The organization"},
			OrganizationalUnit: []string{"The organizationalUnit 1", "The organizationalUnit 2"},
			Locality:           []string{"The locality 1", "The locality 2"},
			Province:           []string{"The province"},
			StreetAddress:      []string{"The streetAddress"},
			PostalCode:         []string{"The postalCode"},
			SerialNumber:       "The serialNumber",
			CommonName:         "The commonName",
		}},
	}
	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			if got := newIssuer(tt.args.n); !reflect.DeepEqual(got, tt.want) {
				t.Errorf("newIssuer() = %v, want %v", got, tt.want)
			}
		})
	}
}

func TestIssuer_UnmarshalJSON(t *testing.T) {
	type args struct {
		data []byte
	}
	tests := []struct {
		name    string
		args    args
		want    Issuer
		wantErr bool
	}{
		{"null", args{[]byte("null")}, Issuer{}, false},
		{"empty", args{[]byte("{}")}, Issuer{}, false},
		{"commonName", args{[]byte(`"commonName"`)}, Issuer{CommonName: "commonName"}, false},
		{"object", args{[]byte(`{
			"country": "The country",
			"organization": "The organization",
			"organizationalUnit": ["The organizationalUnit 1", "The organizationalUnit 2"],
			"locality": ["The locality 1", "The locality 2"],
			"province": "The province",
			"streetAddress": "The streetAddress",
			"postalCode": "The postalCode",
			"serialNumber": "The serialNumber",
			"commonName": "The commonName",
			"extraNames": [{"type":"1.2.840.113549.1.9.1", "value":"jane@example.com"}]
		}`)}, Issuer{
			Country:            []string{"The country"},
			Organization:       []string{"The organization"},
			OrganizationalUnit: []string{"The organizationalUnit 1", "The organizationalUnit 2"},
			Locality:           []string{"The locality 1", "The locality 2"},
			Province:           []string{"The province"},
			StreetAddress:      []string{"The streetAddress"},
			PostalCode:         []string{"The postalCode"},
			SerialNumber:       "The serialNumber",
			CommonName:         "The commonName",
			ExtraNames: []DistinguishedName{
				{Type: ObjectIdentifier{1, 2, 840, 113549, 1, 9, 1}, Value: "jane@example.com"},
			},
		}, false},
		{"number", args{[]byte("1234")}, Issuer{}, true},
		{"badJSON", args{[]byte("'badJSON'")}, Issuer{}, true},
	}
	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			var got Issuer
			if err := got.UnmarshalJSON(tt.args.data); (err != nil) != tt.wantErr {
				t.Errorf("Issuer.UnmarshalJSON() error = %v, wantErr %v", err, tt.wantErr)
			}
			if !reflect.DeepEqual(got, tt.want) {
				t.Errorf("Issuer.UnmarshalJSON() = %v, want %v", got, tt.want)
			}
		})
	}
}

func TestIssuer_Set(t *testing.T) {
	type fields struct {
		Country            MultiString
		Organization       MultiString
		OrganizationalUnit MultiString
		Locality           MultiString
		Province           MultiString
		StreetAddress      MultiString
		PostalCode         MultiString
		SerialNumber       string
		CommonName         string
		ExtraNames         []DistinguishedName
	}
	type args struct {
		c *x509.Certificate
	}
	tests := []struct {
		name   string
		fields fields
		args   args
		want   *x509.Certificate
	}{
		{"ok", fields{
			Country:            []string{"The country"},
			Organization:       []string{"The organization"},
			OrganizationalUnit: []string{"The organizationalUnit 1", "The organizationalUnit 2"},
			Locality:           []string{"The locality 1", "The locality 2"},
			Province:           []string{"The province"},
			StreetAddress:      []string{"The streetAddress"},
			PostalCode:         []string{"The postalCode"},
			SerialNumber:       "The serialNumber",
			CommonName:         "The commonName",
			ExtraNames: []DistinguishedName{
				{Type: ObjectIdentifier{1, 2, 840, 113549, 1, 9, 1}, Value: "jane@example.com"},
				{Type: ObjectIdentifier{1, 2, 3, 4}, Value: "custom@example.com"},
			},
		}, args{&x509.Certificate{}}, &x509.Certificate{
			Issuer: pkix.Name{
				Country:            []string{"The country"},
				Organization:       []string{"The organization"},
				OrganizationalUnit: []string{"The organizationalUnit 1", "The organizationalUnit 2"},
				Locality:           []string{"The locality 1", "The locality 2"},
				Province:           []string{"The province"},
				StreetAddress:      []string{"The streetAddress"},
				PostalCode:         []string{"The postalCode"},
				SerialNumber:       "The serialNumber",
				CommonName:         "The commonName",
				ExtraNames: []pkix.AttributeTypeAndValue{
					{Type: asn1.ObjectIdentifier{1, 2, 840, 113549, 1, 9, 1}, Value: asn1.RawValue{Class: asn1.ClassUniversal, Tag: asn1.TagIA5String, Bytes: []byte("jane@example.com")}},
					{Type: asn1.ObjectIdentifier{1, 2, 3, 4}, Value: "custom@example.com"},
				},
			},
		}},
		{"overwrite", fields{
			CommonName: "The commonName",
		}, args{&x509.Certificate{}}, &x509.Certificate{
			Issuer: pkix.Name{
				CommonName: "The commonName",
			},
		}},
	}
	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			i := Issuer{
				Country:            tt.fields.Country,
				Organization:       tt.fields.Organization,
				OrganizationalUnit: tt.fields.OrganizationalUnit,
				Locality:           tt.fields.Locality,
				Province:           tt.fields.Province,
				StreetAddress:      tt.fields.StreetAddress,
				PostalCode:         tt.fields.PostalCode,
				SerialNumber:       tt.fields.SerialNumber,
				CommonName:         tt.fields.CommonName,
				ExtraNames:         tt.fields.ExtraNames,
			}
			i.Set(tt.args.c)
			if !reflect.DeepEqual(tt.args.c, tt.want) {
				t.Errorf("Issuer.Set() = %v, want %v", tt.args.c, tt.want)
			}
		})
	}
}

func Test_NewExtraNames(t *testing.T) {
	type args struct {
		atvs []pkix.AttributeTypeAndValue
	}
	tests := []struct {
		name string
		args args
		want []DistinguishedName
	}{
		{"ok", args{[]pkix.AttributeTypeAndValue{
			{Type: asn1.ObjectIdentifier{2, 5, 4, 3}, Value: "The commonName"},
			{Type: asn1.ObjectIdentifier{1, 2, 840, 113549, 1, 9, 1}, Value: asn1.RawValue{Class: asn1.ClassUniversal, Tag: asn1.TagIA5String, Bytes: []byte("jane@example.com")}},
			{Type: asn1.ObjectIdentifier{1, 2, 3, 4}, Value: "custom@example.com"},
		}}, []DistinguishedName{
			{Type: ObjectIdentifier{1, 2, 840, 113549, 1, 9, 1}, Value: asn1.RawValue{Class: asn1.ClassUniversal, Tag: asn1.TagIA5String, Bytes: []byte("jane@example.com")}},
			{Type: ObjectIdentifier{1, 2, 3, 4}, Value: "custom@example.com"},
		}},
		{"ok nil", args{nil}, nil},
	}
	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			if got := NewExtraNames(tt.args.atvs); !reflect.DeepEqual(got, tt.want) {
				t.Errorf("newDistinguisedNames() = %v, want %v", got, tt.want)
			}
		})
	}
}

func Test_fromDistinguisedNames(t *testing.T) {
	type args struct {
		dns []DistinguishedName
	}
	tests := []struct {
		name string
		args args
		want []pkix.AttributeTypeAndValue
	}{
		{"ok", args{[]DistinguishedName{
			{Type: ObjectIdentifier{1, 2, 840, 113549, 1, 9, 1}, Value: "jane@example.com"},
			{Type: ObjectIdentifier{1, 2, 3, 4}, Value: "custom@example.com"},
		}}, []pkix.AttributeTypeAndValue{
			{Type: asn1.ObjectIdentifier{1, 2, 840, 113549, 1, 9, 1}, Value: asn1.RawValue{Class: asn1.ClassUniversal, Tag: asn1.TagIA5String, Bytes: []byte("jane@example.com")}},
			{Type: asn1.ObjectIdentifier{1, 2, 3, 4}, Value: "custom@example.com"},
		}},
		{"ok nil", args{nil}, nil},
	}
	for _, tt := range tests {
		t.Run(tt.name, func(t *testing.T) {
			if got := fromDistinguishedNames(tt.args.dns); !reflect.DeepEqual(got, tt.want) {
				t.Errorf("fromDistinguisedNames() = %v, want %v", got, tt.want)
			}
		})
	}
}