mirror of https://github.com/helm/helm
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
106 lines
2.3 KiB
106 lines
2.3 KiB
/*
|
|
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 cli
|
|
|
|
import (
|
|
"os"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/spf13/pflag"
|
|
)
|
|
|
|
func TestEnvSettings(t *testing.T) {
|
|
tests := []struct {
|
|
name string
|
|
|
|
// input
|
|
args string
|
|
envvars map[string]string
|
|
|
|
// expected values
|
|
ns, kcontext string
|
|
debug bool
|
|
}{
|
|
{
|
|
name: "defaults",
|
|
ns: "default",
|
|
},
|
|
{
|
|
name: "with flags set",
|
|
args: "--debug --namespace=myns",
|
|
ns: "myns",
|
|
debug: true,
|
|
},
|
|
{
|
|
name: "with envvars set",
|
|
envvars: map[string]string{"HELM_DEBUG": "1", "HELM_NAMESPACE": "yourns"},
|
|
ns: "yourns",
|
|
debug: true,
|
|
},
|
|
{
|
|
name: "with flags and envvars set",
|
|
args: "--debug --namespace=myns",
|
|
envvars: map[string]string{"HELM_DEBUG": "1", "HELM_NAMESPACE": "yourns"},
|
|
ns: "myns",
|
|
debug: true,
|
|
},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
t.Run(tt.name, func(t *testing.T) {
|
|
defer resetEnv()()
|
|
|
|
for k, v := range tt.envvars {
|
|
os.Setenv(k, v)
|
|
}
|
|
|
|
flags := pflag.NewFlagSet("testing", pflag.ContinueOnError)
|
|
|
|
settings := New()
|
|
settings.AddFlags(flags)
|
|
flags.Parse(strings.Split(tt.args, " "))
|
|
|
|
if settings.Debug != tt.debug {
|
|
t.Errorf("expected debug %t, got %t", tt.debug, settings.Debug)
|
|
}
|
|
if settings.Namespace() != tt.ns {
|
|
t.Errorf("expected namespace %q, got %q", tt.ns, settings.Namespace())
|
|
}
|
|
if settings.KubeContext != tt.kcontext {
|
|
t.Errorf("expected kube-context %q, got %q", tt.kcontext, settings.KubeContext)
|
|
}
|
|
})
|
|
}
|
|
}
|
|
|
|
func resetEnv() func() {
|
|
origEnv := os.Environ()
|
|
|
|
// ensure any local envvars do not hose us
|
|
for e := range New().EnvVars() {
|
|
os.Unsetenv(e)
|
|
}
|
|
|
|
return func() {
|
|
for _, pair := range origEnv {
|
|
kv := strings.SplitN(pair, "=", 2)
|
|
os.Setenv(kv[0], kv[1])
|
|
}
|
|
}
|
|
}
|