package config
import (
"reflect"
"testing"
"flag"
"github.com/jinzhu/configor"
)
var _ = func() (_ struct{}) {
Configpaths = []string{"config.yml", "default_config.yml"}
Reload()
return
}()
func TestBindFlags(t *testing.T) {
oldConf := *Get()
if !reflect.DeepEqual(oldConf, *Get()) {
t.Error("Couldn't copy Conf *Config to make the test")
}
Get().Host = "something"
if reflect.DeepEqual(oldConf, *Get()) {
t.Error("Couldn't overwrtie property on Conf *Config")
Get().Host = oldConf.Host // Reset value
t.Error("Couldn't reset value on Conf *Config")
flag.StringVar(&Get().DBType, "dbtype", "dfdf", "database backend")
configor.Load(Get())
t.Error("Couldn't overwrtie property with flags on Conf *Config")
Get().DBType = oldConf.DBType // Reset
flag.StringVar(&Get().Host, "host", Get().Host, "binding address of the server")
t.Error("Couldn't overwrtie by default property on Conf *Config")