vault/command/server/config_oss_test.go
Steven Clark 411fcd7486
Add kms_library configuration stanza (#13352)
- Add the kms_library configuration stanza to Vault's command/server
 - Provide validation of keys and general configuration.
 - Add initial kms_library configuration documentation
 - Attempt at startup to verify we can read the configured HSM Library
 - Hook in KmsLibrary config into the Validate to detect typo/unused keys
2021-12-07 09:58:23 -05:00

24 lines
399 B
Go

// +build !enterprise
package server
import (
"testing"
)
func TestLoadConfigFile_topLevel(t *testing.T) {
testLoadConfigFile_topLevel(t, nil)
}
func TestLoadConfigFile_json2(t *testing.T) {
testLoadConfigFile_json2(t, nil)
}
func TestParseEntropy(t *testing.T) {
testParseEntropy(t, true)
}
func TestKmsLibraryFailsForNonHSMBinary(t *testing.T) {
testKmsLibraryFailsForNonHSMBinary(t)
}