2020-01-10 08:33:54 -06:00
|
|
|
package setting
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestDynamicSettingsSupport_Override(t *testing.T) {
|
|
|
|
cfg := NewCfg()
|
|
|
|
envKey := "GF_FOO_BAR"
|
|
|
|
sectionName := "foo"
|
|
|
|
keyName := "bar"
|
|
|
|
expected := "dynamic value"
|
|
|
|
|
2023-06-05 04:31:03 -05:00
|
|
|
t.Setenv(envKey, expected)
|
2020-01-10 08:33:54 -06:00
|
|
|
|
|
|
|
value := cfg.SectionWithEnvOverrides(sectionName).Key(keyName).MustString("default value")
|
|
|
|
require.Equal(t, expected, value)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestDynamicSettingsSupport_NoOverride(t *testing.T) {
|
|
|
|
cfg := NewCfg()
|
2021-08-25 08:11:22 -05:00
|
|
|
|
2020-01-10 08:33:54 -06:00
|
|
|
sectionName := "foo"
|
|
|
|
keyName := "bar"
|
|
|
|
expected := "default value"
|
|
|
|
|
|
|
|
_, err := cfg.Raw.Section(sectionName).NewKey(keyName, expected)
|
|
|
|
require.NoError(t, err)
|
|
|
|
value := cfg.SectionWithEnvOverrides(sectionName).Key(keyName).String()
|
|
|
|
require.Equal(t, expected, value)
|
|
|
|
}
|