2018-03-20 17:36:05 +00:00
|
|
|
package agent
|
|
|
|
|
|
|
|
import (
|
2018-05-04 22:28:11 +00:00
|
|
|
"bytes"
|
2018-03-20 17:36:05 +00:00
|
|
|
"net/http"
|
|
|
|
"net/http/httptest"
|
|
|
|
"testing"
|
2018-06-22 16:48:41 +00:00
|
|
|
"time"
|
2018-03-20 17:36:05 +00:00
|
|
|
|
2018-09-10 15:58:53 +00:00
|
|
|
"github.com/hashicorp/consul/testrpc"
|
|
|
|
|
2018-07-25 19:26:27 +00:00
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
|
2018-03-21 17:20:35 +00:00
|
|
|
"github.com/hashicorp/consul/agent/connect"
|
2018-05-09 22:12:31 +00:00
|
|
|
ca "github.com/hashicorp/consul/agent/connect/ca"
|
2018-03-20 17:36:05 +00:00
|
|
|
"github.com/hashicorp/consul/agent/structs"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestConnectCARoots_empty(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
2018-07-25 19:26:27 +00:00
|
|
|
require := require.New(t)
|
2019-02-14 15:59:14 +00:00
|
|
|
a := NewTestAgent(t, t.Name(), "connect { enabled = false }")
|
2018-03-20 17:36:05 +00:00
|
|
|
defer a.Shutdown()
|
2018-09-12 13:49:27 +00:00
|
|
|
testrpc.WaitForTestAgent(t, a.RPC, "dc1")
|
2018-03-20 17:36:05 +00:00
|
|
|
|
|
|
|
req, _ := http.NewRequest("GET", "/v1/connect/ca/roots", nil)
|
|
|
|
resp := httptest.NewRecorder()
|
2018-07-25 19:26:27 +00:00
|
|
|
_, err := a.srv.ConnectCARoots(resp, req)
|
|
|
|
require.Error(err)
|
|
|
|
require.Contains(err.Error(), "Connect must be enabled")
|
2018-03-20 17:36:05 +00:00
|
|
|
}
|
2018-03-21 17:10:53 +00:00
|
|
|
|
|
|
|
func TestConnectCARoots_list(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
assert := assert.New(t)
|
2019-02-14 15:59:14 +00:00
|
|
|
a := NewTestAgent(t, t.Name(), "")
|
2018-03-21 17:10:53 +00:00
|
|
|
defer a.Shutdown()
|
2018-09-10 15:58:53 +00:00
|
|
|
testrpc.WaitForTestAgent(t, a.RPC, "dc1")
|
2018-03-21 17:10:53 +00:00
|
|
|
|
2018-04-30 21:23:49 +00:00
|
|
|
// Set some CAs. Note that NewTestAgent already bootstraps one CA so this just
|
|
|
|
// adds a second and makes it active.
|
|
|
|
ca2 := connect.TestCAConfigSet(t, a, nil)
|
2018-03-21 17:10:53 +00:00
|
|
|
|
2018-03-21 17:20:35 +00:00
|
|
|
// List
|
2018-03-21 17:10:53 +00:00
|
|
|
req, _ := http.NewRequest("GET", "/v1/connect/ca/roots", nil)
|
|
|
|
resp := httptest.NewRecorder()
|
|
|
|
obj, err := a.srv.ConnectCARoots(resp, req)
|
2018-05-04 22:28:11 +00:00
|
|
|
assert.NoError(err)
|
2018-03-21 17:10:53 +00:00
|
|
|
|
|
|
|
value := obj.(structs.IndexedCARoots)
|
2018-03-21 17:20:35 +00:00
|
|
|
assert.Equal(value.ActiveRootID, ca2.ID)
|
|
|
|
assert.Len(value.Roots, 2)
|
|
|
|
|
|
|
|
// We should never have the secret information
|
|
|
|
for _, r := range value.Roots {
|
|
|
|
assert.Equal("", r.SigningCert)
|
|
|
|
assert.Equal("", r.SigningKey)
|
|
|
|
}
|
2018-03-21 17:10:53 +00:00
|
|
|
}
|
2018-05-04 22:28:11 +00:00
|
|
|
|
|
|
|
func TestConnectCAConfig(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
|
|
|
|
assert := assert.New(t)
|
2019-02-14 15:59:14 +00:00
|
|
|
a := NewTestAgent(t, t.Name(), "")
|
2018-05-04 22:28:11 +00:00
|
|
|
defer a.Shutdown()
|
2018-09-12 13:49:27 +00:00
|
|
|
testrpc.WaitForTestAgent(t, a.RPC, "dc1")
|
2018-05-04 22:28:11 +00:00
|
|
|
|
2018-06-22 16:48:41 +00:00
|
|
|
expected := &structs.ConsulCAProviderConfig{
|
|
|
|
RotationPeriod: 90 * 24 * time.Hour,
|
|
|
|
}
|
2018-07-16 09:46:10 +00:00
|
|
|
expected.LeafCertTTL = 72 * time.Hour
|
2018-05-04 22:28:11 +00:00
|
|
|
|
|
|
|
// Get the initial config.
|
|
|
|
{
|
|
|
|
req, _ := http.NewRequest("GET", "/v1/connect/ca/configuration", nil)
|
|
|
|
resp := httptest.NewRecorder()
|
|
|
|
obj, err := a.srv.ConnectCAConfiguration(resp, req)
|
|
|
|
assert.NoError(err)
|
|
|
|
|
|
|
|
value := obj.(structs.CAConfiguration)
|
2018-05-09 22:12:31 +00:00
|
|
|
parsed, err := ca.ParseConsulCAConfig(value.Config)
|
2018-05-04 22:28:11 +00:00
|
|
|
assert.NoError(err)
|
|
|
|
assert.Equal("consul", value.Provider)
|
|
|
|
assert.Equal(expected, parsed)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Set the config.
|
|
|
|
{
|
2018-06-22 16:48:41 +00:00
|
|
|
body := bytes.NewBuffer([]byte(`
|
|
|
|
{
|
|
|
|
"Provider": "consul",
|
|
|
|
"Config": {
|
2018-07-16 09:46:10 +00:00
|
|
|
"LeafCertTTL": "72h",
|
|
|
|
"RotationPeriod": "1h"
|
2018-06-22 16:48:41 +00:00
|
|
|
}
|
|
|
|
}`))
|
2018-05-04 22:28:11 +00:00
|
|
|
req, _ := http.NewRequest("PUT", "/v1/connect/ca/configuration", body)
|
|
|
|
resp := httptest.NewRecorder()
|
|
|
|
_, err := a.srv.ConnectCAConfiguration(resp, req)
|
|
|
|
assert.NoError(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// The config should be updated now.
|
|
|
|
{
|
2018-06-22 16:48:41 +00:00
|
|
|
expected.RotationPeriod = time.Hour
|
2018-05-04 22:28:11 +00:00
|
|
|
req, _ := http.NewRequest("GET", "/v1/connect/ca/configuration", nil)
|
|
|
|
resp := httptest.NewRecorder()
|
|
|
|
obj, err := a.srv.ConnectCAConfiguration(resp, req)
|
|
|
|
assert.NoError(err)
|
|
|
|
|
|
|
|
value := obj.(structs.CAConfiguration)
|
2018-05-09 22:12:31 +00:00
|
|
|
parsed, err := ca.ParseConsulCAConfig(value.Config)
|
2018-05-04 22:28:11 +00:00
|
|
|
assert.NoError(err)
|
|
|
|
assert.Equal("consul", value.Provider)
|
|
|
|
assert.Equal(expected, parsed)
|
|
|
|
}
|
|
|
|
}
|