micro-config-env/env_test.go
Vasiliy Tolstov 2868c39a87 add map support
Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
2020-12-04 22:41:46 +03:00

61 lines
1.3 KiB
Go

package env_test
import (
"github.com/unistack-org/micro/v3/config"
env "github.com/unistack-org/micro-config-env"
"testing"
"context"
"os"
"fmt"
)
type Config struct {
StringValue string `env:"STRING_VALUE"`
BoolValue bool `env:"BOOL_VALUE"`
StringSlice []string `env:"STRING_SLICE"`
IntSlice []int `env:"INT_SLICE"`
MapStringValue map[string]string `env:"MAP_STRING"`
}
func TestEnv(t *testing.T) {
ctx := context.Background()
conf := &Config{StringValue: "before_load"}
cfg := env.NewConfig(config.Struct(conf))
if err := cfg.Init(); err != nil {
t.Fatal(err)
}
if err := cfg.Load(ctx); err !=nil {
t.Fatal(err)
}
if conf.StringValue != "before_load" {
t.Fatalf("something wrong with env config: %v", conf)
}
os.Setenv("STRING_VALUE","STRING_VALUE")
os.Setenv("BOOL_VALUE","true")
os.Setenv("STRING_SLICE", "STRING_SLICE1,STRING_SLICE2;STRING_SLICE3")
os.Setenv("INT_SLICE", "1,2,3,4,5")
os.Setenv("MAP_STRING", "key1=val1,key2=val2")
if err := cfg.Load(ctx); err !=nil {
t.Fatal(err)
}
if conf.StringValue != "STRING_VALUE" {
t.Fatalf("something wrong with env config: %v", conf)
}
if !conf.BoolValue {
t.Fatalf("something wrong with env config: %v", conf)
}
if len(conf.StringSlice) != 3 {
t.Fatalf("something wrong with env config: %v", conf)
}
fmt.Printf("%#+v\n", conf)
}