mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-04 04:49:08 +08:00
7f7c71ea7d
Co-authored-by:: aoiasd <zhicheng.yue@zilliz.com> Signed-off-by: jaime <yun.zhang@zilliz.com>
117 lines
3.7 KiB
Go
117 lines
3.7 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 grpcindexnode
|
|
|
|
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/indexnode"
|
|
"github.com/milvus-io/milvus/internal/proto/indexpb"
|
|
"github.com/milvus-io/milvus/internal/proto/internalpb"
|
|
"github.com/milvus-io/milvus/internal/util/dependency"
|
|
"github.com/milvus-io/milvus/pkg/util/metricsinfo"
|
|
"github.com/milvus-io/milvus/pkg/util/paramtable"
|
|
)
|
|
|
|
func TestIndexNodeServer(t *testing.T) {
|
|
paramtable.Init()
|
|
ctx := context.Background()
|
|
factory := dependency.NewDefaultFactory(true)
|
|
server, err := NewServer(ctx, factory)
|
|
assert.NoError(t, err)
|
|
assert.NotNil(t, server)
|
|
|
|
inm := indexnode.NewIndexNodeMock()
|
|
err = server.setServer(inm)
|
|
assert.NoError(t, err)
|
|
|
|
err = server.Run()
|
|
assert.NoError(t, err)
|
|
|
|
t.Run("GetComponentStates", func(t *testing.T) {
|
|
req := &milvuspb.GetComponentStatesRequest{}
|
|
states, err := server.GetComponentStates(ctx, req)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, commonpb.StateCode_Healthy, states.State.StateCode)
|
|
})
|
|
|
|
t.Run("GetStatisticsChannel", func(t *testing.T) {
|
|
req := &internalpb.GetStatisticsChannelRequest{}
|
|
resp, err := server.GetStatisticsChannel(ctx, req)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, commonpb.ErrorCode_Success, resp.GetStatus().GetErrorCode())
|
|
})
|
|
|
|
t.Run("CreateJob", func(t *testing.T) {
|
|
req := &indexpb.CreateJobRequest{
|
|
ClusterID: "",
|
|
BuildID: 0,
|
|
IndexID: 0,
|
|
DataPaths: []string{},
|
|
}
|
|
resp, err := server.CreateJob(ctx, req)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, commonpb.ErrorCode_Success, resp.ErrorCode)
|
|
})
|
|
|
|
t.Run("QueryJob", func(t *testing.T) {
|
|
req := &indexpb.QueryJobsRequest{}
|
|
resp, err := server.QueryJobs(ctx, req)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, commonpb.ErrorCode_Success, resp.GetStatus().GetErrorCode())
|
|
})
|
|
|
|
t.Run("DropJobs", func(t *testing.T) {
|
|
req := &indexpb.DropJobsRequest{}
|
|
resp, err := server.DropJobs(ctx, req)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, commonpb.ErrorCode_Success, resp.ErrorCode)
|
|
})
|
|
|
|
t.Run("ShowConfigurations", func(t *testing.T) {
|
|
req := &internalpb.ShowConfigurationsRequest{
|
|
Pattern: "",
|
|
}
|
|
resp, err := server.ShowConfigurations(ctx, req)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, commonpb.ErrorCode_Success, resp.GetStatus().GetErrorCode())
|
|
})
|
|
|
|
t.Run("GetMetrics", func(t *testing.T) {
|
|
req, err := metricsinfo.ConstructRequestByMetricType(metricsinfo.SystemInfoMetrics)
|
|
assert.NoError(t, err)
|
|
resp, err := server.GetMetrics(ctx, req)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, commonpb.ErrorCode_Success, resp.GetStatus().GetErrorCode())
|
|
})
|
|
|
|
t.Run("GetTaskSlots", func(t *testing.T) {
|
|
req := &indexpb.GetJobStatsRequest{}
|
|
resp, err := server.GetJobStats(ctx, req)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, commonpb.ErrorCode_Success, resp.GetStatus().GetErrorCode())
|
|
})
|
|
|
|
err = server.Stop()
|
|
assert.NoError(t, err)
|
|
}
|