498b235461
Build and test / Build and test AMD64 Ubuntu 22.04 (push) Failing after 0s
Publish Builder / amazonlinux2023 (push) Failing after 1s
Build and test / UT for Go (push) Has been skipped
Publish KRTE Images / KRTE (push) Failing after 1s
Build and test / Integration Test (push) Has been skipped
Build and test / Upload Code Coverage (push) Has been skipped
Publish Builder / rockylinux9 (push) Failing after 1s
Publish Builder / ubuntu22.04 (push) Failing after 0s
Publish Builder / ubuntu24.04 (push) Failing after 0s
Publish Gpu Builder / publish-gpu-builder (push) Failing after 1s
Publish Test Images / PyTest (push) Failing after 0s
Build and test / UT for Cpp (push) Has been cancelled
248 lines
6.8 KiB
Go
248 lines
6.8 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 proxy
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/milvus-io/milvus-proto/go-api/v3/commonpb"
|
|
"github.com/milvus-io/milvus-proto/go-api/v3/milvuspb"
|
|
"github.com/milvus-io/milvus/pkg/v3/util/funcutil"
|
|
"github.com/milvus-io/milvus/pkg/v3/util/merr"
|
|
"github.com/milvus-io/milvus/pkg/v3/util/uniquegenerator"
|
|
)
|
|
|
|
func TestCreateAlias_all(t *testing.T) {
|
|
rc := NewMixCoordMock()
|
|
|
|
defer rc.Close()
|
|
ctx := context.Background()
|
|
|
|
// Save and clear globalMetaCache to avoid resolveCollectionAlias calling
|
|
// DescribeAlias on a stale testify mock from a previous test.
|
|
oldCache := globalMetaCache
|
|
globalMetaCache = nil
|
|
defer func() { globalMetaCache = oldCache }()
|
|
|
|
prefix := "TestCreateAlias_all"
|
|
collectionName := prefix + funcutil.GenRandomStr()
|
|
task := &CreateAliasTask{
|
|
Condition: NewTaskCondition(ctx),
|
|
CreateAliasRequest: &milvuspb.CreateAliasRequest{
|
|
Base: nil,
|
|
CollectionName: collectionName,
|
|
Alias: "alias1",
|
|
},
|
|
ctx: ctx,
|
|
result: merr.Success(),
|
|
mixCoord: rc,
|
|
}
|
|
|
|
assert.NoError(t, task.OnEnqueue())
|
|
|
|
assert.NotNil(t, task.TraceCtx())
|
|
|
|
id := UniqueID(uniquegenerator.GetUniqueIntGeneratorIns().GetInt())
|
|
task.SetID(id)
|
|
assert.Equal(t, id, task.ID())
|
|
|
|
task.Base.MsgType = commonpb.MsgType_CreateAlias
|
|
assert.Equal(t, commonpb.MsgType_CreateAlias, task.Type())
|
|
ts := Timestamp(time.Now().UnixNano())
|
|
task.SetTs(ts)
|
|
assert.Equal(t, ts, task.BeginTs())
|
|
assert.Equal(t, ts, task.EndTs())
|
|
|
|
task.Alias = "illgal-alias:!"
|
|
assert.Error(t, task.PreExecute(ctx))
|
|
task.Alias = "alias1"
|
|
task.CollectionName = "illgal-collection:!"
|
|
assert.Error(t, task.PreExecute(ctx))
|
|
task.CollectionName = collectionName
|
|
|
|
assert.NoError(t, task.PreExecute(ctx))
|
|
assert.Error(t, task.Execute(ctx))
|
|
assert.NoError(t, task.PostExecute(ctx))
|
|
}
|
|
|
|
func TestDropAlias_all(t *testing.T) {
|
|
rc := NewMixCoordMock()
|
|
|
|
defer rc.Close()
|
|
ctx := context.Background()
|
|
task := &DropAliasTask{
|
|
Condition: NewTaskCondition(ctx),
|
|
DropAliasRequest: &milvuspb.DropAliasRequest{
|
|
Base: nil,
|
|
Alias: "alias1",
|
|
},
|
|
ctx: ctx,
|
|
result: merr.Success(),
|
|
mixCoord: rc,
|
|
}
|
|
|
|
assert.NoError(t, task.OnEnqueue())
|
|
assert.NotNil(t, task.TraceCtx())
|
|
|
|
id := UniqueID(uniquegenerator.GetUniqueIntGeneratorIns().GetInt())
|
|
task.SetID(id)
|
|
assert.Equal(t, id, task.ID())
|
|
|
|
task.Base.MsgType = commonpb.MsgType_DropAlias
|
|
assert.Equal(t, commonpb.MsgType_DropAlias, task.Type())
|
|
ts := Timestamp(time.Now().UnixNano())
|
|
task.SetTs(ts)
|
|
assert.Equal(t, ts, task.BeginTs())
|
|
assert.Equal(t, ts, task.EndTs())
|
|
|
|
assert.NoError(t, task.PreExecute(ctx))
|
|
assert.Error(t, task.Execute(ctx))
|
|
assert.NoError(t, task.PostExecute(ctx))
|
|
}
|
|
|
|
func TestAlterAlias_all(t *testing.T) {
|
|
rc := NewMixCoordMock()
|
|
defer rc.Close()
|
|
ctx := context.Background()
|
|
|
|
// Save and clear globalMetaCache to avoid resolveCollectionAlias calling
|
|
// DescribeAlias on a stale testify mock from a previous test.
|
|
oldCache := globalMetaCache
|
|
globalMetaCache = nil
|
|
defer func() { globalMetaCache = oldCache }()
|
|
|
|
prefix := "TestAlterAlias_all"
|
|
collectionName := prefix + funcutil.GenRandomStr()
|
|
task := &AlterAliasTask{
|
|
Condition: NewTaskCondition(ctx),
|
|
AlterAliasRequest: &milvuspb.AlterAliasRequest{
|
|
Base: nil,
|
|
CollectionName: collectionName,
|
|
Alias: "alias1",
|
|
},
|
|
ctx: ctx,
|
|
result: merr.Success(),
|
|
mixCoord: rc,
|
|
}
|
|
|
|
assert.NoError(t, task.OnEnqueue())
|
|
|
|
assert.NotNil(t, task.TraceCtx())
|
|
|
|
id := UniqueID(uniquegenerator.GetUniqueIntGeneratorIns().GetInt())
|
|
task.SetID(id)
|
|
assert.Equal(t, id, task.ID())
|
|
|
|
task.Base.MsgType = commonpb.MsgType_AlterAlias
|
|
assert.Equal(t, commonpb.MsgType_AlterAlias, task.Type())
|
|
ts := Timestamp(time.Now().UnixNano())
|
|
task.SetTs(ts)
|
|
assert.Equal(t, ts, task.BeginTs())
|
|
assert.Equal(t, ts, task.EndTs())
|
|
|
|
task.Alias = "illgal-alias:!"
|
|
assert.Error(t, task.PreExecute(ctx))
|
|
task.Alias = "alias1"
|
|
task.CollectionName = "illgal-collection:!"
|
|
assert.Error(t, task.PreExecute(ctx))
|
|
task.CollectionName = collectionName
|
|
|
|
assert.NoError(t, task.PreExecute(ctx))
|
|
assert.Error(t, task.Execute(ctx))
|
|
assert.NoError(t, task.PostExecute(ctx))
|
|
}
|
|
|
|
func TestDescribeAlias_all(t *testing.T) {
|
|
rc := NewMixCoordMock()
|
|
ctx := context.Background()
|
|
task := &DescribeAliasTask{
|
|
Condition: NewTaskCondition(ctx),
|
|
DescribeAliasRequest: &milvuspb.DescribeAliasRequest{
|
|
Base: nil,
|
|
Alias: "alias1",
|
|
},
|
|
ctx: ctx,
|
|
result: &milvuspb.DescribeAliasResponse{
|
|
Status: &commonpb.Status{
|
|
ErrorCode: commonpb.ErrorCode_Success,
|
|
},
|
|
},
|
|
mixCoord: rc,
|
|
}
|
|
|
|
assert.NoError(t, task.OnEnqueue())
|
|
|
|
assert.NotNil(t, task.TraceCtx())
|
|
|
|
id := UniqueID(uniquegenerator.GetUniqueIntGeneratorIns().GetInt())
|
|
task.SetID(id)
|
|
assert.Equal(t, id, task.ID())
|
|
|
|
task.Base.MsgType = commonpb.MsgType_DescribeAlias
|
|
assert.Equal(t, commonpb.MsgType_DescribeAlias, task.Type())
|
|
ts := Timestamp(time.Now().UnixNano())
|
|
task.SetTs(ts)
|
|
assert.Equal(t, ts, task.BeginTs())
|
|
assert.Equal(t, ts, task.EndTs())
|
|
|
|
assert.NoError(t, task.PreExecute(ctx))
|
|
assert.Error(t, task.Execute(ctx))
|
|
assert.NoError(t, task.PostExecute(ctx))
|
|
}
|
|
|
|
func TestListAliases_all(t *testing.T) {
|
|
rc := NewMixCoordMock()
|
|
defer rc.Close()
|
|
ctx := context.Background()
|
|
task := &ListAliasesTask{
|
|
Condition: NewTaskCondition(ctx),
|
|
ListAliasesRequest: &milvuspb.ListAliasesRequest{
|
|
Base: nil,
|
|
},
|
|
ctx: ctx,
|
|
result: &milvuspb.ListAliasesResponse{
|
|
Status: &commonpb.Status{
|
|
ErrorCode: commonpb.ErrorCode_Success,
|
|
},
|
|
},
|
|
mixCoord: rc,
|
|
}
|
|
|
|
assert.NoError(t, task.OnEnqueue())
|
|
|
|
assert.NotNil(t, task.TraceCtx())
|
|
|
|
id := UniqueID(uniquegenerator.GetUniqueIntGeneratorIns().GetInt())
|
|
task.SetID(id)
|
|
assert.Equal(t, id, task.ID())
|
|
|
|
task.Base.MsgType = commonpb.MsgType_ListAliases
|
|
assert.Equal(t, commonpb.MsgType_ListAliases, task.Type())
|
|
ts := Timestamp(time.Now().UnixNano())
|
|
task.SetTs(ts)
|
|
assert.Equal(t, ts, task.BeginTs())
|
|
assert.Equal(t, ts, task.EndTs())
|
|
|
|
assert.NoError(t, task.PreExecute(ctx))
|
|
assert.NoError(t, task.Execute(ctx))
|
|
assert.NoError(t, task.PostExecute(ctx))
|
|
}
|