mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-05 05:18:52 +08:00
1f337891e1
Signed-off-by: yudong.cai <yudong.cai@zilliz.com>
82 lines
2.5 KiB
Go
82 lines
2.5 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 (
|
|
"testing"
|
|
|
|
"github.com/milvus-io/milvus/internal/util/typeutil"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestGrpcServerParams(t *testing.T) {
|
|
role := typeutil.DataNodeRole
|
|
var Params GrpcServerConfig
|
|
Params.InitOnce(role)
|
|
|
|
assert.Equal(t, Params.Domain, role)
|
|
t.Logf("Domain = %s", Params.Domain)
|
|
|
|
assert.NotEqual(t, Params.IP, "")
|
|
t.Logf("IP = %s", Params.IP)
|
|
|
|
assert.NotZero(t, Params.Port)
|
|
t.Logf("Port = %d", Params.Port)
|
|
|
|
t.Logf("Address = %s", Params.GetAddress())
|
|
|
|
assert.NotZero(t, Params.ServerMaxRecvSize)
|
|
t.Logf("ServerMaxRecvSize = %d", Params.ServerMaxRecvSize)
|
|
|
|
Params.Remove(role + ".grpc.serverMaxRecvSize")
|
|
Params.initServerMaxRecvSize()
|
|
assert.Equal(t, Params.ServerMaxRecvSize, DefaultServerMaxRecvSize)
|
|
|
|
assert.NotZero(t, Params.ServerMaxSendSize)
|
|
t.Logf("ServerMaxSendSize = %d", Params.ServerMaxSendSize)
|
|
|
|
Params.Remove(role + ".grpc.serverMaxSendSize")
|
|
Params.initServerMaxSendSize()
|
|
assert.Equal(t, Params.ServerMaxSendSize, DefaultServerMaxSendSize)
|
|
}
|
|
|
|
func TestGrpcClientParams(t *testing.T) {
|
|
role := typeutil.DataNodeRole
|
|
var Params GrpcClientConfig
|
|
Params.InitOnce(role)
|
|
|
|
assert.Equal(t, Params.Domain, role)
|
|
t.Logf("Domain = %s", Params.Domain)
|
|
|
|
assert.NotEqual(t, Params.IP, "")
|
|
t.Logf("IP = %s", Params.IP)
|
|
|
|
assert.NotZero(t, Params.Port)
|
|
t.Logf("Port = %d", Params.Port)
|
|
|
|
t.Logf("Address = %s", Params.GetAddress())
|
|
|
|
assert.NotZero(t, Params.ClientMaxRecvSize)
|
|
t.Logf("ClientMaxRecvSize = %d", Params.ClientMaxRecvSize)
|
|
|
|
Params.Remove(role + ".grpc.clientMaxRecvSize")
|
|
Params.initClientMaxRecvSize()
|
|
assert.Equal(t, Params.ClientMaxRecvSize, DefaultClientMaxRecvSize)
|
|
|
|
assert.NotZero(t, Params.ClientMaxSendSize)
|
|
t.Logf("ClientMaxSendSize = %d", Params.ClientMaxSendSize)
|
|
|
|
Params.Remove(role + ".grpc.clientMaxSendSize")
|
|
Params.initClientMaxSendSize()
|
|
assert.Equal(t, Params.ClientMaxSendSize, DefaultClientMaxSendSize)
|
|
}
|