-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbinding_test.go
77 lines (68 loc) · 1.44 KB
/
binding_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
package main
import (
"testing"
"github.com/stretchr/testify/assert"
)
func TestGetIPAddressReturnsClusterIP(t *testing.T) {
binding := &Binding{
UserConfig: UserConfig{
IPType: "clusterIP",
},
Service: Service{
Spec: serviceSpec{
ClusterIP: "10.7.0.1",
ExternalIP: "31.24.56.112",
},
},
}
assert.Equal(t, binding.GetIPAddress(), "10.7.0.1")
}
func TestGetIPAddressReturnsExternalIP(t *testing.T) {
binding := &Binding{
UserConfig: UserConfig{
IPType: "externalIP",
},
Service: Service{
Spec: serviceSpec{
ClusterIP: "10.7.0.1",
ExternalIP: "31.24.56.112",
},
},
}
assert.Equal(t, binding.GetIPAddress(), "31.24.56.112")
}
func TestGetIPAddressReturnsEmptyString(t *testing.T) {
binding := &Binding{
UserConfig: UserConfig{
IPType: "loadBalancerIP",
},
Service: Service{
Spec: serviceSpec{
ClusterIP: "10.7.0.1",
ExternalIP: "31.24.56.112",
},
},
}
assert.Equal(t, binding.GetIPAddress(), "")
}
func TestGetIdAndName(t *testing.T) {
binding := &Binding{
UserConfig: UserConfig{
Name: "user-defined-name",
},
}
assert.Equal(t, binding.GetId(), "user-defined-name")
assert.Equal(t, binding.GetName(), "user-defined-name")
}
func TestGetHosts(t *testing.T) {
binding := &Binding{
Ingress: Ingress{
Spec: ingressSpec{
Rules: []ingressRule{
ingressRule{Host: "abc.com"},
},
},
},
}
assert.Equal(t, binding.GetHosts(), []string{"abc.com"})
}