2018-07-13 17:35:08 +00:00
|
|
|
package command
|
|
|
|
|
|
|
|
import (
|
|
|
|
"crypto/sha256"
|
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/hashicorp/vault/api"
|
2019-04-12 21:54:35 +00:00
|
|
|
"github.com/hashicorp/vault/sdk/helper/consts"
|
2018-07-13 17:35:08 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// testPluginCreate creates a sample plugin in a tempdir and returns the shasum
|
|
|
|
// and filepath to the plugin.
|
|
|
|
func testPluginCreate(tb testing.TB, dir, name string) (string, string) {
|
|
|
|
tb.Helper()
|
|
|
|
|
|
|
|
pth := dir + "/" + name
|
2021-04-08 16:43:39 +00:00
|
|
|
if err := ioutil.WriteFile(pth, nil, 0o755); err != nil {
|
2018-07-13 17:35:08 +00:00
|
|
|
tb.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
f, err := os.Open(pth)
|
|
|
|
if err != nil {
|
|
|
|
tb.Fatal(err)
|
|
|
|
}
|
|
|
|
defer f.Close()
|
|
|
|
|
|
|
|
h := sha256.New()
|
|
|
|
if _, err := io.Copy(h, f); err != nil {
|
|
|
|
tb.Fatal(err)
|
|
|
|
}
|
|
|
|
sha256Sum := fmt.Sprintf("%x", h.Sum(nil))
|
|
|
|
|
|
|
|
return pth, sha256Sum
|
|
|
|
}
|
|
|
|
|
|
|
|
// testPluginCreateAndRegister creates a plugin and registers it in the catalog.
|
2018-11-07 01:21:24 +00:00
|
|
|
func testPluginCreateAndRegister(tb testing.TB, client *api.Client, dir, name string, pluginType consts.PluginType) (string, string) {
|
2018-07-13 17:35:08 +00:00
|
|
|
tb.Helper()
|
|
|
|
|
|
|
|
pth, sha256Sum := testPluginCreate(tb, dir, name)
|
|
|
|
|
2022-04-07 19:12:58 +00:00
|
|
|
if err := client.Sys().RegisterPlugin(&api.RegisterPluginInput{
|
2018-07-13 17:35:08 +00:00
|
|
|
Name: name,
|
2018-11-07 01:21:24 +00:00
|
|
|
Type: pluginType,
|
2018-07-13 17:35:08 +00:00
|
|
|
Command: name,
|
|
|
|
SHA256: sha256Sum,
|
|
|
|
}); err != nil {
|
|
|
|
tb.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return pth, sha256Sum
|
|
|
|
}
|
2022-08-31 18:23:05 +00:00
|
|
|
|
|
|
|
// testPluginCreateAndRegisterVersioned creates a versioned plugin and registers it in the catalog.
|
|
|
|
func testPluginCreateAndRegisterVersioned(tb testing.TB, client *api.Client, dir, name string, pluginType consts.PluginType) (string, string, string) {
|
|
|
|
tb.Helper()
|
|
|
|
|
|
|
|
pth, sha256Sum := testPluginCreate(tb, dir, name)
|
|
|
|
|
|
|
|
if err := client.Sys().RegisterPlugin(&api.RegisterPluginInput{
|
|
|
|
Name: name,
|
|
|
|
Type: pluginType,
|
|
|
|
Command: name,
|
|
|
|
SHA256: sha256Sum,
|
|
|
|
Version: "v1.0.0",
|
|
|
|
}); err != nil {
|
|
|
|
tb.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return pth, sha256Sum, "v1.0.0"
|
|
|
|
}
|