2021-09-02 14:18:10 +00: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.
|
|
|
|
|
|
|
|
package paramtable
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2021-09-03 11:35:47 +00:00
|
|
|
"github.com/milvus-io/milvus/internal/util/metricsinfo"
|
2021-09-02 14:18:10 +00:00
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
2022-02-08 12:57:47 +00:00
|
|
|
func TestServiceParam(t *testing.T) {
|
|
|
|
var SParams ServiceParam
|
|
|
|
SParams.Init()
|
2021-09-02 14:18:10 +00:00
|
|
|
|
2022-02-07 02:09:45 +00:00
|
|
|
t.Run("test etcdConfig", func(t *testing.T) {
|
2022-02-08 12:57:47 +00:00
|
|
|
Params := SParams.EtcdCfg
|
2021-09-02 14:18:10 +00:00
|
|
|
|
2022-02-07 02:09:45 +00:00
|
|
|
assert.NotZero(t, len(Params.Endpoints))
|
|
|
|
t.Logf("etcd endpoints = %s", Params.Endpoints)
|
2021-09-02 14:18:10 +00:00
|
|
|
|
2022-02-07 02:09:45 +00:00
|
|
|
assert.NotEqual(t, Params.MetaRootPath, "")
|
|
|
|
t.Logf("meta root path = %s", Params.MetaRootPath)
|
2021-09-02 14:18:10 +00:00
|
|
|
|
2022-02-07 02:09:45 +00:00
|
|
|
assert.NotEqual(t, Params.KvRootPath, "")
|
|
|
|
t.Logf("kv root path = %s", Params.KvRootPath)
|
2021-09-02 14:18:10 +00:00
|
|
|
|
2022-05-20 04:29:19 +00:00
|
|
|
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)
|
|
|
|
|
2022-02-07 02:09:45 +00:00
|
|
|
// test UseEmbedEtcd
|
|
|
|
Params.Base.Save("etcd.use.embed", "true")
|
2022-10-11 10:43:23 +00:00
|
|
|
t.Setenv(metricsinfo.DeployModeEnvKey, metricsinfo.ClusterDeployMode)
|
2022-02-07 02:09:45 +00:00
|
|
|
assert.Panics(t, func() { Params.initUseEmbedEtcd() })
|
|
|
|
|
2022-10-11 10:43:23 +00:00
|
|
|
t.Setenv(metricsinfo.DeployModeEnvKey, metricsinfo.StandaloneDeployMode)
|
2022-02-07 02:09:45 +00:00
|
|
|
Params.LoadCfgToMemory()
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("test pulsarConfig", func(t *testing.T) {
|
2022-08-02 13:26:33 +00:00
|
|
|
{
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
})
|
2022-02-07 02:09:45 +00:00
|
|
|
|
2022-08-02 13:26:33 +00:00
|
|
|
t.Run("test pulsar web config", func(t *testing.T) {
|
|
|
|
Params := SParams.PulsarCfg
|
2022-02-07 02:09:45 +00:00
|
|
|
assert.NotEqual(t, Params.Address, "")
|
|
|
|
|
2022-08-02 13:26:33 +00:00
|
|
|
{
|
|
|
|
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, "")
|
|
|
|
}
|
2022-02-07 02:09:45 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("test rocksmqConfig", func(t *testing.T) {
|
2022-02-08 12:57:47 +00:00
|
|
|
Params := SParams.RocksmqCfg
|
2022-02-07 02:09:45 +00:00
|
|
|
|
|
|
|
assert.NotEqual(t, Params.Path, "")
|
|
|
|
t.Logf("rocksmq path = %s", Params.Path)
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("test minioConfig", func(t *testing.T) {
|
2022-02-08 12:57:47 +00:00
|
|
|
Params := SParams.MinioCfg
|
2022-02-07 02:09:45 +00:00
|
|
|
|
|
|
|
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)
|
|
|
|
|
2022-06-02 11:42:03 +00:00
|
|
|
assert.Equal(t, Params.UseIAM, false)
|
|
|
|
|
|
|
|
assert.Equal(t, Params.IAMEndpoint, "")
|
|
|
|
|
2022-02-07 02:09:45 +00:00
|
|
|
t.Logf("Minio BucketName = %s", Params.BucketName)
|
|
|
|
|
|
|
|
t.Logf("Minio rootpath = %s", Params.RootPath)
|
|
|
|
})
|
2021-09-02 14:18:10 +00:00
|
|
|
}
|