forked from stripe/veneur
-
Notifications
You must be signed in to change notification settings - Fork 0
/
consul_discovery_test.go
111 lines (93 loc) · 4.17 KB
/
consul_discovery_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
package veneur
import (
"io/ioutil"
"net/http"
"net/http/httptest"
"strings"
"testing"
"github.com/sirupsen/logrus"
"github.com/stretchr/testify/assert"
)
type ConsulOneRoundTripper struct {
HealthGotCalled bool
}
func (rt *ConsulOneRoundTripper) RoundTrip(req *http.Request) (*http.Response, error) {
rec := httptest.NewRecorder()
if strings.HasPrefix(req.URL.Path, "/v1/health/service/") {
resp, _ := ioutil.ReadFile("fixtures/consul/health_service_one.json")
rec.Write(resp)
rec.Code = http.StatusOK
rt.HealthGotCalled = true
}
return rec.Result(), nil
}
type ConsulChangingRoundTripper struct {
Count int
HealthGotCalled bool
}
func (rt *ConsulChangingRoundTripper) RoundTrip(req *http.Request) (*http.Response, error) {
rec := httptest.NewRecorder()
if req.URL.Path == "/v1/health/service/forwardServiceName" {
var resp []byte
if rt.Count == 2 {
// On the second invocation, return zero hosts!
resp, _ = ioutil.ReadFile("fixtures/consul/health_service_zero.json")
} else if rt.Count == 1 {
// On the second invocation, return two hosts!
resp, _ = ioutil.ReadFile("fixtures/consul/health_service_two.json")
} else {
resp, _ = ioutil.ReadFile("fixtures/consul/health_service_one.json")
}
rec.Write(resp)
rec.Code = http.StatusOK
rt.HealthGotCalled = true
rt.Count++
} else if req.URL.Path == "/v1/health/service/traceServiceName" {
// These don't count. Since we make different calls, we'll return some junk
// for tracing and leave forwarding to it's own thing.
resp, _ := ioutil.ReadFile("fixtures/consul/health_service_one.json")
rec.Write(resp)
rec.Code = http.StatusOK
}
return rec.Result(), nil
}
func TestConsulOneHost(t *testing.T) {
config := generateProxyConfig()
transport := &ConsulOneRoundTripper{}
server, _ := NewProxyFromConfig(logrus.New(), config)
server.HTTPClient.Transport = transport
server.Start()
defer server.Shutdown()
assert.True(t, transport.HealthGotCalled, "Health Service got called")
assert.Equal(t, "http://10.1.10.12:8000", server.ForwardDestinations.Members()[0], "Get ring member from Consul")
assert.Len(t, server.ForwardDestinations.Members(), 1, "Only one host in ring")
}
func TestConsulChangingHosts(t *testing.T) {
config := generateProxyConfig()
transport := &ConsulChangingRoundTripper{}
server, _ := NewProxyFromConfig(logrus.New(), config)
server.HTTPClient.Transport = transport
server.Start()
defer server.Shutdown()
// First invocation is during startup
assert.Equal(t, 1, transport.Count, "Health got called once")
assert.Equal(t, "http://10.1.10.12:8000", server.ForwardDestinations.Members()[0], "Get ring member from Consul")
assert.Len(t, server.ForwardDestinations.Members(), 1, "Only one host in ring")
// Refresh! Should have two now
server.RefreshDestinations(config.ConsulForwardServiceName, server.ForwardDestinations, &server.ForwardDestinationsMtx)
assert.Equal(t, 2, transport.Count, "Health got called second time")
assert.Contains(t, server.ForwardDestinations.Members(), "http://10.1.10.12:8000", "Got first member from Consul")
assert.Contains(t, server.ForwardDestinations.Members(), "http://10.1.10.13:8000", "Got second member from Consul")
assert.Len(t, server.ForwardDestinations.Members(), 2, "Two hosts host in ring")
// Refresh! Now just none!
server.RefreshDestinations(config.ConsulForwardServiceName, server.ForwardDestinations, &server.ForwardDestinationsMtx)
assert.Equal(t, 3, transport.Count, "Health got called a third time.")
assert.Contains(t, server.ForwardDestinations.Members(), "http://10.1.10.12:8000", "Got first member from Consul")
assert.Contains(t, server.ForwardDestinations.Members(), "http://10.1.10.13:8000", "Got second member from Consul")
assert.Len(t, server.ForwardDestinations.Members(), 2, "Two hosts host in ring")
// Refresh! Now just one!
server.RefreshDestinations(config.ConsulForwardServiceName, server.ForwardDestinations, &server.ForwardDestinationsMtx)
assert.Equal(t, 4, transport.Count, "Health got called fourth time")
assert.Contains(t, server.ForwardDestinations.Members(), "http://10.1.10.12:8000", "Got first member from Consul")
assert.Len(t, server.ForwardDestinations.Members(), 1, "One host host in ring")
}