2020-11-14 11:24:49 +08:00
|
|
|
// Copyright (C) 2019-2020 Zilliz. 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.
|
|
|
|
|
2020-11-16 21:10:43 +08:00
|
|
|
package paramtable
|
2020-11-14 11:24:49 +08:00
|
|
|
|
|
|
|
import (
|
2021-10-01 08:52:50 +08:00
|
|
|
"fmt"
|
2020-12-08 14:41:04 +08:00
|
|
|
"os"
|
2020-11-14 11:24:49 +08:00
|
|
|
"testing"
|
|
|
|
|
2021-09-26 19:46:17 +08:00
|
|
|
"path/filepath"
|
|
|
|
|
2021-09-02 22:18:10 +08:00
|
|
|
"github.com/milvus-io/milvus/internal/proto/commonpb"
|
2020-11-14 11:24:49 +08:00
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
2021-06-18 15:20:08 +08:00
|
|
|
var baseParams = BaseTable{}
|
2020-11-16 21:10:43 +08:00
|
|
|
|
|
|
|
func TestMain(m *testing.M) {
|
2021-06-18 15:20:08 +08:00
|
|
|
baseParams.Init()
|
2020-12-08 14:41:04 +08:00
|
|
|
code := m.Run()
|
|
|
|
os.Exit(code)
|
2020-11-16 21:10:43 +08:00
|
|
|
}
|
|
|
|
|
2021-09-07 15:20:40 +08:00
|
|
|
func TestBaseTable_SaveAndLoad(t *testing.T) {
|
2021-06-18 15:20:08 +08:00
|
|
|
err1 := baseParams.Save("int", "10")
|
2020-11-14 11:24:49 +08:00
|
|
|
assert.Nil(t, err1)
|
|
|
|
|
2021-06-18 15:20:08 +08:00
|
|
|
err2 := baseParams.Save("string", "testSaveAndLoad")
|
2020-11-14 11:24:49 +08:00
|
|
|
assert.Nil(t, err2)
|
|
|
|
|
2021-06-18 15:20:08 +08:00
|
|
|
err3 := baseParams.Save("float", "1.234")
|
2020-11-14 11:24:49 +08:00
|
|
|
assert.Nil(t, err3)
|
|
|
|
|
2021-06-18 15:20:08 +08:00
|
|
|
r1, _ := baseParams.Load("int")
|
2020-11-14 11:24:49 +08:00
|
|
|
assert.Equal(t, "10", r1)
|
|
|
|
|
2021-06-18 15:20:08 +08:00
|
|
|
r2, _ := baseParams.Load("string")
|
2020-11-14 11:24:49 +08:00
|
|
|
assert.Equal(t, "testSaveAndLoad", r2)
|
|
|
|
|
2021-06-18 15:20:08 +08:00
|
|
|
r3, _ := baseParams.Load("float")
|
2020-11-14 11:24:49 +08:00
|
|
|
assert.Equal(t, "1.234", r3)
|
|
|
|
|
2021-06-18 15:20:08 +08:00
|
|
|
err4 := baseParams.Remove("int")
|
2020-11-14 11:24:49 +08:00
|
|
|
assert.Nil(t, err4)
|
|
|
|
|
2021-06-18 15:20:08 +08:00
|
|
|
err5 := baseParams.Remove("string")
|
2020-11-14 11:24:49 +08:00
|
|
|
assert.Nil(t, err5)
|
|
|
|
|
2021-06-18 15:20:08 +08:00
|
|
|
err6 := baseParams.Remove("float")
|
2020-11-14 11:24:49 +08:00
|
|
|
assert.Nil(t, err6)
|
|
|
|
}
|
|
|
|
|
2021-09-07 15:20:40 +08:00
|
|
|
func TestBaseTable_LoadFromKVPair(t *testing.T) {
|
2021-09-02 22:18:10 +08:00
|
|
|
var kvPairs []*commonpb.KeyValuePair
|
|
|
|
kvPairs = append(kvPairs, &commonpb.KeyValuePair{
|
|
|
|
Key: "k1",
|
|
|
|
Value: "v1",
|
|
|
|
})
|
|
|
|
kvPairs = append(kvPairs, &commonpb.KeyValuePair{
|
|
|
|
Key: "k2",
|
|
|
|
Value: "v2",
|
|
|
|
})
|
|
|
|
|
|
|
|
err := baseParams.LoadFromKVPair(kvPairs)
|
|
|
|
assert.Nil(t, err)
|
|
|
|
|
|
|
|
v, err := baseParams.Load("k1")
|
|
|
|
assert.Nil(t, err)
|
|
|
|
assert.Equal(t, "v1", v)
|
|
|
|
|
|
|
|
v, err = baseParams.Load("k2")
|
|
|
|
assert.Nil(t, err)
|
|
|
|
assert.Equal(t, "v2", v)
|
|
|
|
}
|
|
|
|
|
2021-09-07 15:20:40 +08:00
|
|
|
func TestBaseTable_LoadRange(t *testing.T) {
|
2021-06-18 15:20:08 +08:00
|
|
|
_ = baseParams.Save("xxxaab", "10")
|
|
|
|
_ = baseParams.Save("xxxfghz", "20")
|
|
|
|
_ = baseParams.Save("xxxbcde", "1.1")
|
|
|
|
_ = baseParams.Save("xxxabcd", "testSaveAndLoad")
|
|
|
|
_ = baseParams.Save("xxxzhi", "12")
|
2020-11-14 11:24:49 +08:00
|
|
|
|
2021-06-18 15:20:08 +08:00
|
|
|
keys, values, err := baseParams.LoadRange("xxxa", "xxxg", 10)
|
2020-11-14 11:24:49 +08:00
|
|
|
assert.Nil(t, err)
|
|
|
|
assert.Equal(t, 4, len(keys))
|
|
|
|
assert.Equal(t, "10", values[0])
|
|
|
|
assert.Equal(t, "testSaveAndLoad", values[1])
|
|
|
|
assert.Equal(t, "1.1", values[2])
|
|
|
|
assert.Equal(t, "20", values[3])
|
|
|
|
|
2021-06-18 15:20:08 +08:00
|
|
|
_ = baseParams.Remove("abc")
|
|
|
|
_ = baseParams.Remove("fghz")
|
|
|
|
_ = baseParams.Remove("bcde")
|
|
|
|
_ = baseParams.Remove("abcd")
|
|
|
|
_ = baseParams.Remove("zhi")
|
2020-11-14 11:24:49 +08:00
|
|
|
}
|
|
|
|
|
2021-09-07 15:20:40 +08:00
|
|
|
func TestBaseTable_Remove(t *testing.T) {
|
2021-06-18 15:20:08 +08:00
|
|
|
err1 := baseParams.Save("RemoveInt", "10")
|
2020-11-14 11:24:49 +08:00
|
|
|
assert.Nil(t, err1)
|
|
|
|
|
2021-06-18 15:20:08 +08:00
|
|
|
err2 := baseParams.Save("RemoveString", "testRemove")
|
2020-11-14 11:24:49 +08:00
|
|
|
assert.Nil(t, err2)
|
|
|
|
|
2021-06-18 15:20:08 +08:00
|
|
|
err3 := baseParams.Save("RemoveFloat", "1.234")
|
2020-11-14 11:24:49 +08:00
|
|
|
assert.Nil(t, err3)
|
|
|
|
|
2021-06-18 15:20:08 +08:00
|
|
|
err4 := baseParams.Remove("RemoveInt")
|
2020-11-14 11:24:49 +08:00
|
|
|
assert.Nil(t, err4)
|
|
|
|
|
2021-06-18 15:20:08 +08:00
|
|
|
err5 := baseParams.Remove("RemoveString")
|
2020-11-14 11:24:49 +08:00
|
|
|
assert.Nil(t, err5)
|
|
|
|
|
2021-06-18 15:20:08 +08:00
|
|
|
err6 := baseParams.Remove("RemoveFloat")
|
2020-11-14 11:24:49 +08:00
|
|
|
assert.Nil(t, err6)
|
|
|
|
}
|
|
|
|
|
2021-09-07 15:20:40 +08:00
|
|
|
func TestBaseTable_LoadYaml(t *testing.T) {
|
2021-06-18 15:20:08 +08:00
|
|
|
err := baseParams.LoadYaml("milvus.yaml")
|
2020-11-14 11:24:49 +08:00
|
|
|
assert.Nil(t, err)
|
2021-09-02 22:18:10 +08:00
|
|
|
assert.Panics(t, func() { baseParams.LoadYaml("advanced/not_exist.yaml") })
|
2020-11-14 11:24:49 +08:00
|
|
|
|
2021-06-18 15:20:08 +08:00
|
|
|
_, err = baseParams.Load("etcd.address")
|
2020-12-08 14:41:04 +08:00
|
|
|
assert.Nil(t, err)
|
2021-06-18 15:20:08 +08:00
|
|
|
_, err = baseParams.Load("pulsar.port")
|
2020-12-08 14:41:04 +08:00
|
|
|
assert.Nil(t, err)
|
2020-11-14 11:24:49 +08:00
|
|
|
}
|
2021-09-02 22:18:10 +08:00
|
|
|
|
2021-09-26 19:46:17 +08:00
|
|
|
func TestBaseTable_ConfDir(t *testing.T) {
|
|
|
|
rightConfig := baseParams.configDir
|
|
|
|
// fake dir
|
|
|
|
baseParams.configDir = "./"
|
|
|
|
|
|
|
|
assert.Panics(t, func() { baseParams.loadFromMilvusYaml() })
|
|
|
|
|
|
|
|
baseParams.configDir = rightConfig
|
2021-10-28 21:24:41 +08:00
|
|
|
baseParams.loadFromMilvusYaml()
|
2021-09-26 19:46:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestBateTable_ConfPath(t *testing.T) {
|
|
|
|
os.Setenv("MILVUSCONF", "test")
|
|
|
|
config := baseParams.initConfPath()
|
|
|
|
assert.Equal(t, config, "test")
|
|
|
|
|
|
|
|
os.Unsetenv("MILVUSCONF")
|
|
|
|
dir, _ := os.Getwd()
|
|
|
|
config = baseParams.initConfPath()
|
|
|
|
assert.Equal(t, filepath.Clean(config), filepath.Clean(dir+"/../../../configs/"))
|
|
|
|
|
|
|
|
// test use get dir
|
|
|
|
os.Chdir(dir + "/../../../")
|
|
|
|
defer os.Chdir(dir)
|
|
|
|
config = baseParams.initConfPath()
|
|
|
|
assert.Equal(t, filepath.Clean(config), filepath.Clean(dir+"/../../../configs/"))
|
|
|
|
}
|
|
|
|
|
2021-09-07 15:20:40 +08:00
|
|
|
func TestBaseTable_Parse(t *testing.T) {
|
2021-09-02 22:18:10 +08:00
|
|
|
t.Run("ParseBool", func(t *testing.T) {
|
|
|
|
assert.Nil(t, baseParams.Save("key", "true"))
|
|
|
|
assert.True(t, baseParams.ParseBool("key", false))
|
|
|
|
assert.False(t, baseParams.ParseBool("not_exist_key", false))
|
|
|
|
|
|
|
|
assert.Nil(t, baseParams.Save("key", "rand"))
|
|
|
|
assert.Panics(t, func() { baseParams.ParseBool("key", false) })
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("ParseFloat", func(t *testing.T) {
|
|
|
|
assert.Nil(t, baseParams.Save("key", "0"))
|
|
|
|
assert.Equal(t, float64(0), baseParams.ParseFloat("key"))
|
|
|
|
|
|
|
|
assert.Nil(t, baseParams.Save("key", "3.14"))
|
|
|
|
assert.Equal(t, float64(3.14), baseParams.ParseFloat("key"))
|
|
|
|
|
|
|
|
assert.Panics(t, func() { baseParams.ParseFloat("not_exist_key") })
|
|
|
|
assert.Nil(t, baseParams.Save("key", "abc"))
|
|
|
|
assert.Panics(t, func() { baseParams.ParseFloat("key") })
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("ParseInt32", func(t *testing.T) {
|
|
|
|
assert.Nil(t, baseParams.Save("key", "0"))
|
|
|
|
assert.Equal(t, int32(0), baseParams.ParseInt32("key"))
|
|
|
|
|
|
|
|
assert.Nil(t, baseParams.Save("key", "314"))
|
|
|
|
assert.Equal(t, int32(314), baseParams.ParseInt32("key"))
|
|
|
|
|
|
|
|
assert.Panics(t, func() { baseParams.ParseInt32("not_exist_key") })
|
|
|
|
assert.Nil(t, baseParams.Save("key", "abc"))
|
|
|
|
assert.Panics(t, func() { baseParams.ParseInt32("key") })
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("ParseInt64", func(t *testing.T) {
|
|
|
|
assert.Nil(t, baseParams.Save("key", "0"))
|
|
|
|
assert.Equal(t, int64(0), baseParams.ParseInt64("key"))
|
|
|
|
|
|
|
|
assert.Nil(t, baseParams.Save("key", "314"))
|
|
|
|
assert.Equal(t, int64(314), baseParams.ParseInt64("key"))
|
|
|
|
|
|
|
|
assert.Panics(t, func() { baseParams.ParseInt64("not_exist_key") })
|
|
|
|
assert.Nil(t, baseParams.Save("key", "abc"))
|
|
|
|
assert.Panics(t, func() { baseParams.ParseInt64("key") })
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2021-09-07 15:20:40 +08:00
|
|
|
func Test_ConvertRangeToIntSlice(t *testing.T) {
|
2021-09-02 22:18:10 +08:00
|
|
|
t.Run("ConvertRangeToIntSlice", func(t *testing.T) {
|
|
|
|
slice := ConvertRangeToIntSlice("0,10", ",")
|
|
|
|
assert.Equal(t, 10, len(slice))
|
|
|
|
|
|
|
|
assert.Panics(t, func() { ConvertRangeToIntSlice("0", ",") })
|
|
|
|
assert.Panics(t, func() { ConvertRangeToIntSlice("0, 10", ",") })
|
|
|
|
assert.Panics(t, func() { ConvertRangeToIntSlice("abc,10", ",") })
|
|
|
|
assert.Panics(t, func() { ConvertRangeToIntSlice("0,abc", ",") })
|
|
|
|
assert.Panics(t, func() { ConvertRangeToIntSlice("-1,9", ",") })
|
|
|
|
assert.Panics(t, func() { ConvertRangeToIntSlice("9,0", ",") })
|
|
|
|
})
|
|
|
|
}
|
2021-09-26 21:18:11 +08:00
|
|
|
|
2021-10-01 08:52:50 +08:00
|
|
|
func Test_SetLogger(t *testing.T) {
|
|
|
|
t.Run("TestSetLooger", func(t *testing.T) {
|
|
|
|
baseParams.RoleName = "rootcoord"
|
|
|
|
baseParams.Save("log.file.rootPath", ".")
|
|
|
|
baseParams.SetLogger(UniqueID(-1))
|
|
|
|
fmt.Println(baseParams.Log.File.Filename)
|
|
|
|
assert.Equal(t, "rootcoord.log", baseParams.Log.File.Filename)
|
|
|
|
|
|
|
|
baseParams.RoleName = "datanode"
|
|
|
|
baseParams.SetLogger(UniqueID(1))
|
|
|
|
assert.Equal(t, "datanode-1.log", baseParams.Log.File.Filename)
|
|
|
|
|
|
|
|
baseParams.RoleName = "datanode"
|
|
|
|
baseParams.SetLogger(UniqueID(0))
|
|
|
|
assert.Equal(t, "datanode-0.log", baseParams.Log.File.Filename)
|
2021-09-26 21:18:11 +08:00
|
|
|
})
|
|
|
|
}
|