Files
vault/builtin/logical/transit/path_config_keys_test.go
hashicorp-copywrite[bot] 0b12cdcfd1 [COMPLIANCE] License changes (#22290)
* 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>
2023-08-10 18:14:03 -07:00

71 lines
1.6 KiB
Go

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
package transit
import (
"context"
"testing"
"github.com/hashicorp/vault/sdk/logical"
)
func TestTransit_ConfigKeys(t *testing.T) {
b, s := createBackendWithSysView(t)
doReq := func(req *logical.Request) *logical.Response {
resp, err := b.HandleRequest(context.Background(), req)
if err != nil || (resp != nil && resp.IsError()) {
t.Fatalf("got err:\n%#v\nreq:\n%#v\n", err, *req)
}
return resp
}
doErrReq := func(req *logical.Request) {
resp, err := b.HandleRequest(context.Background(), req)
if err == nil {
if resp == nil || !resp.IsError() {
t.Fatalf("expected error; req:\n%#v\n", *req)
}
}
}
// First read the global config
req := &logical.Request{
Storage: s,
Operation: logical.ReadOperation,
Path: "config/keys",
}
resp := doReq(req)
if resp.Data["disable_upsert"].(bool) != false {
t.Fatalf("expected disable_upsert to be false; got: %v", resp)
}
// Ensure we can upsert.
req.Operation = logical.CreateOperation
req.Path = "encrypt/upsert-1"
req.Data = map[string]interface{}{
"plaintext": "aGVsbG8K",
}
doReq(req)
// Disable upserting.
req.Operation = logical.UpdateOperation
req.Path = "config/keys"
req.Data = map[string]interface{}{
"disable_upsert": true,
}
doReq(req)
// Attempt upserting again, it should fail.
req.Operation = logical.CreateOperation
req.Path = "encrypt/upsert-2"
req.Data = map[string]interface{}{
"plaintext": "aGVsbG8K",
}
doErrReq(req)
// Redoing this with the first key should succeed.
req.Path = "encrypt/upsert-1"
doReq(req)
}