milvus/internal/indexcoord/metrics_info_test.go
cai.zhang c924f73105
Refactor for IndexCoord to support cloud (#18643)
Co-authored-by: Zach41 <zongmei.zhang@zilliz.com>
Signed-off-by: cai.zhang <cai.zhang@zilliz.com>

Signed-off-by: cai.zhang <cai.zhang@zilliz.com>
Co-authored-by: Zach41 <zongmei.zhang@zilliz.com>
2022-08-25 15:48:54 +08:00

71 lines
2.1 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 indexcoord
//func TestGetSystemInfoMetrics(t *testing.T) {
// ctx := context.Background()
// factory := dependency.NewDefaultFactory(true)
// ic, err := NewIndexCoord(ctx, factory)
// assert.Nil(t, err)
// Params.Init()
//
// etcdCli, err := etcd.GetEtcdClient(&Params.EtcdCfg)
// defer etcdCli.Close()
// assert.NoError(t, err)
//
// ic.SetEtcdClient(etcdCli)
// err = ic.Init()
// assert.Nil(t, err)
// err = ic.Start()
// assert.Nil(t, err)
// err = ic.Register()
// assert.Nil(t, err)
//
// t.Run("getSystemInfoMetrics", func(t *testing.T) {
// req, err := metricsinfo.ConstructRequestByMetricType(metricsinfo.SystemInfoMetrics)
// assert.Nil(t, err)
//
// resp, err := getSystemInfoMetrics(ctx, req, ic)
// assert.Nil(t, err)
// assert.NotNil(t, resp)
// })
//
// t.Run("getSystemInfoMetrics error", func(t *testing.T) {
// req, err := metricsinfo.ConstructRequestByMetricType(metricsinfo.SystemInfoMetrics)
// assert.Nil(t, err)
//
// inm1 := &indexnode.Mock{
// Failure: true,
// Err: true,
// }
// inm2 := &indexnode.Mock{
// Failure: true,
// Err: false,
// }
//
// ic.nodeManager.setClient(1, inm1)
// ic.nodeManager.setClient(2, inm2)
//
// resp, err := getSystemInfoMetrics(ctx, req, ic)
// assert.Nil(t, err)
// assert.NotNil(t, resp)
// })
//
// err = ic.Stop()
// assert.Nil(t, err)
//}