mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-04 04:49:08 +08:00
6e7831470c
Signed-off-by: yun.zhang <yun.zhang@zilliz.com>
139 lines
3.8 KiB
Go
139 lines
3.8 KiB
Go
// 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.
|
|
|
|
package paramtable
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/milvus-io/milvus/internal/util/metricsinfo"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestServiceParam(t *testing.T) {
|
|
var SParams ServiceParam
|
|
SParams.Init()
|
|
|
|
t.Run("test etcdConfig", func(t *testing.T) {
|
|
Params := SParams.EtcdCfg
|
|
|
|
assert.NotZero(t, len(Params.Endpoints))
|
|
t.Logf("etcd endpoints = %s", Params.Endpoints)
|
|
|
|
assert.NotEqual(t, Params.MetaRootPath, "")
|
|
t.Logf("meta root path = %s", Params.MetaRootPath)
|
|
|
|
assert.NotEqual(t, Params.KvRootPath, "")
|
|
t.Logf("kv root path = %s", Params.KvRootPath)
|
|
|
|
assert.NotNil(t, Params.EtcdUseSSL)
|
|
t.Logf("use ssl = %t", Params.EtcdUseSSL)
|
|
|
|
assert.NotEmpty(t, Params.EtcdTLSKey)
|
|
t.Logf("tls key = %s", Params.EtcdTLSKey)
|
|
|
|
assert.NotEmpty(t, Params.EtcdTLSCACert)
|
|
t.Logf("tls CACert = %s", Params.EtcdTLSCACert)
|
|
|
|
assert.NotEmpty(t, Params.EtcdTLSCert)
|
|
t.Logf("tls cert = %s", Params.EtcdTLSCert)
|
|
|
|
assert.NotEmpty(t, Params.EtcdTLSMinVersion)
|
|
t.Logf("tls minVersion = %s", Params.EtcdTLSMinVersion)
|
|
|
|
// test UseEmbedEtcd
|
|
Params.Base.Save("etcd.use.embed", "true")
|
|
assert.Nil(t, os.Setenv(metricsinfo.DeployModeEnvKey, metricsinfo.ClusterDeployMode))
|
|
assert.Panics(t, func() { Params.initUseEmbedEtcd() })
|
|
|
|
assert.Nil(t, os.Setenv(metricsinfo.DeployModeEnvKey, metricsinfo.StandaloneDeployMode))
|
|
Params.LoadCfgToMemory()
|
|
})
|
|
|
|
t.Run("test pulsarConfig", func(t *testing.T) {
|
|
{
|
|
Params := SParams.PulsarCfg
|
|
assert.NotEqual(t, Params.Address, "")
|
|
t.Logf("pulsar address = %s", Params.Address)
|
|
assert.Equal(t, Params.MaxMessageSize, SuggestPulsarMaxMessageSize)
|
|
}
|
|
|
|
address := "pulsar://localhost:6650"
|
|
{
|
|
Params := SParams.PulsarCfg
|
|
SParams.BaseTable.Save("pulsar.address", address)
|
|
Params.initAddress()
|
|
assert.Equal(t, Params.Address, address)
|
|
}
|
|
|
|
{
|
|
Params := SParams.PulsarCfg
|
|
SParams.BaseTable.Save("pulsar.address", "localhost")
|
|
SParams.BaseTable.Save("pulsar.port", "6650")
|
|
Params.initAddress()
|
|
assert.Equal(t, Params.Address, address)
|
|
}
|
|
})
|
|
|
|
t.Run("test pulsar web config", func(t *testing.T) {
|
|
Params := SParams.PulsarCfg
|
|
assert.NotEqual(t, Params.Address, "")
|
|
|
|
{
|
|
Params.initWebAddress()
|
|
assert.NotEqual(t, Params.WebAddress, "")
|
|
}
|
|
|
|
{
|
|
Params.Address = Params.Address + "invalid"
|
|
Params.initWebAddress()
|
|
assert.Equal(t, Params.WebAddress, "")
|
|
}
|
|
|
|
{
|
|
Params.Address = ""
|
|
Params.initWebAddress()
|
|
assert.Equal(t, Params.WebAddress, "")
|
|
}
|
|
})
|
|
|
|
t.Run("test rocksmqConfig", func(t *testing.T) {
|
|
Params := SParams.RocksmqCfg
|
|
|
|
assert.NotEqual(t, Params.Path, "")
|
|
t.Logf("rocksmq path = %s", Params.Path)
|
|
})
|
|
|
|
t.Run("test minioConfig", func(t *testing.T) {
|
|
Params := SParams.MinioCfg
|
|
|
|
addr := Params.Address
|
|
equal := addr == "localhost:9000" || addr == "minio:9000"
|
|
assert.Equal(t, equal, true)
|
|
t.Logf("minio address = %s", Params.Address)
|
|
|
|
assert.Equal(t, Params.AccessKeyID, "minioadmin")
|
|
|
|
assert.Equal(t, Params.SecretAccessKey, "minioadmin")
|
|
|
|
assert.Equal(t, Params.UseSSL, false)
|
|
|
|
assert.Equal(t, Params.UseIAM, false)
|
|
|
|
assert.Equal(t, Params.IAMEndpoint, "")
|
|
|
|
t.Logf("Minio BucketName = %s", Params.BucketName)
|
|
|
|
t.Logf("Minio rootpath = %s", Params.RootPath)
|
|
})
|
|
}
|