mirror of
https://github.com/spf13/viper
synced 2025-05-11 22:57:21 +00:00
Merge 6d59e31dc5
into 2062cd6ee6
This commit is contained in:
commit
40675c5fb8
2 changed files with 17 additions and 2 deletions
8
viper.go
8
viper.go
|
@ -1405,9 +1405,13 @@ func InConfig(key string) bool { return v.InConfig(key) }
|
|||
|
||||
func (v *Viper) InConfig(key string) bool {
|
||||
// if the requested key is an alias, then return the proper key
|
||||
key = v.realKey(key)
|
||||
key = v.realKey(strings.ToLower(key))
|
||||
|
||||
_, exists := v.config[key]
|
||||
path := strings.Split(key, v.keyDelim)
|
||||
lastKey := strings.ToLower(path[len(path)-1])
|
||||
deepestMap := deepSearch(v.config, path[0:len(path)-1])
|
||||
|
||||
_, exists := deepestMap[lastKey]
|
||||
return exists
|
||||
}
|
||||
|
||||
|
|
|
@ -1293,6 +1293,17 @@ func TestIsSet(t *testing.T) {
|
|||
assert.True(t, v.IsSet("barbaz"))
|
||||
}
|
||||
|
||||
func TestInConfig(t *testing.T) {
|
||||
v := New()
|
||||
v.SetConfigType("yaml")
|
||||
v.ReadConfig(bytes.NewBuffer(yamlExample))
|
||||
assert.True(t, v.InConfig("clothing.jacket"))
|
||||
assert.False(t, v.InConfig("clothing.jackets"))
|
||||
assert.False(t, v.InConfig("helloworld"))
|
||||
v.Set("helloworld", "fubar")
|
||||
assert.False(t, v.InConfig("helloworld"))
|
||||
}
|
||||
|
||||
func TestDirsSearch(t *testing.T) {
|
||||
root, config, cleanup := initDirs(t)
|
||||
defer cleanup()
|
||||
|
|
Loading…
Add table
Reference in a new issue