milvus/internal/datacoord/metrics_info_test.go
congqixia c96b19a640
Add datacoord metricsinfo unit test (#7595)
Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>
2021-09-09 10:16:00 +08:00

106 lines
3.0 KiB
Go

// 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 datacoord
import (
"context"
"errors"
"testing"
"github.com/milvus-io/milvus/internal/proto/commonpb"
"github.com/milvus-io/milvus/internal/proto/milvuspb"
"github.com/milvus-io/milvus/internal/types"
"github.com/milvus-io/milvus/internal/util/metricsinfo"
"github.com/milvus-io/milvus/internal/util/typeutil"
"github.com/stretchr/testify/assert"
)
type mockMetricDataNodeClient struct {
types.DataNode
mock func() (*milvuspb.GetMetricsResponse, error)
}
func (c *mockMetricDataNodeClient) GetMetrics(ctx context.Context, req *milvuspb.GetMetricsRequest) (*milvuspb.GetMetricsResponse, error) {
if c.mock == nil {
return c.DataNode.GetMetrics(ctx, req)
}
return c.mock()
}
func TestGetDataNodeMetrics(t *testing.T) {
svr := newTestServer(t, nil)
defer closeTestServer(t, svr)
ctx := context.Background()
req := &milvuspb.GetMetricsRequest{}
// nil node
_, err := svr.getDataNodeMetrics(ctx, req, nil)
assert.NotNil(t, err)
// nil client node
_, err = svr.getDataNodeMetrics(ctx, req, &NodeInfo{})
assert.NotNil(t, err)
client, err := newMockDataNodeClient(100, nil)
assert.Nil(t, err)
// mock datanode client
info, err := svr.getDataNodeMetrics(ctx, req, &NodeInfo{
client: client,
})
assert.Nil(t, err)
assert.False(t, info.HasError)
assert.Equal(t, metricsinfo.ConstructComponentName(typeutil.DataNodeRole, client.id), info.BaseComponentInfos.Name)
// mock grpc return error
mock := &mockMetricDataNodeClient{DataNode: client}
mock.mock = func() (*milvuspb.GetMetricsResponse, error) {
return nil, errors.New("mocked fail")
}
info, err = svr.getDataNodeMetrics(ctx, req, &NodeInfo{
client: mock,
})
assert.Nil(t, err)
assert.True(t, info.HasError)
// mock status not success
mock.mock = func() (*milvuspb.GetMetricsResponse, error) {
return &milvuspb.GetMetricsResponse{
Status: &commonpb.Status{
ErrorCode: commonpb.ErrorCode_UnexpectedError,
Reason: "mocked error",
},
}, nil
}
info, err = svr.getDataNodeMetrics(ctx, req, &NodeInfo{
client: mock,
})
assert.Nil(t, err)
assert.True(t, info.HasError)
assert.Equal(t, "mocked error", info.ErrorReason)
// mock parse error
mock.mock = func() (*milvuspb.GetMetricsResponse, error) {
return &milvuspb.GetMetricsResponse{
Status: &commonpb.Status{
ErrorCode: commonpb.ErrorCode_Success,
},
Response: `{"error_reason": 1}`,
}, nil
}
info, err = svr.getDataNodeMetrics(ctx, req, &NodeInfo{
client: mock,
})
assert.Nil(t, err)
assert.True(t, info.HasError)
}