-
Notifications
You must be signed in to change notification settings - Fork 1
/
consul_test.go
85 lines (76 loc) · 1.83 KB
/
consul_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
package main
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestGroupBindings(t *testing.T) {
binding1 := Binding{
UserConfig: UserConfig{
Name: "nginx-internal",
IPType: "internalIP",
},
Ingress: Ingress{
Spec: ingressSpec{
Rules: []ingressRule{
ingressRule{Host: "abc.internal"},
},
},
},
Service: Service{
Spec: serviceSpec{
ExternalIP: "10.2.3.4",
},
},
}
binding2 := Binding{
UserConfig: UserConfig{
Name: "nginx-internal",
IPType: "internalIP",
},
Ingress: Ingress{
Spec: ingressSpec{Rules: []ingressRule{
ingressRule{Host: "def.internal"},
},
},
},
Service: Service{
Spec: serviceSpec{
ExternalIP: "10.2.3.4",
},
},
}
binding3 := Binding{
UserConfig: UserConfig{
Name: "nginx-external",
IPType: "externalIP",
},
Ingress: Ingress{
Spec: ingressSpec{Rules: []ingressRule{
ingressRule{Host: "ijk.com"},
},
},
},
Service: Service{
Spec: serviceSpec{
ExternalIP: "1.2.3.4",
},
},
}
groupedBindings := groupBindings([]Binding{binding1, binding2, binding3})
expectedGroupedBindings := make(map[string][]Binding, 2)
expectedGroupedBindings["nginx-internal"] = []Binding{binding1, binding2}
expectedGroupedBindings["nginx-external"] = []Binding{binding3}
assert.Equal(t, expectedGroupedBindings, groupedBindings)
}
func TestGetTags(t *testing.T) {
hosts := []string{"service-a.service.consul", "service-b.service.consul", "service-c.skipped.domain"}
domain := ".service.consul"
expectedTags := []string{"service-a", "service-b"}
assert.Equal(t, expectedTags, getTags(hosts, domain))
}
func TestGetTagsShouldSkipInvalidHosts(t *testing.T) {
hosts := []string{"wrong_host.service.consul"}
domain := ".service.consul"
expectedTags := []string{}
assert.Equal(t, expectedTags, getTags(hosts, domain))
}