mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-07 15:17:03 +02:00
* cli: only set default command parameter to plugin name if sha256 is provided * api: write warnings to RegisterPluginResponse, propagate up to cli * api: filter out 'Endpoint replaced the value of these parameters' warning before returning in RegisterPluginWithContext * docs * add TODO on filtering that links to api type parameter deprecation ticket * fix tests * allocate filteredWarning slice only if there are warnings * improve deferred resp close and early error return conditionals in RegisterPluginWithContext * refer to sha256 as cli option -sha256 in command cli usage * break up ui error lines for sha256 and version flag check * consolidate if statements for sha256 and command, oci_image check in cli * consolidate if statements for sha256 and command, oci_image check in api * new RegisterPluginV2 and RegisterPluginWithContextV2 api client functions for backward compatibility * add changelog * more descriptive changelog * rename RegisterPluginV2 to RegisterPluginDetailed and RegisterPluginWithContextV2 to RegisterPluginWithContextDetailed * return nil, nil if no warnings to preserve status code * fix eof from decoding (check if no content before decoding) * doc for RegisterPluginResponse * only validate plugin.Command in plugin catalog set for downloaded and binary plugins, which rely on plugin.Command input; extracted artifact plugins don't rely on plugin.Command input * Update website/content/api-docs/system/plugins-catalog.mdx Co-authored-by: Sarah Chavis <62406755+schavis@users.noreply.github.com> * Update website/content/api-docs/system/plugins-catalog.mdx Co-authored-by: Sarah Chavis <62406755+schavis@users.noreply.github.com> * Update website/content/api-docs/system/plugins-catalog.mdx Co-authored-by: Sarah Chavis <62406755+schavis@users.noreply.github.com> * Update website/content/docs/commands/plugin/register.mdx Co-authored-by: Sarah Chavis <62406755+schavis@users.noreply.github.com> * Update website/content/docs/commands/plugin/register.mdx Co-authored-by: Sarah Chavis <62406755+schavis@users.noreply.github.com> * Update website/content/docs/commands/plugin/register.mdx Co-authored-by: Sarah Chavis <62406755+schavis@users.noreply.github.com> * Update website/content/docs/commands/plugin/register.mdx Co-authored-by: Sarah Chavis <62406755+schavis@users.noreply.github.com> * move up enterprise note on plugin register command doc * [DOCS] Editorial suggestions for PR #30811 (#31111) * suggestions * move common reqs to a partial * fix typo * tweak reqs * Update website/content/partials/plugins/prepare-plugin.mdx Co-authored-by: helenfufu <25168806+helenfufu@users.noreply.github.com> * Update website/content/partials/plugins/prepare-plugin.mdx Co-authored-by: helenfufu <25168806+helenfufu@users.noreply.github.com> * Update website/content/partials/plugins/prepare-plugin.mdx Co-authored-by: helenfufu <25168806+helenfufu@users.noreply.github.com> * tweak feedback * remove deprecation * Update website/content/partials/plugins/common-requirements.mdx Co-authored-by: helenfufu <25168806+helenfufu@users.noreply.github.com> * save * Update website/content/docs/plugins/rollback.mdx Co-authored-by: helenfufu <25168806+helenfufu@users.noreply.github.com> * Update website/content/docs/plugins/upgrade.mdx Co-authored-by: helenfufu <25168806+helenfufu@users.noreply.github.com> * fix formatting --------- Co-authored-by: helenfufu <25168806+helenfufu@users.noreply.github.com> --------- Co-authored-by: Sarah Chavis <62406755+schavis@users.noreply.github.com>
87 lines
2.0 KiB
Go
87 lines
2.0 KiB
Go
// Copyright (c) HashiCorp, Inc.
|
|
// SPDX-License-Identifier: BUSL-1.1
|
|
|
|
package command
|
|
|
|
import (
|
|
"crypto/sha256"
|
|
"fmt"
|
|
"io"
|
|
"io/ioutil"
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/hashicorp/vault/api"
|
|
)
|
|
|
|
// 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
|
|
if err := ioutil.WriteFile(pth, nil, 0o755); err != nil {
|
|
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.
|
|
func testPluginCreateAndRegister(tb testing.TB, client *api.Client, dir, name string, pluginType api.PluginType, version string) (string, string) {
|
|
tb.Helper()
|
|
|
|
pth, sha256Sum := testPluginCreate(tb, dir, name)
|
|
|
|
resp, err := client.Sys().RegisterPluginDetailed(&api.RegisterPluginInput{
|
|
Name: name,
|
|
Type: pluginType,
|
|
Command: name,
|
|
SHA256: sha256Sum,
|
|
Version: version,
|
|
})
|
|
if err != nil {
|
|
tb.Fatal(err)
|
|
}
|
|
if len(resp.Warnings) > 0 {
|
|
tb.Errorf("expected no warnings, got: %v", resp.Warnings)
|
|
}
|
|
|
|
return pth, sha256Sum
|
|
}
|
|
|
|
// testPluginCreateAndRegisterVersioned creates a versioned plugin and registers it in the catalog.
|
|
func testPluginCreateAndRegisterVersioned(tb testing.TB, client *api.Client, dir, name string, pluginType api.PluginType) (string, string, string) {
|
|
tb.Helper()
|
|
|
|
pth, sha256Sum := testPluginCreate(tb, dir, name)
|
|
|
|
resp, err := client.Sys().RegisterPluginDetailed(&api.RegisterPluginInput{
|
|
Name: name,
|
|
Type: pluginType,
|
|
Command: name,
|
|
SHA256: sha256Sum,
|
|
Version: "v1.0.0",
|
|
})
|
|
if err != nil {
|
|
tb.Fatal(err)
|
|
}
|
|
if len(resp.Warnings) > 0 {
|
|
tb.Errorf("expected no warnings, got: %v", resp.Warnings)
|
|
}
|
|
|
|
return pth, sha256Sum, "v1.0.0"
|
|
}
|