forked from prebid/prebid-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsyncer_test.go
811 lines (766 loc) · 27.1 KB
/
syncer_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
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
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
package usersync
import (
"testing"
"text/template"
"github.com/prebid/prebid-server/v3/config"
"github.com/prebid/prebid-server/v3/macros"
"github.com/stretchr/testify/assert"
)
func TestNewSyncer(t *testing.T) {
var (
supportCORS = true
hostConfig = config.UserSync{ExternalURL: "http://host.com", RedirectURL: "{{.ExternalURL}}/host"}
macroValues = macros.UserSyncPrivacy{GDPR: "A", GDPRConsent: "B", USPrivacy: "C"}
iframeConfig = &config.SyncerEndpoint{URL: "https://bidder.com/iframe?redirect={{.RedirectURL}}"}
redirectConfig = &config.SyncerEndpoint{URL: "https://bidder.com/redirect?redirect={{.RedirectURL}}"}
errParseConfig = &config.SyncerEndpoint{URL: "{{malformed}}"}
errInvalidConfig = &config.SyncerEndpoint{URL: "notAURL:{{.RedirectURL}}"}
)
testCases := []struct {
description string
givenKey string
givenBidderName string
givenIFrameConfig *config.SyncerEndpoint
givenRedirectConfig *config.SyncerEndpoint
givenExternalURL string
givenForceType string
expectedError string
expectedDefault SyncType
expectedIFrame string
expectedRedirect string
}{
{
description: "Missing Key",
givenKey: "",
givenBidderName: "",
givenIFrameConfig: iframeConfig,
givenRedirectConfig: nil,
expectedError: "key is required",
},
{
description: "Missing Endpoints",
givenKey: "a",
givenBidderName: "bidderA",
givenIFrameConfig: nil,
givenRedirectConfig: nil,
expectedError: "at least one endpoint (iframe and/or redirect) is required",
},
{
description: "IFrame & Redirect Endpoints",
givenKey: "a",
givenBidderName: "bidderA",
givenIFrameConfig: iframeConfig,
givenRedirectConfig: redirectConfig,
expectedDefault: SyncTypeIFrame,
expectedIFrame: "https://bidder.com/iframe?redirect=http%3A%2F%2Fhost.com%2Fhost",
expectedRedirect: "https://bidder.com/redirect?redirect=http%3A%2F%2Fhost.com%2Fhost",
},
{
description: "IFrame - Parse Error",
givenKey: "a",
givenBidderName: "bidderA",
givenIFrameConfig: errParseConfig,
givenRedirectConfig: nil,
expectedError: "iframe template: biddera_usersync_url:1: function \"malformed\" not defined",
},
{
description: "IFrame - Validation Error",
givenKey: "a",
givenBidderName: "bidderA",
givenIFrameConfig: errInvalidConfig,
givenRedirectConfig: nil,
expectedError: "iframe composed url: \"notAURL:http%3A%2F%2Fhost.com%2Fhost\" is invalid",
},
{
description: "Redirect - Parse Error",
givenKey: "a",
givenBidderName: "bidderA",
givenIFrameConfig: nil,
givenRedirectConfig: errParseConfig,
expectedError: "redirect template: biddera_usersync_url:1: function \"malformed\" not defined",
},
{
description: "Redirect - Validation Error",
givenKey: "a",
givenBidderName: "bidderA",
givenIFrameConfig: nil,
givenRedirectConfig: errInvalidConfig,
expectedError: "redirect composed url: \"notAURL:http%3A%2F%2Fhost.com%2Fhost\" is invalid",
},
{
description: "Syncer Level External URL",
givenKey: "a",
givenBidderName: "bidderA",
givenExternalURL: "http://syncer.com",
givenIFrameConfig: iframeConfig,
givenRedirectConfig: redirectConfig,
expectedDefault: SyncTypeIFrame,
expectedIFrame: "https://bidder.com/iframe?redirect=http%3A%2F%2Fsyncer.com%2Fhost",
expectedRedirect: "https://bidder.com/redirect?redirect=http%3A%2F%2Fsyncer.com%2Fhost",
},
}
for _, test := range testCases {
syncerConfig := config.Syncer{
Key: test.givenKey,
SupportCORS: &supportCORS,
IFrame: test.givenIFrameConfig,
Redirect: test.givenRedirectConfig,
ExternalURL: test.givenExternalURL,
}
result, err := NewSyncer(hostConfig, syncerConfig, test.givenBidderName)
if test.expectedError == "" {
assert.NoError(t, err, test.description+":err")
if assert.IsType(t, standardSyncer{}, result, test.description+":result_type") {
result := result.(standardSyncer)
assert.Equal(t, test.givenKey, result.key, test.description+":key")
assert.Equal(t, supportCORS, result.supportCORS, test.description+":cors")
assert.Equal(t, test.expectedDefault, result.defaultSyncType, test.description+":default_sync")
if test.expectedIFrame == "" {
assert.Nil(t, result.iframe, test.description+":iframe")
} else {
iframeRendered, err := macros.ResolveMacros(result.iframe, macroValues)
if assert.NoError(t, err, test.description+":iframe_render") {
assert.Equal(t, test.expectedIFrame, iframeRendered, test.description+":iframe")
}
}
if test.expectedRedirect == "" {
assert.Nil(t, result.redirect, test.description+":redirect")
} else {
redirectRendered, err := macros.ResolveMacros(result.redirect, macroValues)
if assert.NoError(t, err, test.description+":redirect_render") {
assert.Equal(t, test.expectedRedirect, redirectRendered, test.description+":redirect")
}
}
}
} else {
assert.EqualError(t, err, test.expectedError, test.description+":err")
assert.Empty(t, result)
}
}
}
func TestResolveDefaultSyncType(t *testing.T) {
anyEndpoint := &config.SyncerEndpoint{}
testCases := []struct {
description string
givenConfig config.Syncer
expectedSyncType SyncType
}{
{
description: "IFrame & Redirect",
givenConfig: config.Syncer{IFrame: anyEndpoint, Redirect: anyEndpoint},
expectedSyncType: SyncTypeIFrame,
},
{
description: "IFrame Only",
givenConfig: config.Syncer{IFrame: anyEndpoint, Redirect: nil},
expectedSyncType: SyncTypeIFrame,
},
{
description: "Redirect Only - Redirect Default",
givenConfig: config.Syncer{IFrame: nil, Redirect: anyEndpoint},
expectedSyncType: SyncTypeRedirect,
},
}
for _, test := range testCases {
result := resolveDefaultSyncType(test.givenConfig)
assert.Equal(t, test.expectedSyncType, result, test.description+":result")
}
}
func TestBuildTemplate(t *testing.T) {
var (
key = "anyKey"
syncTypeValue = "x"
hostConfig = config.UserSync{ExternalURL: "http://host.com", RedirectURL: "{{.ExternalURL}}/host"}
macroValues = macros.UserSyncPrivacy{GDPR: "A", GDPRConsent: "B", USPrivacy: "C", GPP: "D", GPPSID: "1"}
)
testCases := []struct {
description string
givenHostConfig config.UserSync
givenSyncerExternalURL string
givenSyncerEndpoint config.SyncerEndpoint
expectedError string
expectedRendered string
}{
{
description: "No Composed Macros",
givenSyncerEndpoint: config.SyncerEndpoint{
URL: "hasNoComposedMacros,gdpr={{.GDPR}}",
},
expectedRendered: "hasNoComposedMacros,gdpr=A",
},
{
description: "All Composed Macros - SyncerKey",
givenSyncerEndpoint: config.SyncerEndpoint{
URL: "https://bidder.com/sync?redirect={{.RedirectURL}}",
RedirectURL: "{{.ExternalURL}}/setuid?bidder={{.SyncerKey}}&f={{.SyncType}}&gdpr={{.GDPR}}&gpp={{.GPP}}&gpp_sid={{.GPPSID}}&uid={{.UserMacro}}",
ExternalURL: "http://syncer.com",
UserMacro: "$UID$",
},
expectedRendered: "https://bidder.com/sync?redirect=http%3A%2F%2Fsyncer.com%2Fsetuid%3Fbidder%3DanyKey%26f%3Dx%26gdpr%3DA%26gpp%3DD%26gpp_sid%3D1%26uid%3D%24UID%24",
},
{
description: "All Composed Macros - BidderName",
givenSyncerEndpoint: config.SyncerEndpoint{
URL: "https://bidder.com/sync?redirect={{.RedirectURL}}",
RedirectURL: "{{.ExternalURL}}/setuid?bidder={{.BidderName}}&f={{.SyncType}}&gdpr={{.GDPR}}&gpp={{.GPP}}&gpp_sid={{.GPPSID}}&uid={{.UserMacro}}",
ExternalURL: "http://syncer.com",
UserMacro: "$UID$",
},
expectedRendered: "https://bidder.com/sync?redirect=http%3A%2F%2Fsyncer.com%2Fsetuid%3Fbidder%3DanyKey%26f%3Dx%26gdpr%3DA%26gpp%3DD%26gpp_sid%3D1%26uid%3D%24UID%24",
},
{
description: "Redirect URL + External URL From Host",
givenSyncerEndpoint: config.SyncerEndpoint{
URL: "https://bidder.com/sync?redirect={{.RedirectURL}}",
},
expectedRendered: "https://bidder.com/sync?redirect=http%3A%2F%2Fhost.com%2Fhost",
},
{
description: "Redirect URL From Syncer",
givenSyncerEndpoint: config.SyncerEndpoint{
URL: "https://bidder.com/sync?redirect={{.RedirectURL}}",
RedirectURL: "{{.ExternalURL}}/syncer",
},
expectedRendered: "https://bidder.com/sync?redirect=http%3A%2F%2Fhost.com%2Fsyncer",
},
{
description: "External URL From Host",
givenSyncerEndpoint: config.SyncerEndpoint{
URL: "https://bidder.com/sync?redirect={{.RedirectURL}}",
ExternalURL: "http://syncer.com",
},
expectedRendered: "https://bidder.com/sync?redirect=http%3A%2F%2Fsyncer.com%2Fhost",
},
{
description: "External URL From Syncer Config",
givenSyncerExternalURL: "http://syncershared.com",
givenSyncerEndpoint: config.SyncerEndpoint{
URL: "https://bidder.com/sync?redirect={{.RedirectURL}}",
},
expectedRendered: "https://bidder.com/sync?redirect=http%3A%2F%2Fsyncershared.com%2Fhost",
},
{
description: "External URL From Syncer Config (Most Specific Wins)",
givenSyncerExternalURL: "http://syncershared.com",
givenSyncerEndpoint: config.SyncerEndpoint{
URL: "https://bidder.com/sync?redirect={{.RedirectURL}}",
ExternalURL: "http://syncer.com",
},
expectedRendered: "https://bidder.com/sync?redirect=http%3A%2F%2Fsyncer.com%2Fhost",
},
{
description: "Template Parse Error",
givenSyncerEndpoint: config.SyncerEndpoint{
URL: "{{malformed}}",
},
expectedError: "template: anykey_usersync_url:1: function \"malformed\" not defined",
},
{
description: "User Macro Is Go Template Macro-Like",
givenSyncerEndpoint: config.SyncerEndpoint{
URL: "https://bidder.com/sync?redirect={{.RedirectURL}}",
RedirectURL: "{{.ExternalURL}}/setuid?bidder={{.SyncerKey}}&f={{.SyncType}}&gdpr={{.GDPR}}&uid={{.UserMacro}}",
UserMacro: "{{UID}}",
},
expectedRendered: "https://bidder.com/sync?redirect=http%3A%2F%2Fhost.com%2Fsetuid%3Fbidder%3DanyKey%26f%3Dx%26gdpr%3DA%26uid%3D%7B%7BUID%7D%7D",
},
// The following tests protect against the "\"." literal character vs the "." character class in regex. Literal
// value which use {{ }} but do not match Go's naming pattern of {{ .Name }} are escaped.
{
description: "Invalid Macro - Redirect URL",
givenSyncerEndpoint: config.SyncerEndpoint{
URL: "https://bidder.com/sync?redirect={{xRedirectURL}}",
},
expectedError: "template: anykey_usersync_url:1: function \"xRedirectURL\" not defined",
},
{
description: "Macro-Like Literal Value - External URL",
givenSyncerEndpoint: config.SyncerEndpoint{
URL: "https://bidder.com/sync?redirect={{.RedirectURL}}",
RedirectURL: "{{xExternalURL}}",
},
expectedRendered: "https://bidder.com/sync?redirect=%7B%7BxExternalURL%7D%7D",
},
{
description: "Macro-Like Literal Value - Syncer Key",
givenSyncerEndpoint: config.SyncerEndpoint{
URL: "https://bidder.com/sync?redirect={{.RedirectURL}}",
RedirectURL: "{{xSyncerKey}}",
},
expectedRendered: "https://bidder.com/sync?redirect=%7B%7BxSyncerKey%7D%7D",
},
{
description: "Macro-Like Literal Value - Sync Type",
givenSyncerEndpoint: config.SyncerEndpoint{
URL: "https://bidder.com/sync?redirect={{.RedirectURL}}",
RedirectURL: "{{xSyncType}}",
},
expectedRendered: "https://bidder.com/sync?redirect=%7B%7BxSyncType%7D%7D",
},
{
description: "Macro-Like Literal Value - User Macro",
givenSyncerEndpoint: config.SyncerEndpoint{
URL: "https://bidder.com/sync?redirect={{.RedirectURL}}",
RedirectURL: "{{xUserMacro}}",
},
expectedRendered: "https://bidder.com/sync?redirect=%7B%7BxUserMacro%7D%7D",
},
}
for _, test := range testCases {
result, err := buildTemplate(key, syncTypeValue, hostConfig, test.givenSyncerExternalURL, test.givenSyncerEndpoint, "")
if test.expectedError == "" {
assert.NoError(t, err, test.description+":err")
resultRendered, err := macros.ResolveMacros(result, macroValues)
if assert.NoError(t, err, test.description+":template_render") {
assert.Equal(t, test.expectedRendered, resultRendered, test.description+":template")
}
} else {
assert.EqualError(t, err, test.expectedError, test.description+":err")
}
}
}
func TestChooseExternalURL(t *testing.T) {
testCases := []struct {
description string
givenSyncerEndpointURL string
givenSyncerURL string
givenHostConfigURL string
expected string
}{
{
description: "Syncer Endpoint Chosen",
givenSyncerEndpointURL: "a",
givenSyncerURL: "b",
givenHostConfigURL: "c",
expected: "a",
},
{
description: "Syncer Chosen",
givenSyncerEndpointURL: "",
givenSyncerURL: "b",
givenHostConfigURL: "c",
expected: "b",
},
{
description: "Host Config Chosen",
givenSyncerEndpointURL: "",
givenSyncerURL: "",
givenHostConfigURL: "c",
expected: "c",
},
{
description: "All Empty",
givenSyncerEndpointURL: "",
givenSyncerURL: "",
givenHostConfigURL: "",
expected: "",
},
}
for _, test := range testCases {
result := chooseExternalURL(test.givenSyncerEndpointURL, test.givenSyncerURL, test.givenHostConfigURL)
assert.Equal(t, test.expected, result, test.description)
}
}
func TestEscapeTemplate(t *testing.T) {
testCases := []struct {
description string
given string
expected string
}{
{
description: "Macro Only",
given: "{{.Macro}}",
expected: "{{.Macro}}",
},
{
description: "Text Only",
given: "/a",
expected: "%2Fa",
},
{
description: "Start Only",
given: "&a{{.Macro1}}",
expected: "%26a{{.Macro1}}",
},
{
description: "Middle Only",
given: "{{.Macro1}}&a{{.Macro2}}",
expected: "{{.Macro1}}%26a{{.Macro2}}",
},
{
description: "End Only",
given: "{{.Macro1}}&a",
expected: "{{.Macro1}}%26a",
},
{
description: "Start / Middle / End",
given: "&a{{.Macro1}}/b{{.Macro2}}&c",
expected: "%26a{{.Macro1}}%2Fb{{.Macro2}}%26c",
},
{
description: "Characters In Macro Not Escaped",
given: "{{.Macro&}}",
expected: "{{.Macro&}}",
},
{
description: "Macro Whitespace Insensitive",
given: " &a {{ .Macro1 }} /b ",
expected: "+%26a+{{ .Macro1 }}+%2Fb+",
},
{
description: "Double Curly Braces, But Not Macro",
given: "{{Macro}}",
expected: "%7B%7BMacro%7D%7D",
},
}
for _, test := range testCases {
result := escapeTemplate(test.given)
assert.Equal(t, test.expected, result, test.description)
}
}
func TestValidateTemplate(t *testing.T) {
testCases := []struct {
description string
given *template.Template
expectedError string
}{
{
description: "Contains Unrecognized Macro",
given: template.Must(template.New("test").Parse("invalid:{{.DoesNotExist}}")),
expectedError: "template: test:1:10: executing \"test\" at <.DoesNotExist>: can't evaluate field DoesNotExist in type macros.UserSyncPrivacy",
},
{
description: "Not A Url",
given: template.Must(template.New("test").Parse("not-a-url,gdpr:{{.GDPR}},gdprconsent:{{.GDPRConsent}},ccpa:{{.USPrivacy}}")),
expectedError: "composed url: \"not-a-url,gdpr:anyGDPR,gdprconsent:anyGDPRConsent,ccpa:anyCCPAConsent\" is invalid",
},
{
description: "Valid",
given: template.Must(template.New("test").Parse("http://server.com/sync?gdpr={{.GDPR}}&gdprconsent={{.GDPRConsent}}&ccpa={{.USPrivacy}}")),
expectedError: "",
},
}
for _, test := range testCases {
err := validateTemplate(test.given)
if test.expectedError == "" {
assert.NoError(t, err, test.description)
} else {
assert.EqualError(t, err, test.expectedError, test.description)
}
}
}
func TestSyncerKey(t *testing.T) {
syncer := standardSyncer{key: "a"}
assert.Equal(t, "a", syncer.Key())
}
func TestSyncerDefaultSyncType(t *testing.T) {
syncer := standardSyncer{defaultSyncType: SyncTypeRedirect}
assert.Equal(t, SyncTypeRedirect, syncer.DefaultResponseFormat())
}
func TestSyncerDefaultResponseFormat(t *testing.T) {
testCases := []struct {
description string
givenSyncer standardSyncer
expectedSyncType SyncType
}{
{
description: "IFrame",
givenSyncer: standardSyncer{formatOverride: config.SyncResponseFormatIFrame},
expectedSyncType: SyncTypeIFrame,
},
{
description: "Default with Redirect Override",
givenSyncer: standardSyncer{defaultSyncType: SyncTypeIFrame, formatOverride: config.SyncResponseFormatRedirect},
expectedSyncType: SyncTypeRedirect,
},
{
description: "Default with no override",
givenSyncer: standardSyncer{defaultSyncType: SyncTypeRedirect},
expectedSyncType: SyncTypeRedirect,
},
}
for _, test := range testCases {
syncType := test.givenSyncer.DefaultResponseFormat()
assert.Equal(t, test.expectedSyncType, syncType, test.description)
}
}
func TestSyncerSupportsType(t *testing.T) {
endpointTemplate := template.Must(template.New("test").Parse("iframe"))
testCases := []struct {
description string
givenSyncTypes []SyncType
givenIFrameTemplate *template.Template
givenRedirectTemplate *template.Template
expectedResult bool
}{
{
description: "All Available - None",
givenSyncTypes: []SyncType{},
givenIFrameTemplate: endpointTemplate,
givenRedirectTemplate: endpointTemplate,
expectedResult: false,
},
{
description: "All Available - One",
givenSyncTypes: []SyncType{SyncTypeIFrame},
givenIFrameTemplate: endpointTemplate,
givenRedirectTemplate: endpointTemplate,
expectedResult: true,
},
{
description: "All Available - Many",
givenSyncTypes: []SyncType{SyncTypeIFrame, SyncTypeRedirect},
givenIFrameTemplate: endpointTemplate,
givenRedirectTemplate: endpointTemplate,
expectedResult: true,
},
{
description: "One Available - None",
givenSyncTypes: []SyncType{},
givenIFrameTemplate: endpointTemplate,
givenRedirectTemplate: nil,
expectedResult: false,
},
{
description: "One Available - One - Supported",
givenSyncTypes: []SyncType{SyncTypeIFrame},
givenIFrameTemplate: endpointTemplate,
givenRedirectTemplate: nil,
expectedResult: true,
},
{
description: "One Available - One - Not Supported",
givenSyncTypes: []SyncType{SyncTypeRedirect},
givenIFrameTemplate: endpointTemplate,
givenRedirectTemplate: nil,
expectedResult: false,
},
{
description: "One Available - Many",
givenSyncTypes: []SyncType{SyncTypeIFrame, SyncTypeRedirect},
givenIFrameTemplate: endpointTemplate,
givenRedirectTemplate: nil,
expectedResult: true,
},
}
for _, test := range testCases {
syncer := standardSyncer{
iframe: test.givenIFrameTemplate,
redirect: test.givenRedirectTemplate,
}
result := syncer.SupportsType(test.givenSyncTypes)
assert.Equal(t, test.expectedResult, result, test.description)
}
}
func TestSyncerFilterSupportedSyncTypes(t *testing.T) {
endpointTemplate := template.Must(template.New("test").Parse("iframe"))
testCases := []struct {
description string
givenSyncTypes []SyncType
givenIFrameTemplate *template.Template
givenRedirectTemplate *template.Template
expectedSyncTypes []SyncType
}{
{
description: "All Available - None",
givenSyncTypes: []SyncType{},
givenIFrameTemplate: endpointTemplate,
givenRedirectTemplate: endpointTemplate,
expectedSyncTypes: []SyncType{},
},
{
description: "All Available - One",
givenSyncTypes: []SyncType{SyncTypeIFrame},
givenIFrameTemplate: endpointTemplate,
givenRedirectTemplate: endpointTemplate,
expectedSyncTypes: []SyncType{SyncTypeIFrame},
},
{
description: "All Available - Many",
givenSyncTypes: []SyncType{SyncTypeIFrame, SyncTypeRedirect},
givenIFrameTemplate: endpointTemplate,
givenRedirectTemplate: endpointTemplate,
expectedSyncTypes: []SyncType{SyncTypeIFrame, SyncTypeRedirect},
},
{
description: "One Available - None",
givenSyncTypes: []SyncType{},
givenIFrameTemplate: nil,
givenRedirectTemplate: endpointTemplate,
expectedSyncTypes: []SyncType{},
},
{
description: "One Available - One - Not Supported",
givenSyncTypes: []SyncType{SyncTypeIFrame},
givenIFrameTemplate: nil,
givenRedirectTemplate: endpointTemplate,
expectedSyncTypes: []SyncType{},
},
{
description: "One Available - One - Supported",
givenSyncTypes: []SyncType{SyncTypeRedirect},
givenIFrameTemplate: nil,
givenRedirectTemplate: endpointTemplate,
expectedSyncTypes: []SyncType{SyncTypeRedirect},
},
{
description: "One Available - Many",
givenSyncTypes: []SyncType{SyncTypeIFrame, SyncTypeRedirect},
givenIFrameTemplate: nil,
givenRedirectTemplate: endpointTemplate,
expectedSyncTypes: []SyncType{SyncTypeRedirect},
},
}
for _, test := range testCases {
syncer := standardSyncer{
iframe: test.givenIFrameTemplate,
redirect: test.givenRedirectTemplate,
}
result := syncer.filterSupportedSyncTypes(test.givenSyncTypes)
assert.ElementsMatch(t, test.expectedSyncTypes, result, test.description)
}
}
func TestSyncerGetSync(t *testing.T) {
var (
iframeTemplate = template.Must(template.New("test").Parse("iframe,gdpr:{{.GDPR}},gdprconsent:{{.GDPRConsent}},ccpa:{{.USPrivacy}}"))
redirectTemplate = template.Must(template.New("test").Parse("redirect,gdpr:{{.GDPR}},gdprconsent:{{.GDPRConsent}},ccpa:{{.USPrivacy}}"))
malformedTemplate = template.Must(template.New("test").Parse("malformed,invalid:{{.DoesNotExist}}"))
)
testCases := []struct {
description string
givenSyncer standardSyncer
givenSyncTypes []SyncType
givenMacros macros.UserSyncPrivacy
expectedError string
expectedSync Sync
}{
{
description: "No Sync Types",
givenSyncer: standardSyncer{iframe: iframeTemplate, redirect: redirectTemplate},
givenSyncTypes: []SyncType{},
givenMacros: macros.UserSyncPrivacy{GDPR: "A", GDPRConsent: "B", USPrivacy: "C"},
expectedError: "no sync types provided",
},
{
description: "IFrame",
givenSyncer: standardSyncer{iframe: iframeTemplate, redirect: redirectTemplate},
givenSyncTypes: []SyncType{SyncTypeIFrame},
givenMacros: macros.UserSyncPrivacy{GDPR: "A", GDPRConsent: "B", USPrivacy: "C"},
expectedSync: Sync{URL: "iframe,gdpr:A,gdprconsent:B,ccpa:C", Type: SyncTypeIFrame, SupportCORS: false},
},
{
description: "Redirect",
givenSyncer: standardSyncer{iframe: iframeTemplate, redirect: redirectTemplate},
givenSyncTypes: []SyncType{SyncTypeRedirect},
givenMacros: macros.UserSyncPrivacy{GDPR: "A", GDPRConsent: "B", USPrivacy: "C"},
expectedSync: Sync{URL: "redirect,gdpr:A,gdprconsent:B,ccpa:C", Type: SyncTypeRedirect, SupportCORS: false},
},
{
description: "Macro Error",
givenSyncer: standardSyncer{iframe: malformedTemplate},
givenSyncTypes: []SyncType{SyncTypeIFrame},
givenMacros: macros.UserSyncPrivacy{GDPR: "A", GDPRConsent: "B", USPrivacy: "C"},
expectedError: "template: test:1:20: executing \"test\" at <.DoesNotExist>: can't evaluate field DoesNotExist in type macros.UserSyncPrivacy",
},
}
for _, test := range testCases {
result, err := test.givenSyncer.GetSync(test.givenSyncTypes, test.givenMacros)
if test.expectedError == "" {
assert.NoError(t, err, test.description+":err")
assert.Equal(t, test.expectedSync, result, test.description+":sync")
} else {
assert.EqualError(t, err, test.expectedError, test.description+":err")
}
}
}
func TestSyncerChooseSyncType(t *testing.T) {
endpointTemplate := template.Must(template.New("test").Parse("iframe"))
testCases := []struct {
description string
givenSyncTypes []SyncType
givenDefaultSyncType SyncType
givenIFrameTemplate *template.Template
givenRedirectTemplate *template.Template
expectedError string
expectedSyncType SyncType
}{
{
description: "None Available - Error",
givenSyncTypes: []SyncType{},
givenDefaultSyncType: SyncTypeRedirect,
givenIFrameTemplate: endpointTemplate,
givenRedirectTemplate: endpointTemplate,
expectedError: "no sync types provided",
},
{
description: "All Available - Choose Default",
givenSyncTypes: []SyncType{SyncTypeIFrame, SyncTypeRedirect},
givenDefaultSyncType: SyncTypeRedirect,
givenIFrameTemplate: endpointTemplate,
givenRedirectTemplate: endpointTemplate,
expectedSyncType: SyncTypeRedirect,
},
{
description: "Default Not Available - Choose Other One",
givenSyncTypes: []SyncType{SyncTypeIFrame},
givenDefaultSyncType: SyncTypeRedirect,
givenIFrameTemplate: endpointTemplate,
givenRedirectTemplate: endpointTemplate,
expectedSyncType: SyncTypeIFrame,
},
{
description: "None Supported - Error",
givenSyncTypes: []SyncType{SyncTypeIFrame},
givenDefaultSyncType: SyncTypeRedirect,
givenIFrameTemplate: nil,
givenRedirectTemplate: endpointTemplate,
expectedError: "no sync types supported",
},
}
for _, test := range testCases {
syncer := standardSyncer{
defaultSyncType: test.givenDefaultSyncType,
iframe: test.givenIFrameTemplate,
redirect: test.givenRedirectTemplate,
}
result, err := syncer.chooseSyncType(test.givenSyncTypes)
if test.expectedError == "" {
assert.NoError(t, err, test.description+":err")
assert.Equal(t, test.expectedSyncType, result, test.description+":sync_type")
} else {
assert.EqualError(t, err, test.expectedError, test.description+":err")
}
}
}
func TestSyncerChooseTemplate(t *testing.T) {
var (
iframeTemplate = template.Must(template.New("test").Parse("iframe"))
redirectTemplate = template.Must(template.New("test").Parse("redirect"))
)
testCases := []struct {
description string
givenSyncType SyncType
expectedTemplate *template.Template
}{
{
description: "IFrame",
givenSyncType: SyncTypeIFrame,
expectedTemplate: iframeTemplate,
},
{
description: "Redirect",
givenSyncType: SyncTypeRedirect,
expectedTemplate: redirectTemplate,
},
{
description: "Invalid",
givenSyncType: SyncType("invalid"),
expectedTemplate: nil,
},
}
for _, test := range testCases {
syncer := standardSyncer{iframe: iframeTemplate, redirect: redirectTemplate}
result := syncer.chooseTemplate(test.givenSyncType)
assert.Equal(t, test.expectedTemplate, result, test.description)
}
}