From 46301c2d77f188ac7e41c5f521c758a4d3081d94 Mon Sep 17 00:00:00 2001 From: devShaik010 <20dpcs044hy@manuu.edu.in> Date: Fri, 19 Jun 2026 01:27:27 +0530 Subject: [PATCH] test: make HELM_PLUGINS regression test portable Signed-off-by: devShaik010 <20dpcs044hy@manuu.edu.in> --- internal/plugin/installer/base_test.go | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/internal/plugin/installer/base_test.go b/internal/plugin/installer/base_test.go index 9e6ba7c7a..bedf8bef5 100644 --- a/internal/plugin/installer/base_test.go +++ b/internal/plugin/installer/base_test.go @@ -14,10 +14,16 @@ limitations under the License. package installer // import "helm.sh/helm/v4/internal/plugin/installer" import ( + "fmt" + "path/filepath" "testing" ) func TestPath(t *testing.T) { + pluginsDir := filepath.Join(string(filepath.Separator), "helm", "data", "plugins") + systemPluginsDir := filepath.Join(string(filepath.Separator), "helm", "system", "plugins") + pluginSource := "https://github.com/jkroepke/helm-secrets" + tests := []struct { source string helmPluginsDir string @@ -25,16 +31,16 @@ func TestPath(t *testing.T) { }{ { source: "", - helmPluginsDir: "/helm/data/plugins", + helmPluginsDir: pluginsDir, expectPath: "", }, { - source: "https://github.com/jkroepke/helm-secrets", - helmPluginsDir: "/helm/data/plugins", - expectPath: "/helm/data/plugins/helm-secrets", + source: pluginSource, + helmPluginsDir: pluginsDir, + expectPath: filepath.Join(pluginsDir, filepath.Base(pluginSource)), }, { - source: "https://github.com/jkroepke/helm-secrets", - helmPluginsDir: "/helm/data/plugins:/helm/system/plugins", - expectPath: "/helm/data/plugins/helm-secrets", + source: pluginSource, + helmPluginsDir: fmt.Sprintf("%s%c%s", pluginsDir, filepath.ListSeparator, systemPluginsDir), + expectPath: filepath.Join(pluginsDir, filepath.Base(pluginSource)), }, }