add more tests for conf (#371)
This commit is contained in:
@@ -6,9 +6,21 @@ import (
|
|||||||
"testing"
|
"testing"
|
||||||
|
|
||||||
"github.com/stretchr/testify/assert"
|
"github.com/stretchr/testify/assert"
|
||||||
|
"github.com/tal-tech/go-zero/core/fs"
|
||||||
"github.com/tal-tech/go-zero/core/hash"
|
"github.com/tal-tech/go-zero/core/hash"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
func TestLoadConfig_notExists(t *testing.T) {
|
||||||
|
assert.NotNil(t, LoadConfig("not_a_file", nil))
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestLoadConfig_notRecogFile(t *testing.T) {
|
||||||
|
filename, err := fs.TempFilenameWithText("hello")
|
||||||
|
assert.Nil(t, err)
|
||||||
|
defer os.Remove(filename)
|
||||||
|
assert.NotNil(t, LoadConfig(filename, nil))
|
||||||
|
}
|
||||||
|
|
||||||
func TestConfigJson(t *testing.T) {
|
func TestConfigJson(t *testing.T) {
|
||||||
tests := []string{
|
tests := []string{
|
||||||
".json",
|
".json",
|
||||||
|
|||||||
@@ -24,6 +24,20 @@ func TestProperties(t *testing.T) {
|
|||||||
assert.Equal(t, "test", props.GetString("app.name"))
|
assert.Equal(t, "test", props.GetString("app.name"))
|
||||||
assert.Equal(t, "app", props.GetString("app.program"))
|
assert.Equal(t, "app", props.GetString("app.program"))
|
||||||
assert.Equal(t, 5, props.GetInt("app.threads"))
|
assert.Equal(t, 5, props.GetInt("app.threads"))
|
||||||
|
|
||||||
|
val := props.ToString()
|
||||||
|
assert.Contains(t, val, "app.name")
|
||||||
|
assert.Contains(t, val, "app.program")
|
||||||
|
assert.Contains(t, val, "app.threads")
|
||||||
|
}
|
||||||
|
|
||||||
|
func TestLoadProperties_badContent(t *testing.T) {
|
||||||
|
filename, err := fs.TempFilenameWithText("hello")
|
||||||
|
assert.Nil(t, err)
|
||||||
|
defer os.Remove(filename)
|
||||||
|
_, err = LoadProperties(filename)
|
||||||
|
assert.NotNil(t, err)
|
||||||
|
assert.True(t, len(err.Error()) > 0)
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestSetString(t *testing.T) {
|
func TestSetString(t *testing.T) {
|
||||||
|
|||||||
Reference in New Issue
Block a user