mirror of
https://github.com/helm/helm.git
synced 2026-04-08 02:25:03 -04:00
At this time both Go 1.19 and 1.20 are supported. The version specified in the go.mod file is the minimum version we expect Helm to be compiled against. This is the oldest supported version to support environments where others compile Helm. The Helm project is using Go 1.20 to build Helm itself. Updating to Go 1.19 also includes dealing with io/ioutil deprecation and some additional linting issues around staticcheck. All the staticcheck issues were in test files so linting was skipped for those. Signed-off-by: Matt Farina <matt.farina@suse.com>
65 lines
1.7 KiB
Go
65 lines
1.7 KiB
Go
/*
|
|
Copyright The Helm Authors.
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
*/
|
|
|
|
package installer // import "helm.sh/helm/v3/pkg/plugin/installer"
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
"testing"
|
|
|
|
"helm.sh/helm/v3/pkg/helmpath"
|
|
)
|
|
|
|
var _ Installer = new(LocalInstaller)
|
|
|
|
func TestLocalInstaller(t *testing.T) {
|
|
// Make a temp dir
|
|
tdir := t.TempDir()
|
|
if err := os.WriteFile(filepath.Join(tdir, "plugin.yaml"), []byte{}, 0644); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
source := "../testdata/plugdir/good/echo"
|
|
i, err := NewForSource(source, "")
|
|
if err != nil {
|
|
t.Fatalf("unexpected error: %s", err)
|
|
}
|
|
|
|
if err := Install(i); err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
if i.Path() != helmpath.DataPath("plugins", "echo") {
|
|
t.Fatalf("expected path '$XDG_CONFIG_HOME/helm/plugins/helm-env', got %q", i.Path())
|
|
}
|
|
defer os.RemoveAll(filepath.Dir(helmpath.DataPath())) // helmpath.DataPath is like /tmp/helm013130971/helm
|
|
}
|
|
|
|
func TestLocalInstallerNotAFolder(t *testing.T) {
|
|
source := "../testdata/plugdir/good/echo/plugin.yaml"
|
|
i, err := NewForSource(source, "")
|
|
if err != nil {
|
|
t.Fatalf("unexpected error: %s", err)
|
|
}
|
|
|
|
err = Install(i)
|
|
if err == nil {
|
|
t.Fatal("expected error")
|
|
}
|
|
if err != ErrPluginNotAFolder {
|
|
t.Fatalf("expected error to equal: %q", err)
|
|
}
|
|
}
|