milvus/pkg/util/paramtable/service_param_test.go
congqixia 8b5754f7fe
enhance: Add segment seal proportion jitter (#34636)
See also #34574

Add jitter for segment seal proportion to avoid seal operation burst in
short period of time.

This PR also fix license header in paramtable pkg.

Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>
2024-07-15 14:47:39 +08:00

212 lines
6.4 KiB
Go

// Licensed to the LF AI & Data foundation under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you 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 paramtable
import (
"testing"
"time"
"github.com/stretchr/testify/assert"
"github.com/milvus-io/milvus/pkg/config"
"github.com/milvus-io/milvus/pkg/util/metricsinfo"
)
func TestServiceParam(t *testing.T) {
var SParams ServiceParam
bt := NewBaseTable(SkipRemote(true))
SParams.init(bt)
t.Run("test etcdConfig", func(t *testing.T) {
Params := &SParams.EtcdCfg
assert.NotZero(t, len(Params.Endpoints.GetAsStrings()))
t.Logf("etcd endpoints = %s", Params.Endpoints.GetAsStrings())
assert.NotEqual(t, Params.MetaRootPath, "")
t.Logf("meta root path = %s", Params.MetaRootPath.GetValue())
assert.NotEqual(t, Params.KvRootPath, "")
t.Logf("kv root path = %s", Params.KvRootPath.GetValue())
assert.NotNil(t, Params.EtcdUseSSL.GetAsBool())
t.Logf("use ssl = %t", Params.EtcdUseSSL.GetAsBool())
assert.NotEmpty(t, Params.EtcdTLSKey.GetValue())
t.Logf("tls key = %s", Params.EtcdTLSKey.GetValue())
assert.NotEmpty(t, Params.EtcdTLSCACert.GetValue())
t.Logf("tls CACert = %s", Params.EtcdTLSCACert.GetValue())
assert.NotEmpty(t, Params.EtcdTLSCert.GetValue())
t.Logf("tls cert = %s", Params.EtcdTLSCert.GetValue())
assert.NotEmpty(t, Params.EtcdTLSMinVersion.GetValue())
t.Logf("tls minVersion = %s", Params.EtcdTLSMinVersion.GetValue())
// test UseEmbedEtcd
t.Setenv("etcd.use.embed", "true")
t.Setenv(metricsinfo.DeployModeEnvKey, metricsinfo.ClusterDeployMode)
assert.Panics(t, func() {
NewBaseTable()
})
t.Setenv(metricsinfo.DeployModeEnvKey, metricsinfo.StandaloneDeployMode)
t.Setenv("etcd.use.embed", "false")
SParams.init(bt)
})
t.Run("test tikvConfig", func(t *testing.T) {
Params := &SParams.TiKVCfg
assert.NotZero(t, len(Params.Endpoints.GetAsStrings()))
t.Logf("tikv endpoints = %s", Params.Endpoints.GetAsStrings())
assert.NotEqual(t, Params.MetaRootPath, "")
t.Logf("meta root path = %s", Params.MetaRootPath.GetValue())
assert.NotEqual(t, Params.KvRootPath, "")
t.Logf("kv root path = %s", Params.KvRootPath.GetValue())
t.Setenv(metricsinfo.DeployModeEnvKey, metricsinfo.StandaloneDeployMode)
SParams.init(bt)
})
t.Run("test pulsarConfig", func(t *testing.T) {
// test default value
{
pc := &PulsarConfig{}
base := &BaseTable{mgr: config.NewManager()}
pc.Init(base)
assert.Empty(t, pc.Address.GetValue())
}
{
assert.NotEqual(t, SParams.PulsarCfg.Address.GetValue(), "")
t.Logf("pulsar address = %s", SParams.PulsarCfg.Address.GetValue())
assert.Equal(t, SParams.PulsarCfg.MaxMessageSize.GetAsInt(), SuggestPulsarMaxMessageSize)
}
address := "pulsar://localhost:6650"
{
bt.Save("pulsar.address", address)
assert.Equal(t, SParams.PulsarCfg.Address.GetValue(), address)
}
{
bt.Save("pulsar.address", "localhost")
bt.Save("pulsar.port", "6650")
assert.Equal(t, SParams.PulsarCfg.Address.GetValue(), address)
}
})
t.Run("test pulsar web config", func(t *testing.T) {
assert.NotEqual(t, SParams.PulsarCfg.Address.GetValue(), "")
{
assert.NotEqual(t, SParams.PulsarCfg.WebAddress.GetValue(), "")
}
{
bt.Save(SParams.PulsarCfg.Address.Key, "u\\invalid")
assert.Equal(t, SParams.PulsarCfg.WebAddress.GetValue(), "")
}
{
bt.Save(SParams.PulsarCfg.Address.Key, "")
assert.Equal(t, SParams.PulsarCfg.WebAddress.GetValue(), "")
}
})
t.Run("test pulsar auth config", func(t *testing.T) {
Params := &SParams.PulsarCfg
assert.Equal(t, "", Params.AuthPlugin.GetValue())
assert.Equal(t, "{}", Params.AuthParams.GetValue())
})
t.Run("test pulsar auth config formatter", func(t *testing.T) {
Params := &SParams.PulsarCfg
assert.Equal(t, "{}", Params.AuthParams.Formatter(""))
assert.Equal(t, "{\"a\":\"b\"}", Params.AuthParams.Formatter("a:b"))
})
t.Run("test pulsar tenant/namespace config", func(t *testing.T) {
Params := &SParams.PulsarCfg
assert.Equal(t, "public", Params.Tenant.GetValue())
assert.Equal(t, "default", Params.Namespace.GetValue())
})
t.Run("pulsar_operation_timeout", func(t *testing.T) {
Params := &SParams.PulsarCfg
assert.Equal(t, "60", Params.RequestTimeout.GetValue())
})
t.Run("test rocksmqConfig", func(t *testing.T) {
Params := &SParams.RocksmqCfg
assert.NotEqual(t, Params.Path.GetValue(), "")
t.Logf("rocksmq path = %s", Params.Path.GetValue())
})
t.Run("test kafkaConfig", func(t *testing.T) {
// test default value
{
kc := &KafkaConfig{}
base := &BaseTable{mgr: config.NewManager()}
kc.Init(base)
assert.Empty(t, kc.Address.GetValue())
assert.Empty(t, kc.SaslMechanisms.GetValue())
assert.Empty(t, kc.SecurityProtocol.GetValue())
assert.Equal(t, kc.ReadTimeout.GetAsDuration(time.Second), 10*time.Second)
assert.Equal(t, kc.KafkaUseSSL.GetAsBool(), false)
assert.Empty(t, kc.KafkaTLSCACert.GetValue())
assert.Empty(t, kc.KafkaTLSCert.GetValue())
assert.Empty(t, kc.KafkaTLSKey.GetValue())
assert.Empty(t, kc.KafkaTLSKeyPassword.GetValue())
}
})
t.Run("test minioConfig", func(t *testing.T) {
Params := &SParams.MinioCfg
addr := Params.Address.GetValue()
equal := addr == "localhost:9000" || addr == "minio:9000"
assert.Equal(t, equal, true)
t.Logf("minio address = %s", Params.Address.GetValue())
assert.Equal(t, Params.AccessKeyID.GetValue(), "minioadmin")
assert.Equal(t, Params.SecretAccessKey.GetValue(), "minioadmin")
assert.Equal(t, Params.UseSSL.GetAsBool(), false)
assert.NotEmpty(t, Params.SslCACert.GetValue())
assert.Equal(t, Params.UseIAM.GetAsBool(), false)
assert.Equal(t, Params.CloudProvider.GetValue(), "aws")
assert.Equal(t, Params.IAMEndpoint.GetValue(), "")
t.Logf("Minio BucketName = %s", Params.BucketName.GetValue())
t.Logf("Minio rootpath = %s", Params.RootPath.GetValue())
})
}