2022-01-05 18:02:03 +00:00
|
|
|
//go:build !enterprise
|
2018-09-18 03:03:00 +00:00
|
|
|
|
|
|
|
package vault
|
|
|
|
|
2019-02-06 02:01:18 +00:00
|
|
|
import (
|
2021-05-17 18:10:26 +00:00
|
|
|
"crypto/ed25519"
|
|
|
|
|
2019-02-06 02:01:18 +00:00
|
|
|
testing "github.com/mitchellh/go-testing-interface"
|
|
|
|
)
|
2018-09-18 03:03:00 +00:00
|
|
|
|
2021-06-03 17:30:30 +00:00
|
|
|
func GenerateTestLicenseKeys() (ed25519.PublicKey, ed25519.PrivateKey, error) { return nil, nil, nil }
|
|
|
|
func testGetLicensingConfig(key ed25519.PublicKey) *LicensingConfig { return &LicensingConfig{} }
|
|
|
|
func testExtraTestCoreSetup(testing.T, ed25519.PrivateKey, *TestClusterCore) {}
|
2020-07-10 17:11:18 +00:00
|
|
|
func testAdjustUnderlyingStorage(tcc *TestClusterCore) {
|
2019-02-06 02:01:18 +00:00
|
|
|
tcc.UnderlyingStorage = tcc.physical
|
|
|
|
}
|
2020-09-22 21:47:13 +00:00
|
|
|
func testApplyEntBaseConfig(coreConfig, base *CoreConfig) {}
|