mirror of https://github.com/rocboss/paopao-ce
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
115 lines
2.9 KiB
115 lines
2.9 KiB
package conf
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestUseDefault(t *testing.T) {
|
|
suites := map[string][]string{
|
|
"default": {"Sms", "Alipay", "Zinc", "MySQL", "Redis", "AliOSS", "LogZinc"},
|
|
"develop": {"Zinc", "MySQL", "AliOSS", "LogFile"},
|
|
"slim": {"Zinc", "MySQL", "Redis", "AliOSS", "LogFile"},
|
|
}
|
|
kv := map[string]string{
|
|
"sms": "SmsJuhe",
|
|
}
|
|
features := newFeatures(suites, kv)
|
|
for _, data := range []struct {
|
|
key string
|
|
expect string
|
|
exist bool
|
|
}{
|
|
{"Sms", "SmsJuhe", true},
|
|
{"Alipay", "", true},
|
|
{"Zinc", "", true},
|
|
{"Redis", "", true},
|
|
{"Database", "", false},
|
|
} {
|
|
if v, ok := features.Cfg(data.key); ok != data.exist || v != data.expect {
|
|
t.Errorf("key: %s expect: %s exist: %t got v: %s ok: %t", data.key, data.expect, data.exist, v, ok)
|
|
}
|
|
}
|
|
for exp, res := range map[string]bool{
|
|
"Sms": true,
|
|
"Sms = SmsJuhe": true,
|
|
"SmsJuhe": false,
|
|
"default": true,
|
|
} {
|
|
if ok := features.CfgIf(exp); res != ok {
|
|
t.Errorf("CfgIf(%s) want %t got %t", exp, res, ok)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestUse(t *testing.T) {
|
|
suites := map[string][]string{
|
|
"default": {"Sms", "Alipay", "Zinc", "MySQL", "Redis", "AliOSS", "LogZinc"},
|
|
"develop": {"Zinc", "MySQL", "AliOSS", "LogFile"},
|
|
"slim": {"Zinc", "MySQL", "Redis", "AliOSS", "LogFile"},
|
|
}
|
|
kv := map[string]string{
|
|
"sms": "SmsJuhe",
|
|
}
|
|
features := newFeatures(suites, kv)
|
|
|
|
features.Use([]string{"develop"}, true)
|
|
for _, data := range []struct {
|
|
key string
|
|
expect string
|
|
exist bool
|
|
}{
|
|
{"Sms", "", false},
|
|
{"Alipay", "", false},
|
|
{"Zinc", "", true},
|
|
{"Redis", "", false},
|
|
{"Database", "", false},
|
|
} {
|
|
if v, ok := features.Cfg(data.key); ok != data.exist || v != data.expect {
|
|
t.Errorf("key: %s expect: %s exist: %t got v: %s ok: %t", data.key, data.expect, data.exist, v, ok)
|
|
}
|
|
}
|
|
for exp, res := range map[string]bool{
|
|
"Sms": false,
|
|
"Sms = SmsJuhe": false,
|
|
"SmsJuhe": false,
|
|
"default": false,
|
|
"develop": true,
|
|
} {
|
|
if ok := features.CfgIf(exp); res != ok {
|
|
t.Errorf("CfgIf(%s) want %t got %t", exp, res, ok)
|
|
}
|
|
}
|
|
|
|
features.UseDefault()
|
|
features.Use([]string{"slim", "", "demo"}, false)
|
|
for _, data := range []struct {
|
|
key string
|
|
expect string
|
|
exist bool
|
|
}{
|
|
{"Sms", "SmsJuhe", true},
|
|
{"Alipay", "", true},
|
|
{"Zinc", "", true},
|
|
{"Redis", "", true},
|
|
{"Database", "", false},
|
|
{"demo", "", true},
|
|
} {
|
|
if v, ok := features.Cfg(data.key); ok != data.exist || v != data.expect {
|
|
t.Errorf("key: %s expect: %s exist: %t got v: %s ok: %t", data.key, data.expect, data.exist, v, ok)
|
|
}
|
|
}
|
|
for exp, res := range map[string]bool{
|
|
"Sms": true,
|
|
"Sms = SmsJuhe": true,
|
|
"SmsJuhe": false,
|
|
"default": true,
|
|
"develop": false,
|
|
"slim": true,
|
|
"demo": true,
|
|
} {
|
|
if ok := features.CfgIf(exp); res != ok {
|
|
t.Errorf("CfgIf(%s) want %t got %t", exp, res, ok)
|
|
}
|
|
}
|
|
}
|