// 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 indexnode import ( "context" "testing" "github.com/stretchr/testify/assert" "github.com/milvus-io/milvus-proto/go-api/v2/commonpb" "github.com/milvus-io/milvus-proto/go-api/v2/milvuspb" "github.com/milvus-io/milvus/internal/proto/indexpb" "github.com/milvus-io/milvus/internal/proto/internalpb" "github.com/milvus-io/milvus/pkg/util/metricsinfo" ) func TestAbnormalIndexNode(t *testing.T) { in, err := NewMockIndexNodeComponent(context.TODO()) assert.NoError(t, err) assert.Nil(t, in.Stop()) ctx := context.TODO() status, err := in.CreateJob(ctx, &indexpb.CreateJobRequest{}) assert.NoError(t, err) assert.Equal(t, status.ErrorCode, commonpb.ErrorCode_UnexpectedError) qresp, err := in.QueryJobs(ctx, &indexpb.QueryJobsRequest{}) assert.NoError(t, err) assert.Equal(t, qresp.Status.ErrorCode, commonpb.ErrorCode_UnexpectedError) status, err = in.DropJobs(ctx, &indexpb.DropJobsRequest{}) assert.NoError(t, err) assert.Equal(t, status.ErrorCode, commonpb.ErrorCode_UnexpectedError) jobNumRsp, err := in.GetJobStats(ctx, &indexpb.GetJobStatsRequest{}) assert.NoError(t, err) assert.Equal(t, jobNumRsp.Status.ErrorCode, commonpb.ErrorCode_UnexpectedError) metricsResp, err := in.GetMetrics(ctx, &milvuspb.GetMetricsRequest{}) assert.NoError(t, err) assert.Equal(t, metricsResp.Status.ErrorCode, commonpb.ErrorCode_UnexpectedError) configurationResp, err := in.ShowConfigurations(ctx, &internalpb.ShowConfigurationsRequest{}) assert.NoError(t, err) assert.Equal(t, configurationResp.Status.ErrorCode, commonpb.ErrorCode_UnexpectedError) } func TestGetMetrics(t *testing.T) { var ( ctx = context.TODO() metricReq, _ = metricsinfo.ConstructRequestByMetricType(metricsinfo.SystemInfoMetrics) ) in, err := NewMockIndexNodeComponent(ctx) assert.NoError(t, err) defer in.Stop() resp, err := in.GetMetrics(ctx, metricReq) assert.NoError(t, err) assert.Equal(t, resp.Status.ErrorCode, commonpb.ErrorCode_Success) t.Logf("Component: %s, Metrics: %s", resp.ComponentName, resp.Response) } func TestGetMetricsError(t *testing.T) { var ( ctx = context.TODO() ) in, err := NewMockIndexNodeComponent(ctx) assert.NoError(t, err) defer in.Stop() errReq := &milvuspb.GetMetricsRequest{ Request: `{"metric_typ": "system_info"}`, } resp, err := in.GetMetrics(ctx, errReq) assert.NoError(t, err) assert.Equal(t, resp.Status.ErrorCode, commonpb.ErrorCode_UnexpectedError) unsupportedReq := &milvuspb.GetMetricsRequest{ Request: `{"metric_type": "application_info"}`, } resp, err = in.GetMetrics(ctx, unsupportedReq) assert.NoError(t, err) assert.Equal(t, resp.Status.ErrorCode, commonpb.ErrorCode_UnexpectedError) assert.Equal(t, resp.Status.Reason, metricsinfo.MsgUnimplementedMetric) } func TestMockFieldData(t *testing.T) { chunkMgr := NewMockChunkManager() chunkMgr.mockFieldData(100000, 8, 0, 0, 1) }