fix sample.ini (#37106)

This commit is contained in:
Alexander Emelin
2021-07-22 17:50:27 +03:00
committed by GitHub
parent 2f4c893cf3
commit 6b2d33dc14
2 changed files with 16 additions and 6 deletions

View File

@@ -54,6 +54,16 @@ func TestLoadingSettings(t *testing.T) {
}
})
Convey("sample.ini should load successfully", func() {
customInitPath := CustomInitPath
CustomInitPath = "conf/sample.ini"
cfg := NewCfg()
err := cfg.Load(&CommandLineArgs{HomePath: "../../"})
So(err, ShouldBeNil)
// Restore CustomInitPath to avoid side effects.
CustomInitPath = customInitPath
})
Convey("Should be able to override via environment variables", func() {
err := os.Setenv("GF_SECURITY_ADMIN_USER", "superduper")
require.NoError(t, err)