mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-06 22:57:02 +02:00
* Adding explicit MPL license for sub-package. This directory and its subdirectories (packages) contain files licensed with the MPLv2 `LICENSE` file in this directory and are intentionally licensed separately from the BSL `LICENSE` file at the root of this repository. * Adding explicit MPL license for sub-package. This directory and its subdirectories (packages) contain files licensed with the MPLv2 `LICENSE` file in this directory and are intentionally licensed separately from the BSL `LICENSE` file at the root of this repository. * Updating the license from MPL to Business Source License. Going forward, this project will be licensed under the Business Source License v1.1. Please see our blog post for more details at https://hashi.co/bsl-blog, FAQ at www.hashicorp.com/licensing-faq, and details of the license at www.hashicorp.com/bsl. * add missing license headers * Update copyright file headers to BUS-1.1 * Fix test that expected exact offset on hcl file --------- Co-authored-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com> Co-authored-by: Sarah Thompson <sthompson@hashicorp.com> Co-authored-by: Brian Kassouf <bkassouf@hashicorp.com>
297 lines
8.3 KiB
Go
297 lines
8.3 KiB
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
package http
|
|
|
|
import (
|
|
"encoding/hex"
|
|
"encoding/json"
|
|
"fmt"
|
|
"reflect"
|
|
"testing"
|
|
|
|
"github.com/go-test/deep"
|
|
"github.com/hashicorp/vault/sdk/helper/testhelpers/schema"
|
|
"github.com/hashicorp/vault/vault"
|
|
)
|
|
|
|
// Test to check if the API errors out when wrong number of PGP keys are
|
|
// supplied for rekey
|
|
func TestSysRekey_Init_pgpKeysEntriesForRekey(t *testing.T) {
|
|
cluster := vault.NewTestCluster(t, nil, &vault.TestClusterOptions{
|
|
HandlerFunc: Handler,
|
|
RequestResponseCallback: schema.ResponseValidatingCallback(t),
|
|
})
|
|
cluster.Start()
|
|
defer cluster.Cleanup()
|
|
cl := cluster.Cores[0].Client
|
|
|
|
_, err := cl.Logical().Write("sys/rekey/init", map[string]interface{}{
|
|
"secret_shares": 5,
|
|
"secret_threshold": 3,
|
|
"pgp_keys": []string{"pgpkey1"},
|
|
})
|
|
if err == nil {
|
|
t.Fatal("should have failed to write pgp key entry due to mismatched keys", err)
|
|
}
|
|
}
|
|
|
|
func TestSysRekey_Init_Status(t *testing.T) {
|
|
t.Run("status-barrier-default", func(t *testing.T) {
|
|
cluster := vault.NewTestCluster(t, nil, &vault.TestClusterOptions{
|
|
HandlerFunc: Handler,
|
|
RequestResponseCallback: schema.ResponseValidatingCallback(t),
|
|
})
|
|
cluster.Start()
|
|
defer cluster.Cleanup()
|
|
cl := cluster.Cores[0].Client
|
|
|
|
resp, err := cl.Logical().Read("sys/rekey/init")
|
|
if err != nil {
|
|
t.Fatalf("err: %s", err)
|
|
}
|
|
|
|
actual := resp.Data
|
|
expected := map[string]interface{}{
|
|
"started": false,
|
|
"t": json.Number("0"),
|
|
"n": json.Number("0"),
|
|
"progress": json.Number("0"),
|
|
"required": json.Number("3"),
|
|
"pgp_fingerprints": interface{}(nil),
|
|
"backup": false,
|
|
"nonce": "",
|
|
"verification_required": false,
|
|
}
|
|
|
|
if !reflect.DeepEqual(actual, expected) {
|
|
t.Fatalf("\nexpected: %#v\nactual: %#v", expected, actual)
|
|
}
|
|
})
|
|
}
|
|
|
|
func TestSysRekey_Init_Setup(t *testing.T) {
|
|
t.Run("init-barrier-barrier-key", func(t *testing.T) {
|
|
cluster := vault.NewTestCluster(t, nil, &vault.TestClusterOptions{
|
|
HandlerFunc: Handler,
|
|
RequestResponseCallback: schema.ResponseValidatingCallback(t),
|
|
})
|
|
cluster.Start()
|
|
defer cluster.Cleanup()
|
|
cl := cluster.Cores[0].Client
|
|
|
|
// Start rekey
|
|
resp, err := cl.Logical().Write("sys/rekey/init", map[string]interface{}{
|
|
"secret_shares": 5,
|
|
"secret_threshold": 3,
|
|
})
|
|
if err != nil {
|
|
t.Fatalf("err: %s", err)
|
|
}
|
|
|
|
actual := resp.Data
|
|
expected := map[string]interface{}{
|
|
"started": true,
|
|
"t": json.Number("3"),
|
|
"n": json.Number("5"),
|
|
"progress": json.Number("0"),
|
|
"required": json.Number("3"),
|
|
"pgp_fingerprints": interface{}(nil),
|
|
"backup": false,
|
|
"verification_required": false,
|
|
}
|
|
|
|
if actual["nonce"].(string) == "" {
|
|
t.Fatalf("nonce was empty")
|
|
}
|
|
expected["nonce"] = actual["nonce"]
|
|
if diff := deep.Equal(actual, expected); diff != nil {
|
|
t.Fatal(diff)
|
|
}
|
|
|
|
// Get rekey status
|
|
resp, err = cl.Logical().Read("sys/rekey/init")
|
|
if err != nil {
|
|
t.Fatalf("err: %s", err)
|
|
}
|
|
|
|
actual = resp.Data
|
|
expected = map[string]interface{}{
|
|
"started": true,
|
|
"t": json.Number("3"),
|
|
"n": json.Number("5"),
|
|
"progress": json.Number("0"),
|
|
"required": json.Number("3"),
|
|
"pgp_fingerprints": interface{}(nil),
|
|
"backup": false,
|
|
"verification_required": false,
|
|
}
|
|
if actual["nonce"].(string) == "" {
|
|
t.Fatalf("nonce was empty")
|
|
}
|
|
if actual["nonce"].(string) == "" {
|
|
t.Fatalf("nonce was empty")
|
|
}
|
|
expected["nonce"] = actual["nonce"]
|
|
if !reflect.DeepEqual(actual, expected) {
|
|
t.Fatalf("\nexpected: %#v\nactual: %#v", expected, actual)
|
|
}
|
|
})
|
|
}
|
|
|
|
func TestSysRekey_Init_Cancel(t *testing.T) {
|
|
t.Run("cancel-barrier-barrier-key", func(t *testing.T) {
|
|
cluster := vault.NewTestCluster(t, nil, &vault.TestClusterOptions{
|
|
HandlerFunc: Handler,
|
|
RequestResponseCallback: schema.ResponseValidatingCallback(t),
|
|
})
|
|
cluster.Start()
|
|
defer cluster.Cleanup()
|
|
cl := cluster.Cores[0].Client
|
|
|
|
_, err := cl.Logical().Write("sys/rekey/init", map[string]interface{}{
|
|
"secret_shares": 5,
|
|
"secret_threshold": 3,
|
|
})
|
|
if err != nil {
|
|
t.Fatalf("err: %s", err)
|
|
}
|
|
|
|
_, err = cl.Logical().Delete("sys/rekey/init")
|
|
if err != nil {
|
|
t.Fatalf("err: %s", err)
|
|
}
|
|
|
|
resp, err := cl.Logical().Read("sys/rekey/init")
|
|
if err != nil {
|
|
t.Fatalf("err: %s", err)
|
|
}
|
|
|
|
actual := resp.Data
|
|
expected := map[string]interface{}{
|
|
"started": false,
|
|
"t": json.Number("0"),
|
|
"n": json.Number("0"),
|
|
"progress": json.Number("0"),
|
|
"required": json.Number("3"),
|
|
"pgp_fingerprints": interface{}(nil),
|
|
"backup": false,
|
|
"nonce": "",
|
|
"verification_required": false,
|
|
}
|
|
if !reflect.DeepEqual(actual, expected) {
|
|
t.Fatalf("\nexpected: %#v\nactual: %#v", expected, actual)
|
|
}
|
|
})
|
|
}
|
|
|
|
func TestSysRekey_badKey(t *testing.T) {
|
|
core, _, token := vault.TestCoreUnsealed(t)
|
|
ln, addr := TestServer(t, core)
|
|
defer ln.Close()
|
|
TestServerAuth(t, addr, token)
|
|
|
|
resp := testHttpPut(t, token, addr+"/v1/sys/rekey/update", map[string]interface{}{
|
|
"key": "0123",
|
|
})
|
|
testResponseStatus(t, resp, 400)
|
|
}
|
|
|
|
func TestSysRekey_Update(t *testing.T) {
|
|
t.Run("rekey-barrier-barrier-key", func(t *testing.T) {
|
|
core, keys, token := vault.TestCoreUnsealed(t)
|
|
ln, addr := TestServer(t, core)
|
|
defer ln.Close()
|
|
TestServerAuth(t, addr, token)
|
|
|
|
resp := testHttpPut(t, token, addr+"/v1/sys/rekey/init", map[string]interface{}{
|
|
"secret_shares": 5,
|
|
"secret_threshold": 3,
|
|
})
|
|
var rekeyStatus map[string]interface{}
|
|
testResponseStatus(t, resp, 200)
|
|
testResponseBody(t, resp, &rekeyStatus)
|
|
|
|
var actual map[string]interface{}
|
|
var expected map[string]interface{}
|
|
|
|
for i, key := range keys {
|
|
resp = testHttpPut(t, token, addr+"/v1/sys/rekey/update", map[string]interface{}{
|
|
"nonce": rekeyStatus["nonce"].(string),
|
|
"key": hex.EncodeToString(key),
|
|
})
|
|
|
|
actual = map[string]interface{}{}
|
|
expected = map[string]interface{}{
|
|
"started": true,
|
|
"nonce": rekeyStatus["nonce"].(string),
|
|
"backup": false,
|
|
"pgp_fingerprints": interface{}(nil),
|
|
"required": json.Number("3"),
|
|
"t": json.Number("3"),
|
|
"n": json.Number("5"),
|
|
"progress": json.Number(fmt.Sprintf("%d", i+1)),
|
|
"verification_required": false,
|
|
}
|
|
testResponseStatus(t, resp, 200)
|
|
testResponseBody(t, resp, &actual)
|
|
|
|
if i+1 == len(keys) {
|
|
delete(expected, "started")
|
|
delete(expected, "required")
|
|
delete(expected, "t")
|
|
delete(expected, "n")
|
|
delete(expected, "progress")
|
|
expected["complete"] = true
|
|
expected["keys"] = actual["keys"]
|
|
expected["keys_base64"] = actual["keys_base64"]
|
|
}
|
|
|
|
if i+1 < len(keys) && (actual["nonce"] == nil || actual["nonce"].(string) == "") {
|
|
t.Fatalf("expected a nonce, i is %d, actual is %#v", i, actual)
|
|
}
|
|
|
|
if !reflect.DeepEqual(actual, expected) {
|
|
t.Fatalf("\nexpected: \n%#v\nactual: \n%#v", expected, actual)
|
|
}
|
|
}
|
|
|
|
retKeys := actual["keys"].([]interface{})
|
|
if len(retKeys) != 5 {
|
|
t.Fatalf("bad: %#v", retKeys)
|
|
}
|
|
keysB64 := actual["keys_base64"].([]interface{})
|
|
if len(keysB64) != 5 {
|
|
t.Fatalf("bad: %#v", keysB64)
|
|
}
|
|
})
|
|
}
|
|
|
|
func TestSysRekey_ReInitUpdate(t *testing.T) {
|
|
core, keys, token := vault.TestCoreUnsealed(t)
|
|
ln, addr := TestServer(t, core)
|
|
defer ln.Close()
|
|
TestServerAuth(t, addr, token)
|
|
|
|
resp := testHttpPut(t, token, addr+"/v1/sys/rekey/init", map[string]interface{}{
|
|
"secret_shares": 5,
|
|
"secret_threshold": 3,
|
|
})
|
|
testResponseStatus(t, resp, 200)
|
|
|
|
resp = testHttpDelete(t, token, addr+"/v1/sys/rekey/init")
|
|
testResponseStatus(t, resp, 204)
|
|
|
|
resp = testHttpPut(t, token, addr+"/v1/sys/rekey/init", map[string]interface{}{
|
|
"secret_shares": 5,
|
|
"secret_threshold": 3,
|
|
})
|
|
testResponseStatus(t, resp, 200)
|
|
|
|
resp = testHttpPut(t, token, addr+"/v1/sys/rekey/update", map[string]interface{}{
|
|
"key": hex.EncodeToString(keys[0]),
|
|
})
|
|
|
|
testResponseStatus(t, resp, 400)
|
|
}
|