package ini import ( "os" "testing" "git.ali33.ru/fcg-xvii/go-tools/text/config" ) func TestINI(t *testing.T) { // read config conf, err := config.FromFile("ini", "test.ini") if err != nil { t.Fatal(err) } // get value from config main section mainVal, check := conf.Value("one") t.Log(mainVal, check) // int var i int = 0 t.Log(mainVal.Setup(&i), i) i = 0 t.Log(conf.ValueSetup("one", &i), i) t.Log("value default", conf.ValueDefault("db_connection", "").(string)) // get section main, check := conf.Section("main") t.Log(main, check) arr := main.ValueDefault("arr", []string{}) t.Log(arr) cool, check := conf.Section("cool") t.Log(cool, check) var str string = "" t.Log(cool.ValueSetup("key1", &str), str) cools, check := conf.Sections("cool") t.Log(cools, check) var f *os.File f, err = os.OpenFile("tmp.ini", os.O_CREATE|os.O_TRUNC|os.O_WRONLY, 0600) if err != nil { t.Fatal(err) } conf.Save(f) f.Close() }