mirror of
https://github.com/status-im/consul.git
synced 2025-01-11 06:16:08 +00:00
testutil: support joining and specifying datacenters
This commit is contained in:
parent
fa7414e276
commit
63f05b1c56
@ -49,6 +49,7 @@ type TestServerConfig struct {
|
|||||||
Bootstrap bool `json:"bootstrap,omitempty"`
|
Bootstrap bool `json:"bootstrap,omitempty"`
|
||||||
Server bool `json:"server,omitempty"`
|
Server bool `json:"server,omitempty"`
|
||||||
DataDir string `json:"data_dir,omitempty"`
|
DataDir string `json:"data_dir,omitempty"`
|
||||||
|
Datacenter string `json:"datacenter,omitempty"`
|
||||||
LogLevel string `json:"log_level,omitempty"`
|
LogLevel string `json:"log_level,omitempty"`
|
||||||
Addresses *TestAddressConfig `json:"addresses,omitempty"`
|
Addresses *TestAddressConfig `json:"addresses,omitempty"`
|
||||||
Ports *TestPortConfig `json:"ports,omitempty"`
|
Ports *TestPortConfig `json:"ports,omitempty"`
|
||||||
@ -99,8 +100,11 @@ type TestCheck struct {
|
|||||||
type TestServer struct {
|
type TestServer struct {
|
||||||
PID int
|
PID int
|
||||||
Config *TestServerConfig
|
Config *TestServerConfig
|
||||||
HTTPAddr string
|
|
||||||
t *testing.T
|
t *testing.T
|
||||||
|
|
||||||
|
HTTPAddr string
|
||||||
|
LANAddr string
|
||||||
|
WANAddr string
|
||||||
}
|
}
|
||||||
|
|
||||||
// NewTestServer is an easy helper method to create a new Consul
|
// NewTestServer is an easy helper method to create a new Consul
|
||||||
@ -155,8 +159,11 @@ func NewTestServerConfig(t *testing.T, cb ServerConfigCallback) *TestServer {
|
|||||||
server := &TestServer{
|
server := &TestServer{
|
||||||
Config: consulConfig,
|
Config: consulConfig,
|
||||||
PID: cmd.Process.Pid,
|
PID: cmd.Process.Pid,
|
||||||
HTTPAddr: fmt.Sprintf("127.0.0.1:%d", consulConfig.Ports.HTTP),
|
|
||||||
t: t,
|
t: t,
|
||||||
|
|
||||||
|
HTTPAddr: fmt.Sprintf("127.0.0.1:%d", consulConfig.Ports.HTTP),
|
||||||
|
LANAddr: fmt.Sprintf("127.0.0.1:%d", consulConfig.Ports.SerfLan),
|
||||||
|
WANAddr: fmt.Sprintf("127.0.0.1:%d", consulConfig.Ports.SerfWan),
|
||||||
}
|
}
|
||||||
|
|
||||||
// Wait for the server to be ready
|
// Wait for the server to be ready
|
||||||
@ -224,9 +231,18 @@ func (s *TestServer) put(path string, body io.Reader) {
|
|||||||
s.request(req)
|
s.request(req)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// get performs a new HTTP GET request.
|
||||||
|
func (s *TestServer) get(path string) []byte {
|
||||||
|
req, err := http.NewRequest("GET", s.url(path), nil)
|
||||||
|
if err != nil {
|
||||||
|
s.t.Fatalf("err: %s", err)
|
||||||
|
}
|
||||||
|
return s.request(req)
|
||||||
|
}
|
||||||
|
|
||||||
// request is a generic HTTP request helper to make a request and
|
// request is a generic HTTP request helper to make a request and
|
||||||
// ensure the response code is acceptable.
|
// ensure the response code is acceptable.
|
||||||
func (s *TestServer) request(req *http.Request) {
|
func (s *TestServer) request(req *http.Request) []byte {
|
||||||
// Perform the PUT
|
// Perform the PUT
|
||||||
resp, err := http.DefaultClient.Do(req)
|
resp, err := http.DefaultClient.Do(req)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
@ -243,6 +259,8 @@ func (s *TestServer) request(req *http.Request) {
|
|||||||
if resp.StatusCode != 200 {
|
if resp.StatusCode != 200 {
|
||||||
s.t.Fatalf("Bad response code: %d\nBody:\n%s", resp.StatusCode, body)
|
s.t.Fatalf("Bad response code: %d\nBody:\n%s", resp.StatusCode, body)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return body
|
||||||
}
|
}
|
||||||
|
|
||||||
// encodePayload returns a new io.Reader wrapping the encoded contents
|
// encodePayload returns a new io.Reader wrapping the encoded contents
|
||||||
@ -256,6 +274,16 @@ func (s *TestServer) encodePayload(payload interface{}) io.Reader {
|
|||||||
return &encoded
|
return &encoded
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// JoinLAN is used to join nodes within the same datacenter.
|
||||||
|
func (s *TestServer) JoinLAN(addr string) {
|
||||||
|
s.get("/v1/agent/join/" + addr)
|
||||||
|
}
|
||||||
|
|
||||||
|
// JoinWAN is used to join remote datacenters together.
|
||||||
|
func (s *TestServer) JoinWAN(addr string) {
|
||||||
|
s.get("/v1/agent/join/" + addr + "?wan=1")
|
||||||
|
}
|
||||||
|
|
||||||
// SetKV sets an individual key in the K/V store.
|
// SetKV sets an individual key in the K/V store.
|
||||||
func (s *TestServer) SetKV(key string, val []byte) {
|
func (s *TestServer) SetKV(key string, val []byte) {
|
||||||
s.put("/v1/kv/"+key, bytes.NewBuffer(val))
|
s.put("/v1/kv/"+key, bytes.NewBuffer(val))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user