-
Notifications
You must be signed in to change notification settings - Fork 355
/
dn_test.go
418 lines (381 loc) · 12.7 KB
/
dn_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
package ldap
import (
"reflect"
"testing"
"github.com/stretchr/testify/assert"
)
func TestSuccessfulDNParsing(t *testing.T) {
testcases := map[string]DN{
"": {[]*RelativeDN{}},
"cn=Jim\\2C \\22Hasse Hö\\22 Hansson!,dc=dummy,dc=com": {[]*RelativeDN{
{[]*AttributeTypeAndValue{{"cn", "Jim, \"Hasse Hö\" Hansson!"}}},
{[]*AttributeTypeAndValue{{"dc", "dummy"}}},
{[]*AttributeTypeAndValue{{"dc", "com"}}},
}},
"UID=jsmith,DC=example,DC=net": {[]*RelativeDN{
{[]*AttributeTypeAndValue{{"UID", "jsmith"}}},
{[]*AttributeTypeAndValue{{"DC", "example"}}},
{[]*AttributeTypeAndValue{{"DC", "net"}}},
}},
"OU=Sales+CN=J. Smith,DC=example,DC=net": {[]*RelativeDN{
{[]*AttributeTypeAndValue{
{"OU", "Sales"},
{"CN", "J. Smith"},
}},
{[]*AttributeTypeAndValue{{"DC", "example"}}},
{[]*AttributeTypeAndValue{{"DC", "net"}}},
}},
"1.3.6.1.4.1.1466.0=#04024869": {[]*RelativeDN{
{[]*AttributeTypeAndValue{{"1.3.6.1.4.1.1466.0", "Hi"}}},
}},
"1.3.6.1.4.1.1466.0=#04024869,DC=net": {[]*RelativeDN{
{[]*AttributeTypeAndValue{{"1.3.6.1.4.1.1466.0", "Hi"}}},
{[]*AttributeTypeAndValue{{"DC", "net"}}},
}},
"CN=Lu\\C4\\8Di\\C4\\87": {[]*RelativeDN{
{[]*AttributeTypeAndValue{{"CN", "Lučić"}}},
}},
" CN = Lu\\C4\\8Di\\C4\\87 ": {[]*RelativeDN{
{[]*AttributeTypeAndValue{{"CN", "Lučić"}}},
}},
` A = 1 , B = 2 `: {[]*RelativeDN{
{[]*AttributeTypeAndValue{{"A", "1"}}},
{[]*AttributeTypeAndValue{{"B", "2"}}},
}},
` A = 1 + B = 2 `: {[]*RelativeDN{
{[]*AttributeTypeAndValue{
{"A", "1"},
{"B", "2"},
}},
}},
` \ \ A\ \ = \ \ 1\ \ , \ \ B\ \ = \ \ 2\ \ `: {[]*RelativeDN{
{[]*AttributeTypeAndValue{{" A ", " 1 "}}},
{[]*AttributeTypeAndValue{{" B ", " 2 "}}},
}},
` \ \ A\ \ = \ \ 1\ \ + \ \ B\ \ = \ \ 2\ \ `: {[]*RelativeDN{
{[]*AttributeTypeAndValue{
{" A ", " 1 "},
{" B ", " 2 "},
}},
}},
"A = 88 \t": {[]*RelativeDN{
{[]*AttributeTypeAndValue{
{"A", "88 \t"},
}},
}},
"A = 88 \n": {[]*RelativeDN{
{[]*AttributeTypeAndValue{
{"A", "88 \n"},
}},
}},
`cn=john.doe;dc=example,dc=net`: {[]*RelativeDN{
{[]*AttributeTypeAndValue{{"cn", "john.doe"}}},
{[]*AttributeTypeAndValue{{"dc", "example"}}},
{[]*AttributeTypeAndValue{{"dc", "net"}}},
}},
`cn=⭐;dc=❤️=\==,dc=❤️\\`: {[]*RelativeDN{
{[]*AttributeTypeAndValue{{"cn", "⭐"}}},
{[]*AttributeTypeAndValue{{"dc", "❤️==="}}},
{[]*AttributeTypeAndValue{{"dc", "❤️\\"}}},
}},
// Escaped `;` should not be treated as RDN
`cn=john.doe\;weird name,dc=example,dc=net`: {[]*RelativeDN{
{[]*AttributeTypeAndValue{{"cn", "john.doe;weird name"}}},
{[]*AttributeTypeAndValue{{"dc", "example"}}},
{[]*AttributeTypeAndValue{{"dc", "net"}}},
}},
`cn=ZXhhbXBsZVRleHQ=,dc=dummy,dc=com`: {[]*RelativeDN{
{[]*AttributeTypeAndValue{{"cn", "ZXhhbXBsZVRleHQ="}}},
{[]*AttributeTypeAndValue{{"dc", "dummy"}}},
{[]*AttributeTypeAndValue{{"dc", "com"}}},
}},
`1.3.6.1.4.1.1466.0=test`: {[]*RelativeDN{
{[]*AttributeTypeAndValue{{"1.3.6.1.4.1.1466.0", "test"}}},
}},
`1=#04024869`: {[]*RelativeDN{
{[]*AttributeTypeAndValue{{"1", "Hi"}}},
}},
`CN=James \"Jim\" Smith\, III,DC=example,DC=net`: {[]*RelativeDN{
{[]*AttributeTypeAndValue{{"CN", "James \"Jim\" Smith, III"}}},
{[]*AttributeTypeAndValue{{"DC", "example"}}},
{[]*AttributeTypeAndValue{{"DC", "net"}}},
}},
`CN=Before\0dAfter,DC=example,DC=net`: {[]*RelativeDN{
{[]*AttributeTypeAndValue{{"CN", "Before\x0dAfter"}}},
{[]*AttributeTypeAndValue{{"DC", "example"}}},
{[]*AttributeTypeAndValue{{"DC", "net"}}},
}},
`cn=foo-lon\e2\9d\a4\ef\b8\8f\,g.com,OU=Foo===Long;ou=Ba # rq,ou=Baz,o=C\; orp.+c=US`: {[]*RelativeDN{
{[]*AttributeTypeAndValue{{"cn", "foo-lon❤️,g.com"}}},
{[]*AttributeTypeAndValue{{"OU", "Foo===Long"}}},
{[]*AttributeTypeAndValue{{"ou", "Ba # rq"}}},
{[]*AttributeTypeAndValue{{"ou", "Baz"}}},
{[]*AttributeTypeAndValue{{"o", "C; orp."}, {"c", "US"}}},
}},
}
for test, answer := range testcases {
dn, err := ParseDN(test)
if err != nil {
t.Errorf("ParseDN failed for DN test '%s': %s", test, err)
continue
}
if !reflect.DeepEqual(dn, &answer) {
t.Errorf("Parsed DN '%s' is not equal to the expected structure", test)
t.Logf("Expected:")
for _, rdn := range answer.RDNs {
for _, attribute := range rdn.Attributes {
t.Logf(" #%v\n", attribute)
}
}
t.Logf("Actual:")
for _, rdn := range dn.RDNs {
for _, attribute := range rdn.Attributes {
t.Logf(" #%v\n", attribute)
}
}
}
}
}
func TestErrorDNParsing(t *testing.T) {
testcases := map[string]string{
"*": "DN ended with incomplete type, value pair",
"cn=Jim\\0Test": "failed to decode escaped character: encoding/hex: invalid byte: U+0054 'T'",
"cn=Jim\\0": "failed to decode escaped character: encoding/hex: invalid byte: 0",
"DC=example,=net": "DN ended with incomplete type, value pair",
"1=#0402486": "failed to decode BER encoding: encoding/hex: odd length hex string",
"test,DC=example,DC=com": "incomplete type, value pair",
"=test,DC=example,DC=com": "incomplete type, value pair",
"1.3.6.1.4.1.1466.0=test+": "DN ended with incomplete type, value pair",
`1.3.6.1.4.1.1466.0=test;`: "DN ended with incomplete type, value pair",
"1.3.6.1.4.1.1466.0=test+,": "incomplete type, value pair",
"DF=#6666666666665006838820013100000746939546349182108463491821809FBFFFFFFFFF": "failed to decode BER encoding: unexpected EOF",
}
for test, answer := range testcases {
_, err := ParseDN(test)
if err == nil {
t.Errorf("Expected '%s' to fail parsing but succeeded\n", test)
} else if err.Error() != answer {
t.Errorf("Unexpected error on: '%s':\nExpected: %s\nGot: %s\n", test, answer, err.Error())
}
}
}
func TestDNEqual(t *testing.T) {
testcases := []struct {
A string
B string
Equal bool
}{
// Exact match
{"", "", true},
{"o=A", "o=A", true},
{"o=A", "o=B", false},
{"o=A,o=B", "o=A,o=B", true},
{"o=A,o=B", "o=A,o=C", false},
{"o=A+o=B", "o=A+o=B", true},
{"o=A+o=B", "o=A+o=C", false},
// Case mismatch in type is ignored
{"o=A", "O=A", true},
{"o=A,o=B", "o=A,O=B", true},
{"o=A+o=B", "o=A+O=B", true},
// Case mismatch in value is significant
{"o=a", "O=A", false},
{"o=a,o=B", "o=A,O=B", false},
{"o=a+o=B", "o=A+O=B", false},
// Multi-valued RDN order mismatch is ignored
{"o=A+o=B", "O=B+o=A", true},
// Number of RDN attributes is significant
{"o=A+o=B", "O=B+o=A+O=B", false},
// Missing values are significant
{"o=A+o=B", "O=B+o=A+O=C", false}, // missing values matter
{"o=A+o=B+o=C", "O=B+o=A", false}, // missing values matter
// Whitespace tests
// Matching
{
"cn=John Doe, ou=People, dc=sun.com",
"cn=John Doe, ou=People, dc=sun.com",
true,
},
// Difference in leading/trailing chars is ignored
{
"cn=\\ John\\20Doe, ou=People, dc=sun.com",
"cn= \\ John Doe,ou=People,dc=sun.com",
true,
},
// Difference in values is significant
{
"cn=John Doe, ou=People, dc=sun.com",
"cn=John Doe, ou=People, dc=sun.com",
false,
},
// Test parsing of `;` for separating RDNs
{"cn=john;dc=example,dc=com", "cn=john,dc=example,dc=com", true}, // missing values matter
}
for i, tc := range testcases {
a, err := ParseDN(tc.A)
if err != nil {
t.Errorf("%d: %v", i, err)
continue
}
b, err := ParseDN(tc.B)
if err != nil {
t.Errorf("%d: %v", i, err)
continue
}
if expected, actual := tc.Equal, a.Equal(b); expected != actual {
t.Errorf("%d: when comparing %q and %q expected %v, got %v", i, a, b, expected, actual)
continue
}
if expected, actual := tc.Equal, b.Equal(a); expected != actual {
t.Errorf("%d: when comparing %q and %q expected %v, got %v", i, a, b, expected, actual)
continue
}
if expected, actual := a.Equal(b), a.String() == b.String(); expected != actual {
t.Errorf("%d: when asserting string comparison of %q and %q expected equal %v, got %v", i, a, b, expected, actual)
continue
}
}
}
func TestDNEqualFold(t *testing.T) {
testcases := []struct {
A string
B string
Equal bool
}{
// Match on case insensitive
{"o=A", "o=a", true},
{"o=A,o=b", "o=a,o=B", true},
{"o=a+o=B", "o=A+o=b", true},
{
"cn=users,ou=example,dc=com",
"cn=Users,ou=example,dc=com",
true,
},
// Match on case insensitive and case mismatch in type
{"o=A", "O=a", true},
{"o=A,o=b", "o=a,O=B", true},
{"o=a+o=B", "o=A+O=b", true},
}
for i, tc := range testcases {
a, err := ParseDN(tc.A)
if err != nil {
t.Errorf("%d: %v", i, err)
continue
}
b, err := ParseDN(tc.B)
if err != nil {
t.Errorf("%d: %v", i, err)
continue
}
if expected, actual := tc.Equal, a.EqualFold(b); expected != actual {
t.Errorf("%d: when comparing '%s' and '%s' expected %v, got %v", i, tc.A, tc.B, expected, actual)
continue
}
if expected, actual := tc.Equal, b.EqualFold(a); expected != actual {
t.Errorf("%d: when comparing '%s' and '%s' expected %v, got %v", i, tc.A, tc.B, expected, actual)
continue
}
}
}
func TestDNAncestor(t *testing.T) {
testcases := []struct {
A string
B string
Ancestor bool
}{
// Exact match returns false
{"", "", false},
{"o=A", "o=A", false},
{"o=A,o=B", "o=A,o=B", false},
{"o=A+o=B", "o=A+o=B", false},
// Mismatch
{"ou=C,ou=B,o=A", "ou=E,ou=D,ou=B,o=A", false},
// Descendant
{"ou=C,ou=B,o=A", "ou=E,ou=C,ou=B,o=A", true},
}
for i, tc := range testcases {
a, err := ParseDN(tc.A)
if err != nil {
t.Errorf("%d: %v", i, err)
continue
}
b, err := ParseDN(tc.B)
if err != nil {
t.Errorf("%d: %v", i, err)
continue
}
if expected, actual := tc.Ancestor, a.AncestorOf(b); expected != actual {
t.Errorf("%d: when comparing '%s' and '%s' expected %v, got %v", i, tc.A, tc.B, expected, actual)
continue
}
}
}
func BenchmarkParseSubject(b *testing.B) {
for n := 0; n < b.N; n++ {
_, err := ParseDN("DF=#6666666666665006838820013100000746939546349182108463491821809FBFFFFFFFFF")
if err == nil {
b.Fatal("expected error, but got none")
}
}
}
func TestMustKeepOrderInRawDerBytes(t *testing.T) {
subject := "cn=foo-long.com,ou=FooLong,ou=Barq,ou=Baz,ou=Dept.,o=Corp.,c=US"
rdnSeq, err := ParseDN(subject)
if err != nil {
t.Fatal(err)
}
expectedRdnSeq := &DN{
[]*RelativeDN{
{[]*AttributeTypeAndValue{{Type: "cn", Value: "foo-long.com"}}},
{[]*AttributeTypeAndValue{{Type: "ou", Value: "FooLong"}}},
{[]*AttributeTypeAndValue{{Type: "ou", Value: "Barq"}}},
{[]*AttributeTypeAndValue{{Type: "ou", Value: "Baz"}}},
{[]*AttributeTypeAndValue{{Type: "ou", Value: "Dept."}}},
{[]*AttributeTypeAndValue{{Type: "o", Value: "Corp."}}},
{[]*AttributeTypeAndValue{{Type: "c", Value: "US"}}},
},
}
assert.Equal(t, expectedRdnSeq, rdnSeq)
assert.Equal(t, subject, rdnSeq.String())
}
func TestRoundTripLiteralSubject(t *testing.T) {
rdnSequences := map[string]string{
"cn=foo-long.com,ou=FooLong,ou=Barq,ou=Baz,ou=Dept.,o=Corp.,c=US": "cn=foo-long.com,ou=FooLong,ou=Barq,ou=Baz,ou=Dept.,o=Corp.,c=US",
"cn=foo-lon❤️\\,g.com,ou=Foo===Long,ou=Ba # rq,ou=Baz,o=C\\; orp.,c=US": "cn=foo-lon\\e2\\9d\\a4\\ef\\b8\\8f\\,g.com,ou=Foo===Long,ou=Ba # rq,ou=Baz,o=C\\; orp.,c=US",
"cn=fo\x00o-long.com,ou=\x04FooLong": "cn=fo\\00o-long.com,ou=\\04FooLong",
}
for subjIn, subjOut := range rdnSequences {
t.Logf("Testing subject: %s", subjIn)
newRDNSeq, err := ParseDN(subjIn)
if err != nil {
t.Fatal(err)
}
assert.Equal(t, subjOut, newRDNSeq.String())
}
}
func TestDecodeString(t *testing.T) {
successTestcases := map[string]string{
"foo-long.com": "foo-long.com",
"foo-lon❤️\\,g.com": "foo-lon❤️,g.com",
"fo\x00o-long.com": "fo\x00o-long.com",
"fo\\00o-long.com": "fo\x00o-long.com",
}
for encoded, decoded := range successTestcases {
t.Logf("Testing encoded string: %s", encoded)
decodedString, err := decodeString(encoded)
if err != nil {
t.Fatal(err)
}
assert.Equal(t, decoded, decodedString)
}
errorTestcases := map[string]string{
"fo\\": "got corrupted escaped character: 'fo\\'",
"fo\\0": "failed to decode escaped character: encoding/hex: invalid byte: 0",
"fo\\UU️o-long.com": "failed to decode escaped character: encoding/hex: invalid byte: U+0055 'U'",
"fo\\0❤️o-long.com": "failed to decode escaped character: invalid byte: 0❤",
}
for encoded, expectedError := range errorTestcases {
t.Logf("Testing encoded string: %s", encoded)
_, err := decodeString(encoded)
assert.EqualError(t, err, expectedError)
}
}