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
|
package util
import (
"bytes"
"testing"
)
func TestMakeRandomByteSlice(t *testing.T) {
random, randomErr := MakeRandomByteSlice(32)
if randomErr != nil {
t.Fatalf("Got: %v, want: nil", randomErr)
}
if len(random) != 32 {
t.Fatalf("Got length: %d, want length: 32", len(random))
}
random2, randomErr2 := MakeRandomByteSlice(32)
if randomErr2 != nil {
t.Fatalf("2, Got: %v, want: nil", randomErr)
}
if bytes.Equal(random2, random) {
t.Fatalf("Two random byteslices are the same: %v, %v", random2, random)
}
}
func TestReplaceWAYF(t *testing.T) {
// We expect url encoding but the spaces to be correctly replace with a + instead of a %20
// And we expect that the return to and org_id are correctly replaced
replaced := ReplaceWAYF(
"@RETURN_TO@@ORG_ID@",
"127.0.0.1:8000/&%$3#kM_- ",
"idp-test.nl.org/",
)
wantReplaced := "127.0.0.1%3A8000%2F%26%25%243%23kM_-++++++++++++idp-test.nl.org%2F"
if replaced != wantReplaced {
t.Fatalf("Got: %s, want: %s", replaced, wantReplaced)
}
// No RETURN_TO in template
replaced = ReplaceWAYF("@ORG_ID@", "127.0.0.1:8000", "idp-test.nl.org/")
wantReplaced = "127.0.0.1:8000"
if replaced != wantReplaced {
t.Fatalf("Got: %s, want: %s", replaced, wantReplaced)
}
// NO ORG_ID in template
replaced = ReplaceWAYF("@RETURN_TO@", "127.0.0.1:8000", "idp-test.nl.org")
wantReplaced = "127.0.0.1:8000"
if replaced != wantReplaced {
t.Fatalf("Got: %s, want: %s", replaced, wantReplaced)
}
// Template is empty
replaced = ReplaceWAYF("", "127.0.0.1:8000", "idp-test.nl.org")
wantReplaced = "127.0.0.1:8000"
if replaced != wantReplaced {
t.Fatalf("Got: %s, want: %s", replaced, wantReplaced)
}
// Template contains both @RETURN_TO@ and @ORG_ID@ but there is not enough to replace both
replaced = ReplaceWAYF("@RETURN_TO@ORG_ID@", "127.0.0.1:8000", "idp-test.nl.org")
wantReplaced = "127.0.0.1:8000"
if replaced != wantReplaced {
t.Fatalf("Got: %s, want: %s", replaced, wantReplaced)
}
}
func TestGetLanguageMatched(t *testing.T) {
// exact match
returned := GetLanguageMatched(map[string]string{"en": "test", "de": "test2"}, "en")
if returned != "test" {
t.Fatalf("Got: %s, want: %s", returned, "test")
}
// starts with language tag
returned = GetLanguageMatched(map[string]string{"en-US-test": "test", "de": "test2"}, "en-US")
if returned != "test" {
t.Fatalf("Got: %s, want: %s", returned, "test")
}
// starts with en-
returned = GetLanguageMatched(map[string]string{"en-UK": "test", "en": "test2"}, "en-US")
if returned != "test" {
t.Fatalf("Got: %s, want: %s", returned, "test")
}
// exact match for en
returned = GetLanguageMatched(map[string]string{"de": "test", "en": "test2"}, "en-US")
if returned != "test2" {
t.Fatalf("Got: %s, want: %s", returned, "test2")
}
// We default to english
returned = GetLanguageMatched(map[string]string{"es": "test", "en": "test2"}, "nl-NL")
if returned != "test2" {
t.Fatalf("Got: %s, want: %s", returned, "test2")
}
// We default to english with a - as well
returned = GetLanguageMatched(map[string]string{"est": "test", "en-": "test2"}, "en-US")
if returned != "test2" {
t.Fatalf("Got: %s, want: %s", returned, "test2")
}
// None found just return one
returned = GetLanguageMatched(map[string]string{"es": "test"}, "en-US")
if returned != "test" {
t.Fatalf("Got: %s, want: %s", returned, "test")
}
}
|