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
|
package util
import (
"testing"
"codeberg.org/eduVPN/eduvpn-common/internal/test"
)
func TestCalculateGateway(t *testing.T) {
cases := []struct {
in string
want string
err string
}{
// normal cases
{
in: "10.10.10.5/24",
want: "10.10.10.1",
err: "",
},
{
in: "10.10.10.130/25",
want: "10.10.10.129",
err: "",
},
{
in: "fd42::5/112",
want: "fd42::1",
err: "",
},
{
in: "5502:df9::/64",
want: "5502:df9::1",
err: "",
},
// unrealistic scenario but we have to handle these!
{
in: "5502:df9::0/128",
want: "",
err: "IP network does not contain incremented IP: 5502:df9::1",
},
{
in: "5502:df9::ffff/128",
want: "",
err: "IP network does not contain incremented IP: 5502:df9::1:0",
},
{
in: "10.0.0.0/32",
want: "",
err: "IP network does not contain incremented IP: 10.0.0.1",
},
{
in: "10.0.0.255/32",
want: "",
err: "IP network does not contain incremented IP: 10.0.1.0",
},
// parsing errors
{
in: "10.0.0.1",
want: "",
err: "An internal error occurred. The cause of the error is: invalid CIDR address: 10.0.0.1.",
},
{
in: "bla",
want: "",
err: "An internal error occurred. The cause of the error is: invalid CIDR address: bla.",
},
{
in: "5502:df9::ffff",
want: "",
err: "An internal error occurred. The cause of the error is: invalid CIDR address: 5502:df9::ffff.",
},
}
for _, c := range cases {
got, err := CalculateGateway(c.in)
test.AssertError(t, err, c.err)
if got != c.want {
t.Fatalf("got: %v not equal to want: %v", got, c.want)
}
}
}
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")
}
}
|