mirror of
https://github.com/spf13/viper
synced 2024-11-04 20:27:02 +00:00
refactor: add setenv helper for tests
Signed-off-by: Mark Sagi-Kazar <mark.sagikazar@gmail.com>
This commit is contained in:
parent
ea890285a5
commit
cfcfed504d
3 changed files with 76 additions and 32 deletions
42
internal/testutil/env.go
Normal file
42
internal/testutil/env.go
Normal file
|
@ -0,0 +1,42 @@
|
||||||
|
package testutil
|
||||||
|
|
||||||
|
import (
|
||||||
|
"os"
|
||||||
|
"testing"
|
||||||
|
)
|
||||||
|
|
||||||
|
// Based on https://github.com/frankban/quicktest/blob/577841610793d24f99e31cc2c0ef3a541fefd7c7/patch.go#L34-L64
|
||||||
|
// Licensed under the MIT license
|
||||||
|
// Copyright (c) 2017 Canonical Ltd.
|
||||||
|
|
||||||
|
// Setenv sets an environment variable to a temporary value for the
|
||||||
|
// duration of the test.
|
||||||
|
//
|
||||||
|
// At the end of the test (see "Deferred execution" in the package docs), the
|
||||||
|
// environment variable is returned to its original value.
|
||||||
|
func Setenv(t *testing.T, name, val string) {
|
||||||
|
setenv(t, name, val, true)
|
||||||
|
}
|
||||||
|
|
||||||
|
// Unsetenv unsets an environment variable for the duration of a test.
|
||||||
|
func Unsetenv(t *testing.T, name string) {
|
||||||
|
setenv(t, name, "", false)
|
||||||
|
}
|
||||||
|
|
||||||
|
// setenv sets or unsets an environment variable to a temporary value for the
|
||||||
|
// duration of the test
|
||||||
|
func setenv(t *testing.T, name, val string, valOK bool) {
|
||||||
|
oldVal, oldOK := os.LookupEnv(name)
|
||||||
|
if valOK {
|
||||||
|
os.Setenv(name, val)
|
||||||
|
} else {
|
||||||
|
os.Unsetenv(name)
|
||||||
|
}
|
||||||
|
t.Cleanup(func() {
|
||||||
|
if oldOK {
|
||||||
|
os.Setenv(name, oldVal)
|
||||||
|
} else {
|
||||||
|
os.Unsetenv(name)
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
|
@ -15,6 +15,8 @@ import (
|
||||||
"path/filepath"
|
"path/filepath"
|
||||||
"reflect"
|
"reflect"
|
||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
|
"github.com/spf13/viper/internal/testutil"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestCopyAndInsensitiviseMap(t *testing.T) {
|
func TestCopyAndInsensitiviseMap(t *testing.T) {
|
||||||
|
@ -62,8 +64,8 @@ func TestAbsPathify(t *testing.T) {
|
||||||
homer := filepath.Join(home, "homer")
|
homer := filepath.Join(home, "homer")
|
||||||
wd, _ := os.Getwd()
|
wd, _ := os.Getwd()
|
||||||
|
|
||||||
os.Setenv("HOMER_ABSOLUTE_PATH", homer)
|
testutil.Setenv(t, "HOMER_ABSOLUTE_PATH", homer)
|
||||||
os.Setenv("VAR_WITH_RELATIVE_PATH", "relative")
|
testutil.Setenv(t, "VAR_WITH_RELATIVE_PATH", "relative")
|
||||||
|
|
||||||
tests := []struct {
|
tests := []struct {
|
||||||
input string
|
input string
|
||||||
|
|
|
@ -29,6 +29,8 @@ import (
|
||||||
"github.com/spf13/pflag"
|
"github.com/spf13/pflag"
|
||||||
"github.com/stretchr/testify/assert"
|
"github.com/stretchr/testify/assert"
|
||||||
"github.com/stretchr/testify/require"
|
"github.com/stretchr/testify/require"
|
||||||
|
|
||||||
|
"github.com/spf13/viper/internal/testutil"
|
||||||
)
|
)
|
||||||
|
|
||||||
var yamlExample = []byte(`Hacker: true
|
var yamlExample = []byte(`Hacker: true
|
||||||
|
@ -488,10 +490,10 @@ func TestEnv(t *testing.T) {
|
||||||
BindEnv("id")
|
BindEnv("id")
|
||||||
BindEnv("f", "FOOD", "OLD_FOOD")
|
BindEnv("f", "FOOD", "OLD_FOOD")
|
||||||
|
|
||||||
os.Setenv("ID", "13")
|
testutil.Setenv(t, "ID", "13")
|
||||||
os.Setenv("FOOD", "apple")
|
testutil.Setenv(t, "FOOD", "apple")
|
||||||
os.Setenv("OLD_FOOD", "banana")
|
testutil.Setenv(t, "OLD_FOOD", "banana")
|
||||||
os.Setenv("NAME", "crunk")
|
testutil.Setenv(t, "NAME", "crunk")
|
||||||
|
|
||||||
assert.Equal(t, "13", Get("id"))
|
assert.Equal(t, "13", Get("id"))
|
||||||
assert.Equal(t, "apple", Get("f"))
|
assert.Equal(t, "apple", Get("f"))
|
||||||
|
@ -507,8 +509,7 @@ func TestMultipleEnv(t *testing.T) {
|
||||||
|
|
||||||
BindEnv("f", "FOOD", "OLD_FOOD")
|
BindEnv("f", "FOOD", "OLD_FOOD")
|
||||||
|
|
||||||
os.Unsetenv("FOOD")
|
testutil.Setenv(t, "OLD_FOOD", "banana")
|
||||||
os.Setenv("OLD_FOOD", "banana")
|
|
||||||
|
|
||||||
assert.Equal(t, "banana", Get("f"))
|
assert.Equal(t, "banana", Get("f"))
|
||||||
}
|
}
|
||||||
|
@ -519,12 +520,7 @@ func TestEmptyEnv(t *testing.T) {
|
||||||
BindEnv("type") // Empty environment variable
|
BindEnv("type") // Empty environment variable
|
||||||
BindEnv("name") // Bound, but not set environment variable
|
BindEnv("name") // Bound, but not set environment variable
|
||||||
|
|
||||||
os.Unsetenv("type")
|
testutil.Setenv(t, "TYPE", "")
|
||||||
os.Unsetenv("TYPE")
|
|
||||||
os.Unsetenv("name")
|
|
||||||
os.Unsetenv("NAME")
|
|
||||||
|
|
||||||
os.Setenv("TYPE", "")
|
|
||||||
|
|
||||||
assert.Equal(t, "donut", Get("type"))
|
assert.Equal(t, "donut", Get("type"))
|
||||||
assert.Equal(t, "Cake", Get("name"))
|
assert.Equal(t, "Cake", Get("name"))
|
||||||
|
@ -538,12 +534,7 @@ func TestEmptyEnv_Allowed(t *testing.T) {
|
||||||
BindEnv("type") // Empty environment variable
|
BindEnv("type") // Empty environment variable
|
||||||
BindEnv("name") // Bound, but not set environment variable
|
BindEnv("name") // Bound, but not set environment variable
|
||||||
|
|
||||||
os.Unsetenv("type")
|
testutil.Setenv(t, "TYPE", "")
|
||||||
os.Unsetenv("TYPE")
|
|
||||||
os.Unsetenv("name")
|
|
||||||
os.Unsetenv("NAME")
|
|
||||||
|
|
||||||
os.Setenv("TYPE", "")
|
|
||||||
|
|
||||||
assert.Equal(t, "", Get("type"))
|
assert.Equal(t, "", Get("type"))
|
||||||
assert.Equal(t, "Cake", Get("name"))
|
assert.Equal(t, "Cake", Get("name"))
|
||||||
|
@ -556,9 +547,9 @@ func TestEnvPrefix(t *testing.T) {
|
||||||
BindEnv("id")
|
BindEnv("id")
|
||||||
BindEnv("f", "FOOD") // not using prefix
|
BindEnv("f", "FOOD") // not using prefix
|
||||||
|
|
||||||
os.Setenv("FOO_ID", "13")
|
testutil.Setenv(t, "FOO_ID", "13")
|
||||||
os.Setenv("FOOD", "apple")
|
testutil.Setenv(t, "FOOD", "apple")
|
||||||
os.Setenv("FOO_NAME", "crunk")
|
testutil.Setenv(t, "FOO_NAME", "crunk")
|
||||||
|
|
||||||
assert.Equal(t, "13", Get("id"))
|
assert.Equal(t, "13", Get("id"))
|
||||||
assert.Equal(t, "apple", Get("f"))
|
assert.Equal(t, "apple", Get("f"))
|
||||||
|
@ -573,7 +564,9 @@ func TestAutoEnv(t *testing.T) {
|
||||||
Reset()
|
Reset()
|
||||||
|
|
||||||
AutomaticEnv()
|
AutomaticEnv()
|
||||||
os.Setenv("FOO_BAR", "13")
|
|
||||||
|
testutil.Setenv(t, "FOO_BAR", "13")
|
||||||
|
|
||||||
assert.Equal(t, "13", Get("foo_bar"))
|
assert.Equal(t, "13", Get("foo_bar"))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -582,7 +575,9 @@ func TestAutoEnvWithPrefix(t *testing.T) {
|
||||||
|
|
||||||
AutomaticEnv()
|
AutomaticEnv()
|
||||||
SetEnvPrefix("Baz")
|
SetEnvPrefix("Baz")
|
||||||
os.Setenv("BAZ_BAR", "13")
|
|
||||||
|
testutil.Setenv(t, "BAZ_BAR", "13")
|
||||||
|
|
||||||
assert.Equal(t, "13", Get("bar"))
|
assert.Equal(t, "13", Get("bar"))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -590,7 +585,8 @@ func TestSetEnvKeyReplacer(t *testing.T) {
|
||||||
Reset()
|
Reset()
|
||||||
|
|
||||||
AutomaticEnv()
|
AutomaticEnv()
|
||||||
os.Setenv("REFRESH_INTERVAL", "30s")
|
|
||||||
|
testutil.Setenv(t, "REFRESH_INTERVAL", "30s")
|
||||||
|
|
||||||
replacer := strings.NewReplacer("-", "_")
|
replacer := strings.NewReplacer("-", "_")
|
||||||
SetEnvKeyReplacer(replacer)
|
SetEnvKeyReplacer(replacer)
|
||||||
|
@ -602,7 +598,8 @@ func TestEnvKeyReplacer(t *testing.T) {
|
||||||
v := NewWithOptions(EnvKeyReplacer(strings.NewReplacer("-", "_")))
|
v := NewWithOptions(EnvKeyReplacer(strings.NewReplacer("-", "_")))
|
||||||
|
|
||||||
v.AutomaticEnv()
|
v.AutomaticEnv()
|
||||||
_ = os.Setenv("REFRESH_INTERVAL", "30s")
|
|
||||||
|
testutil.Setenv(t, "REFRESH_INTERVAL", "30s")
|
||||||
|
|
||||||
assert.Equal(t, "30s", v.Get("refresh-interval"))
|
assert.Equal(t, "30s", v.Get("refresh-interval"))
|
||||||
}
|
}
|
||||||
|
@ -729,8 +726,9 @@ func TestAllKeysWithEnv(t *testing.T) {
|
||||||
v.BindEnv("id")
|
v.BindEnv("id")
|
||||||
v.BindEnv("foo.bar")
|
v.BindEnv("foo.bar")
|
||||||
v.SetEnvKeyReplacer(strings.NewReplacer(".", "_"))
|
v.SetEnvKeyReplacer(strings.NewReplacer(".", "_"))
|
||||||
os.Setenv("ID", "13")
|
|
||||||
os.Setenv("FOO_BAR", "baz")
|
testutil.Setenv(t, "ID", "13")
|
||||||
|
testutil.Setenv(t, "FOO_BAR", "baz")
|
||||||
|
|
||||||
expectedKeys := sort.StringSlice{"id", "foo.bar"}
|
expectedKeys := sort.StringSlice{"id", "foo.bar"}
|
||||||
expectedKeys.Sort()
|
expectedKeys.Sort()
|
||||||
|
@ -1038,7 +1036,8 @@ func TestBoundCaseSensitivity(t *testing.T) {
|
||||||
assert.Equal(t, "brown", Get("eyes"))
|
assert.Equal(t, "brown", Get("eyes"))
|
||||||
|
|
||||||
BindEnv("eYEs", "TURTLE_EYES")
|
BindEnv("eYEs", "TURTLE_EYES")
|
||||||
os.Setenv("TURTLE_EYES", "blue")
|
|
||||||
|
testutil.Setenv(t, "TURTLE_EYES", "blue")
|
||||||
|
|
||||||
assert.Equal(t, "blue", Get("eyes"))
|
assert.Equal(t, "blue", Get("eyes"))
|
||||||
|
|
||||||
|
@ -1219,8 +1218,9 @@ func TestIsSet(t *testing.T) {
|
||||||
v.BindEnv("foo")
|
v.BindEnv("foo")
|
||||||
v.BindEnv("clothing.hat")
|
v.BindEnv("clothing.hat")
|
||||||
v.BindEnv("clothing.hats")
|
v.BindEnv("clothing.hats")
|
||||||
os.Setenv("FOO", "bar")
|
|
||||||
os.Setenv("CLOTHING_HAT", "bowler")
|
testutil.Setenv(t, "FOO", "bar")
|
||||||
|
testutil.Setenv(t, "CLOTHING_HAT", "bowler")
|
||||||
|
|
||||||
assert.True(t, v.IsSet("eyes")) // in the config file
|
assert.True(t, v.IsSet("eyes")) // in the config file
|
||||||
assert.True(t, v.IsSet("foo")) // in the environment
|
assert.True(t, v.IsSet("foo")) // in the environment
|
||||||
|
|
Loading…
Reference in a new issue