1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-02 08:13:28 +00:00
Beego/core/config/yaml/yaml_test.go

152 lines
3.2 KiB
Go
Raw Normal View History

2020-07-22 14:50:08 +00:00
// Copyright 2014 beego Author. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package yaml
import (
"fmt"
"os"
"testing"
2020-08-31 13:02:22 +00:00
"github.com/stretchr/testify/assert"
"github.com/astaxie/beego/core/config"
2020-07-22 14:50:08 +00:00
)
func TestYaml(t *testing.T) {
var (
yamlcontext = `
"appname": beeapi
"httpport": 8080
"mysqlport": 3600
"PI": 3.1415976
"runmode": dev
"autorender": false
"copyrequestbody": true
"PATH": GOPATH
"path1": ${GOPATH}
"path2": ${GOPATH||/home/go}
"empty": ""
2020-08-31 13:02:22 +00:00
"user":
"name": "tom"
"age": 13
2020-07-22 14:50:08 +00:00
`
keyValue = map[string]interface{}{
"appname": "beeapi",
"httpport": 8080,
"mysqlport": int64(3600),
"PI": 3.1415976,
"runmode": "dev",
"autorender": false,
"copyrequestbody": true,
"PATH": "GOPATH",
"path1": os.Getenv("GOPATH"),
"path2": os.Getenv("GOPATH"),
"error": "",
"emptystrings": []string{},
}
)
f, err := os.Create("testyaml.conf")
if err != nil {
t.Fatal(err)
}
_, err = f.WriteString(yamlcontext)
if err != nil {
f.Close()
t.Fatal(err)
}
f.Close()
defer os.Remove("testyaml.conf")
yamlconf, err := config.NewConfig("yaml", "testyaml.conf")
if err != nil {
t.Fatal(err)
}
2020-10-13 14:32:41 +00:00
res, _ := yamlconf.String("appname")
2020-08-26 03:46:22 +00:00
if res != "beeapi" {
2020-07-22 14:50:08 +00:00
t.Fatal("appname not equal to beeapi")
}
for k, v := range keyValue {
var (
value interface{}
err error
)
switch v.(type) {
case int:
2020-10-13 14:32:41 +00:00
value, err = yamlconf.Int(k)
2020-07-22 14:50:08 +00:00
case int64:
2020-10-13 14:32:41 +00:00
value, err = yamlconf.Int64(k)
2020-07-22 14:50:08 +00:00
case float64:
2020-10-13 14:32:41 +00:00
value, err = yamlconf.Float(k)
2020-07-22 14:50:08 +00:00
case bool:
2020-10-13 14:32:41 +00:00
value, err = yamlconf.Bool(k)
2020-07-22 14:50:08 +00:00
case []string:
2020-10-13 14:32:41 +00:00
value, err = yamlconf.Strings(k)
2020-07-22 14:50:08 +00:00
case string:
2020-10-13 14:32:41 +00:00
value, err = yamlconf.String(k)
2020-07-22 14:50:08 +00:00
default:
2020-10-13 14:32:41 +00:00
value, err = yamlconf.DIY(k)
2020-07-22 14:50:08 +00:00
}
if err != nil {
t.Errorf("get key %q value fatal,%v err %s", k, v, err)
} else if fmt.Sprintf("%v", v) != fmt.Sprintf("%v", value) {
t.Errorf("get key %q value, want %v got %v .", k, v, value)
}
}
2020-10-13 14:32:41 +00:00
if err = yamlconf.Set("name", "astaxie"); err != nil {
2020-07-22 14:50:08 +00:00
t.Fatal(err)
}
2020-10-13 14:32:41 +00:00
res, _ = yamlconf.String("name")
2020-08-26 03:46:22 +00:00
if res != "astaxie" {
2020-07-22 14:50:08 +00:00
t.Fatal("get name error")
}
2020-10-13 14:32:41 +00:00
sub, err := yamlconf.Sub("user")
2020-08-31 13:02:22 +00:00
assert.Nil(t, err)
assert.NotNil(t, sub)
2020-10-13 14:32:41 +00:00
name, err := sub.String("name")
2020-08-31 13:02:22 +00:00
assert.Nil(t, err)
assert.Equal(t, "tom", name)
2020-10-13 14:32:41 +00:00
age, err := sub.Int("age")
2020-08-31 13:02:22 +00:00
assert.Nil(t, err)
assert.Equal(t, 13, age)
user := &User{}
2020-10-13 14:32:41 +00:00
err = sub.Unmarshaler("", user)
2020-08-31 13:02:22 +00:00
assert.Nil(t, err)
assert.Equal(t, "tom", user.Name)
assert.Equal(t, 13, user.Age)
user = &User{}
2020-10-13 14:32:41 +00:00
err = yamlconf.Unmarshaler("user", user)
2020-08-31 13:02:22 +00:00
assert.Nil(t, err)
assert.Equal(t, "tom", user.Name)
assert.Equal(t, 13, user.Age)
}
type User struct {
Name string `yaml:"name"`
Age int `yaml:"age"`
2020-07-22 14:50:08 +00:00
}