2018-08-25 03:03:55 +08:00
|
|
|
// Copyright The Helm Authors.
|
2016-12-02 21:15:36 +08:00
|
|
|
// 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.
|
|
|
|
|
2022-04-14 22:56:31 +08:00
|
|
|
//go:build windows
|
2016-12-02 21:15:36 +08:00
|
|
|
|
|
|
|
package helmpath
|
|
|
|
|
|
|
|
import (
|
2019-01-14 16:11:21 +08:00
|
|
|
"os"
|
2016-12-02 21:15:36 +08:00
|
|
|
"testing"
|
2019-01-14 16:11:21 +08:00
|
|
|
|
2024-12-27 05:33:51 +08:00
|
|
|
"helm.sh/helm/v4/pkg/helmpath/xdg"
|
2016-12-02 21:15:36 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestHelmHome(t *testing.T) {
|
2020-02-19 15:52:28 +08:00
|
|
|
os.Setenv(xdg.CacheHomeEnvVar, "c:\\")
|
|
|
|
os.Setenv(xdg.ConfigHomeEnvVar, "d:\\")
|
|
|
|
os.Setenv(xdg.DataHomeEnvVar, "e:\\")
|
2016-12-02 21:15:36 +08:00
|
|
|
isEq := func(t *testing.T, a, b string) {
|
|
|
|
if a != b {
|
|
|
|
t.Errorf("Expected %q, got %q", b, a)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-01-14 16:11:21 +08:00
|
|
|
isEq(t, CachePath(), "c:\\helm")
|
|
|
|
isEq(t, ConfigPath(), "d:\\helm")
|
|
|
|
isEq(t, DataPath(), "e:\\helm")
|
|
|
|
|
|
|
|
// test to see if lazy-loading environment variables at runtime works
|
|
|
|
os.Setenv(xdg.CacheHomeEnvVar, "f:\\")
|
|
|
|
|
|
|
|
isEq(t, CachePath(), "f:\\helm")
|
2016-12-02 21:15:36 +08:00
|
|
|
}
|