2016-08-30 02:09:57 +00:00
|
|
|
package agent
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2016-11-15 02:54:37 +00:00
|
|
|
"fmt"
|
2016-08-30 02:09:57 +00:00
|
|
|
"net/http"
|
|
|
|
"net/http/httptest"
|
|
|
|
"strings"
|
|
|
|
"testing"
|
|
|
|
|
2018-09-10 15:58:53 +00:00
|
|
|
"github.com/hashicorp/consul/testrpc"
|
|
|
|
|
2017-12-12 00:38:52 +00:00
|
|
|
"github.com/hashicorp/consul/agent/consul/autopilot"
|
2017-07-06 10:34:00 +00:00
|
|
|
"github.com/hashicorp/consul/agent/structs"
|
2017-03-10 00:43:07 +00:00
|
|
|
"github.com/hashicorp/consul/api"
|
2017-04-29 16:34:02 +00:00
|
|
|
"github.com/hashicorp/consul/testutil/retry"
|
2016-08-30 02:09:57 +00:00
|
|
|
)
|
|
|
|
|
2017-03-23 02:26:43 +00:00
|
|
|
func TestOperator_RaftConfiguration(t *testing.T) {
|
2017-05-21 07:54:40 +00:00
|
|
|
t.Parallel()
|
2017-09-25 18:40:42 +00:00
|
|
|
a := NewTestAgent(t.Name(), "")
|
2017-05-21 18:31:20 +00:00
|
|
|
defer a.Shutdown()
|
|
|
|
|
|
|
|
body := bytes.NewBuffer(nil)
|
|
|
|
req, _ := http.NewRequest("GET", "/v1/operator/raft/configuration", body)
|
|
|
|
resp := httptest.NewRecorder()
|
|
|
|
obj, err := a.srv.OperatorRaftConfiguration(resp, req)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if resp.Code != 200 {
|
|
|
|
t.Fatalf("bad code: %d", resp.Code)
|
|
|
|
}
|
|
|
|
out, ok := obj.(structs.RaftConfigurationResponse)
|
|
|
|
if !ok {
|
|
|
|
t.Fatalf("unexpected: %T", obj)
|
|
|
|
}
|
|
|
|
if len(out.Servers) != 1 ||
|
|
|
|
!out.Servers[0].Leader ||
|
|
|
|
!out.Servers[0].Voter {
|
|
|
|
t.Fatalf("bad: %v", out)
|
|
|
|
}
|
2016-08-30 02:09:57 +00:00
|
|
|
}
|
|
|
|
|
2017-03-23 02:26:43 +00:00
|
|
|
func TestOperator_RaftPeer(t *testing.T) {
|
2017-05-21 07:54:40 +00:00
|
|
|
t.Parallel()
|
2017-05-21 18:31:20 +00:00
|
|
|
t.Run("", func(t *testing.T) {
|
2017-09-25 18:40:42 +00:00
|
|
|
a := NewTestAgent(t.Name(), "")
|
2017-05-21 18:31:20 +00:00
|
|
|
defer a.Shutdown()
|
|
|
|
|
2016-08-30 02:09:57 +00:00
|
|
|
body := bytes.NewBuffer(nil)
|
2017-05-09 11:38:05 +00:00
|
|
|
req, _ := http.NewRequest("DELETE", "/v1/operator/raft/peer?address=nope", body)
|
2016-08-30 02:09:57 +00:00
|
|
|
// If we get this error, it proves we sent the address all the
|
|
|
|
// way through.
|
|
|
|
resp := httptest.NewRecorder()
|
2017-05-21 18:31:20 +00:00
|
|
|
_, err := a.srv.OperatorRaftPeer(resp, req)
|
2016-08-30 02:09:57 +00:00
|
|
|
if err == nil || !strings.Contains(err.Error(),
|
|
|
|
"address \"nope\" was not found in the Raft configuration") {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
})
|
2017-03-30 01:09:41 +00:00
|
|
|
|
2017-05-21 18:31:20 +00:00
|
|
|
t.Run("", func(t *testing.T) {
|
2017-09-25 18:40:42 +00:00
|
|
|
a := NewTestAgent(t.Name(), "")
|
2017-05-21 18:31:20 +00:00
|
|
|
defer a.Shutdown()
|
|
|
|
|
2017-03-30 01:09:41 +00:00
|
|
|
body := bytes.NewBuffer(nil)
|
2017-05-09 11:38:05 +00:00
|
|
|
req, _ := http.NewRequest("DELETE", "/v1/operator/raft/peer?id=nope", body)
|
2017-03-30 01:09:41 +00:00
|
|
|
// If we get this error, it proves we sent the ID all the
|
|
|
|
// way through.
|
|
|
|
resp := httptest.NewRecorder()
|
2017-05-21 18:31:20 +00:00
|
|
|
_, err := a.srv.OperatorRaftPeer(resp, req)
|
2017-03-30 01:09:41 +00:00
|
|
|
if err == nil || !strings.Contains(err.Error(),
|
|
|
|
"id \"nope\" was not found in the Raft configuration") {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
})
|
2016-08-30 02:09:57 +00:00
|
|
|
}
|
2016-11-15 02:54:37 +00:00
|
|
|
|
|
|
|
func TestOperator_KeyringInstall(t *testing.T) {
|
2017-05-21 07:54:40 +00:00
|
|
|
t.Parallel()
|
2016-11-15 02:54:37 +00:00
|
|
|
oldKey := "H3/9gBxcKKRf45CaI2DlRg=="
|
|
|
|
newKey := "z90lFx3sZZLtTOkutXcwYg=="
|
2017-09-25 18:40:42 +00:00
|
|
|
a := NewTestAgent(t.Name(), `
|
|
|
|
encrypt = "`+oldKey+`"
|
|
|
|
`)
|
2017-05-21 18:31:20 +00:00
|
|
|
defer a.Shutdown()
|
|
|
|
|
|
|
|
body := bytes.NewBufferString(fmt.Sprintf("{\"Key\":\"%s\"}", newKey))
|
|
|
|
req, _ := http.NewRequest("POST", "/v1/operator/keyring", body)
|
|
|
|
resp := httptest.NewRecorder()
|
|
|
|
_, err := a.srv.OperatorKeyringEndpoint(resp, req)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
2016-11-15 02:54:37 +00:00
|
|
|
}
|
|
|
|
|
2017-05-21 18:31:20 +00:00
|
|
|
listResponse, err := a.ListKeys("", 0)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
|
|
|
if len(listResponse.Responses) != 2 {
|
|
|
|
t.Fatalf("bad: %d", len(listResponse.Responses))
|
|
|
|
}
|
2016-11-15 02:54:37 +00:00
|
|
|
|
2017-05-21 18:31:20 +00:00
|
|
|
for _, response := range listResponse.Responses {
|
|
|
|
count, ok := response.Keys[newKey]
|
|
|
|
if !ok {
|
|
|
|
t.Fatalf("bad: %v", response.Keys)
|
|
|
|
}
|
|
|
|
if count != response.NumNodes {
|
|
|
|
t.Fatalf("bad: %d, %d", count, response.NumNodes)
|
2016-11-15 02:54:37 +00:00
|
|
|
}
|
2017-05-21 18:31:20 +00:00
|
|
|
}
|
2016-11-15 02:54:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestOperator_KeyringList(t *testing.T) {
|
2017-05-21 07:54:40 +00:00
|
|
|
t.Parallel()
|
2016-11-15 02:54:37 +00:00
|
|
|
key := "H3/9gBxcKKRf45CaI2DlRg=="
|
2017-09-25 18:40:42 +00:00
|
|
|
a := NewTestAgent(t.Name(), `
|
|
|
|
encrypt = "`+key+`"
|
|
|
|
`)
|
2017-05-21 18:31:20 +00:00
|
|
|
defer a.Shutdown()
|
|
|
|
|
|
|
|
req, _ := http.NewRequest("GET", "/v1/operator/keyring", nil)
|
|
|
|
resp := httptest.NewRecorder()
|
|
|
|
r, err := a.srv.OperatorKeyringEndpoint(resp, req)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
responses, ok := r.([]*structs.KeyringResponse)
|
|
|
|
if !ok {
|
|
|
|
t.Fatalf("err: %v", !ok)
|
2016-11-15 02:54:37 +00:00
|
|
|
}
|
|
|
|
|
2017-05-21 18:31:20 +00:00
|
|
|
// Check that we get both a LAN and WAN response, and that they both only
|
|
|
|
// contain the original key
|
|
|
|
if len(responses) != 2 {
|
|
|
|
t.Fatalf("bad: %d", len(responses))
|
|
|
|
}
|
2016-11-22 23:24:40 +00:00
|
|
|
|
2017-05-21 18:31:20 +00:00
|
|
|
// WAN
|
|
|
|
if len(responses[0].Keys) != 1 {
|
|
|
|
t.Fatalf("bad: %d", len(responses[0].Keys))
|
|
|
|
}
|
|
|
|
if !responses[0].WAN {
|
|
|
|
t.Fatalf("bad: %v", responses[0].WAN)
|
|
|
|
}
|
|
|
|
if _, ok := responses[0].Keys[key]; !ok {
|
|
|
|
t.Fatalf("bad: %v", ok)
|
|
|
|
}
|
2016-11-22 23:24:40 +00:00
|
|
|
|
2017-05-21 18:31:20 +00:00
|
|
|
// LAN
|
|
|
|
if len(responses[1].Keys) != 1 {
|
|
|
|
t.Fatalf("bad: %d", len(responses[1].Keys))
|
|
|
|
}
|
|
|
|
if responses[1].WAN {
|
|
|
|
t.Fatalf("bad: %v", responses[1].WAN)
|
|
|
|
}
|
|
|
|
if _, ok := responses[1].Keys[key]; !ok {
|
|
|
|
t.Fatalf("bad: %v", ok)
|
|
|
|
}
|
2016-11-15 02:54:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestOperator_KeyringRemove(t *testing.T) {
|
2017-05-21 07:54:40 +00:00
|
|
|
t.Parallel()
|
2016-11-15 02:54:37 +00:00
|
|
|
key := "H3/9gBxcKKRf45CaI2DlRg=="
|
|
|
|
tempKey := "z90lFx3sZZLtTOkutXcwYg=="
|
2017-09-25 18:40:42 +00:00
|
|
|
a := NewTestAgent(t.Name(), `
|
|
|
|
encrypt = "`+key+`"
|
|
|
|
`)
|
2017-05-21 18:31:20 +00:00
|
|
|
defer a.Shutdown()
|
|
|
|
|
|
|
|
_, err := a.InstallKey(tempKey, "", 0)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
2016-11-15 02:54:37 +00:00
|
|
|
}
|
|
|
|
|
2017-05-21 18:31:20 +00:00
|
|
|
// Make sure the temp key is installed
|
|
|
|
list, err := a.ListKeys("", 0)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
responses := list.Responses
|
|
|
|
if len(responses) != 2 {
|
|
|
|
t.Fatalf("bad: %d", len(responses))
|
|
|
|
}
|
|
|
|
for _, response := range responses {
|
|
|
|
if len(response.Keys) != 2 {
|
|
|
|
t.Fatalf("bad: %d", len(response.Keys))
|
2016-11-15 02:54:37 +00:00
|
|
|
}
|
2017-05-21 18:31:20 +00:00
|
|
|
if _, ok := response.Keys[tempKey]; !ok {
|
|
|
|
t.Fatalf("bad: %v", ok)
|
2016-11-15 02:54:37 +00:00
|
|
|
}
|
2017-05-21 18:31:20 +00:00
|
|
|
}
|
2016-11-15 02:54:37 +00:00
|
|
|
|
2017-05-21 18:31:20 +00:00
|
|
|
body := bytes.NewBufferString(fmt.Sprintf("{\"Key\":\"%s\"}", tempKey))
|
|
|
|
req, _ := http.NewRequest("DELETE", "/v1/operator/keyring", body)
|
|
|
|
resp := httptest.NewRecorder()
|
|
|
|
if _, err := a.srv.OperatorKeyringEndpoint(resp, req); err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
2016-11-15 02:54:37 +00:00
|
|
|
|
2017-05-21 18:31:20 +00:00
|
|
|
// Make sure the temp key has been removed
|
|
|
|
list, err = a.ListKeys("", 0)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
responses = list.Responses
|
|
|
|
if len(responses) != 2 {
|
|
|
|
t.Fatalf("bad: %d", len(responses))
|
|
|
|
}
|
|
|
|
for _, response := range responses {
|
|
|
|
if len(response.Keys) != 1 {
|
|
|
|
t.Fatalf("bad: %d", len(response.Keys))
|
2016-11-15 02:54:37 +00:00
|
|
|
}
|
2017-05-21 18:31:20 +00:00
|
|
|
if _, ok := response.Keys[tempKey]; ok {
|
|
|
|
t.Fatalf("bad: %v", ok)
|
2016-11-15 02:54:37 +00:00
|
|
|
}
|
2017-05-21 18:31:20 +00:00
|
|
|
}
|
2016-11-15 02:54:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestOperator_KeyringUse(t *testing.T) {
|
2017-05-21 07:54:40 +00:00
|
|
|
t.Parallel()
|
2016-11-15 02:54:37 +00:00
|
|
|
oldKey := "H3/9gBxcKKRf45CaI2DlRg=="
|
|
|
|
newKey := "z90lFx3sZZLtTOkutXcwYg=="
|
2017-09-25 18:40:42 +00:00
|
|
|
a := NewTestAgent(t.Name(), `
|
|
|
|
encrypt = "`+oldKey+`"
|
|
|
|
`)
|
2017-05-21 18:31:20 +00:00
|
|
|
defer a.Shutdown()
|
|
|
|
|
|
|
|
if _, err := a.InstallKey(newKey, "", 0); err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
2016-11-15 02:54:37 +00:00
|
|
|
}
|
|
|
|
|
2017-05-21 18:31:20 +00:00
|
|
|
body := bytes.NewBufferString(fmt.Sprintf("{\"Key\":\"%s\"}", newKey))
|
|
|
|
req, _ := http.NewRequest("PUT", "/v1/operator/keyring", body)
|
|
|
|
resp := httptest.NewRecorder()
|
|
|
|
_, err := a.srv.OperatorKeyringEndpoint(resp, req)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %s", err)
|
|
|
|
}
|
2016-11-15 02:54:37 +00:00
|
|
|
|
2017-05-21 18:31:20 +00:00
|
|
|
if _, err := a.RemoveKey(oldKey, "", 0); err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
2016-11-15 02:54:37 +00:00
|
|
|
|
2017-05-21 18:31:20 +00:00
|
|
|
// Make sure only the new key remains
|
|
|
|
list, err := a.ListKeys("", 0)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
responses := list.Responses
|
|
|
|
if len(responses) != 2 {
|
|
|
|
t.Fatalf("bad: %d", len(responses))
|
|
|
|
}
|
|
|
|
for _, response := range responses {
|
|
|
|
if len(response.Keys) != 1 {
|
|
|
|
t.Fatalf("bad: %d", len(response.Keys))
|
2016-11-15 02:54:37 +00:00
|
|
|
}
|
2017-05-21 18:31:20 +00:00
|
|
|
if _, ok := response.Keys[newKey]; !ok {
|
|
|
|
t.Fatalf("bad: %v", ok)
|
2016-11-15 02:54:37 +00:00
|
|
|
}
|
2017-05-21 18:31:20 +00:00
|
|
|
}
|
2016-11-15 02:54:37 +00:00
|
|
|
}
|
2017-02-02 02:42:41 +00:00
|
|
|
|
|
|
|
func TestOperator_Keyring_InvalidRelayFactor(t *testing.T) {
|
2017-05-21 07:54:40 +00:00
|
|
|
t.Parallel()
|
2017-02-02 02:42:41 +00:00
|
|
|
key := "H3/9gBxcKKRf45CaI2DlRg=="
|
2017-09-25 18:40:42 +00:00
|
|
|
a := NewTestAgent(t.Name(), `
|
|
|
|
encrypt = "`+key+`"
|
|
|
|
`)
|
2017-05-21 18:31:20 +00:00
|
|
|
defer a.Shutdown()
|
|
|
|
|
|
|
|
cases := map[string]string{
|
|
|
|
"999": "Relay factor must be in range",
|
|
|
|
"asdf": "Error parsing relay factor",
|
2017-02-02 02:42:41 +00:00
|
|
|
}
|
2017-05-21 18:31:20 +00:00
|
|
|
for relayFactor, errString := range cases {
|
|
|
|
req, _ := http.NewRequest("GET", "/v1/operator/keyring?relay-factor="+relayFactor, nil)
|
|
|
|
resp := httptest.NewRecorder()
|
|
|
|
_, err := a.srv.OperatorKeyringEndpoint(resp, req)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
2017-02-02 02:42:41 +00:00
|
|
|
}
|
2017-05-21 18:31:20 +00:00
|
|
|
body := resp.Body.String()
|
|
|
|
if !strings.Contains(body, errString) {
|
|
|
|
t.Fatalf("bad: %v", body)
|
2017-02-02 02:42:41 +00:00
|
|
|
}
|
2017-05-21 18:31:20 +00:00
|
|
|
}
|
2017-02-02 02:42:41 +00:00
|
|
|
}
|
2017-02-24 04:32:13 +00:00
|
|
|
|
|
|
|
func TestOperator_AutopilotGetConfiguration(t *testing.T) {
|
2017-05-21 07:54:40 +00:00
|
|
|
t.Parallel()
|
2017-09-25 18:40:42 +00:00
|
|
|
a := NewTestAgent(t.Name(), "")
|
2017-05-21 18:31:20 +00:00
|
|
|
defer a.Shutdown()
|
2018-09-10 15:58:53 +00:00
|
|
|
testrpc.WaitForTestAgent(t, a.RPC, "dc1")
|
2017-05-21 18:31:20 +00:00
|
|
|
|
|
|
|
body := bytes.NewBuffer(nil)
|
|
|
|
req, _ := http.NewRequest("GET", "/v1/operator/autopilot/configuration", body)
|
|
|
|
resp := httptest.NewRecorder()
|
|
|
|
obj, err := a.srv.OperatorAutopilotConfiguration(resp, req)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if resp.Code != 200 {
|
|
|
|
t.Fatalf("bad code: %d", resp.Code)
|
|
|
|
}
|
|
|
|
out, ok := obj.(api.AutopilotConfiguration)
|
|
|
|
if !ok {
|
|
|
|
t.Fatalf("unexpected: %T", obj)
|
|
|
|
}
|
|
|
|
if !out.CleanupDeadServers {
|
|
|
|
t.Fatalf("bad: %#v", out)
|
|
|
|
}
|
2017-02-24 04:32:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestOperator_AutopilotSetConfiguration(t *testing.T) {
|
2017-05-21 07:54:40 +00:00
|
|
|
t.Parallel()
|
2017-09-25 18:40:42 +00:00
|
|
|
a := NewTestAgent(t.Name(), "")
|
2017-05-21 18:31:20 +00:00
|
|
|
defer a.Shutdown()
|
|
|
|
|
|
|
|
body := bytes.NewBuffer([]byte(`{"CleanupDeadServers": false}`))
|
|
|
|
req, _ := http.NewRequest("PUT", "/v1/operator/autopilot/configuration", body)
|
|
|
|
resp := httptest.NewRecorder()
|
|
|
|
if _, err := a.srv.OperatorAutopilotConfiguration(resp, req); err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if resp.Code != 200 {
|
|
|
|
t.Fatalf("bad code: %d", resp.Code)
|
|
|
|
}
|
2017-02-24 21:08:49 +00:00
|
|
|
|
2017-05-21 18:31:20 +00:00
|
|
|
args := structs.DCSpecificRequest{
|
|
|
|
Datacenter: "dc1",
|
|
|
|
}
|
2017-02-24 21:08:49 +00:00
|
|
|
|
2017-12-12 00:38:52 +00:00
|
|
|
var reply autopilot.Config
|
2017-05-21 18:31:20 +00:00
|
|
|
if err := a.RPC("Operator.AutopilotGetConfiguration", &args, &reply); err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if reply.CleanupDeadServers {
|
|
|
|
t.Fatalf("bad: %#v", reply)
|
|
|
|
}
|
2017-02-24 21:08:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestOperator_AutopilotCASConfiguration(t *testing.T) {
|
2017-05-21 07:54:40 +00:00
|
|
|
t.Parallel()
|
2017-09-25 18:40:42 +00:00
|
|
|
a := NewTestAgent(t.Name(), "")
|
2017-05-21 18:31:20 +00:00
|
|
|
defer a.Shutdown()
|
|
|
|
|
|
|
|
body := bytes.NewBuffer([]byte(`{"CleanupDeadServers": false}`))
|
|
|
|
req, _ := http.NewRequest("PUT", "/v1/operator/autopilot/configuration", body)
|
|
|
|
resp := httptest.NewRecorder()
|
|
|
|
if _, err := a.srv.OperatorAutopilotConfiguration(resp, req); err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if resp.Code != 200 {
|
|
|
|
t.Fatalf("bad code: %d", resp.Code)
|
|
|
|
}
|
|
|
|
|
|
|
|
args := structs.DCSpecificRequest{
|
|
|
|
Datacenter: "dc1",
|
|
|
|
}
|
|
|
|
|
2017-12-12 00:38:52 +00:00
|
|
|
var reply autopilot.Config
|
2017-05-21 18:31:20 +00:00
|
|
|
if err := a.RPC("Operator.AutopilotGetConfiguration", &args, &reply); err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if reply.CleanupDeadServers {
|
|
|
|
t.Fatalf("bad: %#v", reply)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create a CAS request, bad index
|
|
|
|
{
|
|
|
|
buf := bytes.NewBuffer([]byte(`{"CleanupDeadServers": true}`))
|
|
|
|
req, _ := http.NewRequest("PUT", fmt.Sprintf("/v1/operator/autopilot/configuration?cas=%d", reply.ModifyIndex-1), buf)
|
2017-02-24 04:32:13 +00:00
|
|
|
resp := httptest.NewRecorder()
|
2017-05-21 18:31:20 +00:00
|
|
|
obj, err := a.srv.OperatorAutopilotConfiguration(resp, req)
|
|
|
|
if err != nil {
|
2017-02-24 04:32:13 +00:00
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
2017-05-21 18:31:20 +00:00
|
|
|
if res := obj.(bool); res {
|
|
|
|
t.Fatalf("should NOT work")
|
2017-02-24 04:32:13 +00:00
|
|
|
}
|
2017-05-21 18:31:20 +00:00
|
|
|
}
|
2017-02-24 04:32:13 +00:00
|
|
|
|
2017-05-21 18:31:20 +00:00
|
|
|
// Create a CAS request, good index
|
|
|
|
{
|
|
|
|
buf := bytes.NewBuffer([]byte(`{"CleanupDeadServers": true}`))
|
|
|
|
req, _ := http.NewRequest("PUT", fmt.Sprintf("/v1/operator/autopilot/configuration?cas=%d", reply.ModifyIndex), buf)
|
|
|
|
resp := httptest.NewRecorder()
|
|
|
|
obj, err := a.srv.OperatorAutopilotConfiguration(resp, req)
|
|
|
|
if err != nil {
|
2017-02-24 04:32:13 +00:00
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
|
2017-05-21 18:31:20 +00:00
|
|
|
if res := obj.(bool); !res {
|
|
|
|
t.Fatalf("should work")
|
2017-02-24 04:32:13 +00:00
|
|
|
}
|
2017-05-21 18:31:20 +00:00
|
|
|
}
|
2017-02-24 21:08:49 +00:00
|
|
|
|
2017-05-21 18:31:20 +00:00
|
|
|
// Verify the update
|
|
|
|
if err := a.RPC("Operator.AutopilotGetConfiguration", &args, &reply); err != nil {
|
|
|
|
t.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if !reply.CleanupDeadServers {
|
|
|
|
t.Fatalf("bad: %#v", reply)
|
|
|
|
}
|
|
|
|
}
|
2017-02-24 21:08:49 +00:00
|
|
|
|
2017-05-21 18:31:20 +00:00
|
|
|
func TestOperator_ServerHealth(t *testing.T) {
|
|
|
|
t.Parallel()
|
2017-09-25 18:40:42 +00:00
|
|
|
a := NewTestAgent(t.Name(), `
|
|
|
|
raft_protocol = 3
|
|
|
|
`)
|
2017-05-21 18:31:20 +00:00
|
|
|
defer a.Shutdown()
|
|
|
|
|
|
|
|
body := bytes.NewBuffer(nil)
|
|
|
|
req, _ := http.NewRequest("GET", "/v1/operator/autopilot/health", body)
|
|
|
|
retry.Run(t, func(r *retry.R) {
|
|
|
|
resp := httptest.NewRecorder()
|
|
|
|
obj, err := a.srv.OperatorServerHealth(resp, req)
|
|
|
|
if err != nil {
|
|
|
|
r.Fatalf("err: %v", err)
|
2017-02-24 21:08:49 +00:00
|
|
|
}
|
2017-05-21 18:31:20 +00:00
|
|
|
if resp.Code != 200 {
|
|
|
|
r.Fatalf("bad code: %d", resp.Code)
|
2017-02-24 21:08:49 +00:00
|
|
|
}
|
2017-05-21 18:31:20 +00:00
|
|
|
out, ok := obj.(*api.OperatorHealthReply)
|
|
|
|
if !ok {
|
|
|
|
r.Fatalf("unexpected: %T", obj)
|
|
|
|
}
|
|
|
|
if len(out.Servers) != 1 ||
|
|
|
|
!out.Servers[0].Healthy ||
|
2017-05-21 18:32:48 +00:00
|
|
|
out.Servers[0].Name != a.Config.NodeName ||
|
2017-05-21 18:31:20 +00:00
|
|
|
out.Servers[0].SerfStatus != "alive" ||
|
|
|
|
out.FailureTolerance != 0 {
|
|
|
|
r.Fatalf("bad: %v", out)
|
2017-02-24 21:08:49 +00:00
|
|
|
}
|
2017-02-24 04:32:13 +00:00
|
|
|
})
|
2017-02-24 21:08:49 +00:00
|
|
|
}
|
2017-03-01 22:04:40 +00:00
|
|
|
|
2017-03-23 02:26:43 +00:00
|
|
|
func TestOperator_ServerHealth_Unhealthy(t *testing.T) {
|
2017-05-21 07:54:40 +00:00
|
|
|
t.Parallel()
|
2017-09-25 18:40:42 +00:00
|
|
|
a := NewTestAgent(t.Name(), `
|
|
|
|
raft_protocol = 3
|
|
|
|
autopilot {
|
|
|
|
last_contact_threshold = "-1s"
|
|
|
|
}
|
|
|
|
`)
|
2017-05-21 18:31:20 +00:00
|
|
|
defer a.Shutdown()
|
|
|
|
|
|
|
|
body := bytes.NewBuffer(nil)
|
|
|
|
req, _ := http.NewRequest("GET", "/v1/operator/autopilot/health", body)
|
|
|
|
retry.Run(t, func(r *retry.R) {
|
|
|
|
resp := httptest.NewRecorder()
|
|
|
|
obj, err := a.srv.OperatorServerHealth(resp, req)
|
|
|
|
if err != nil {
|
|
|
|
r.Fatalf("err: %v", err)
|
|
|
|
}
|
|
|
|
if resp.Code != 429 {
|
|
|
|
r.Fatalf("bad code: %d", resp.Code)
|
|
|
|
}
|
|
|
|
out, ok := obj.(*api.OperatorHealthReply)
|
|
|
|
if !ok {
|
|
|
|
r.Fatalf("unexpected: %T", obj)
|
|
|
|
}
|
|
|
|
if len(out.Servers) != 1 ||
|
|
|
|
out.Healthy ||
|
2017-05-21 18:32:48 +00:00
|
|
|
out.Servers[0].Name != a.Config.NodeName {
|
2017-05-21 18:31:20 +00:00
|
|
|
r.Fatalf("bad: %#v", out.Servers)
|
|
|
|
}
|
|
|
|
})
|
2017-03-01 22:04:40 +00:00
|
|
|
}
|