mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-02 20:09:57 +08:00
a55f739608
Signed-off-by: SimFG <bang.fu@zilliz.com> Signed-off-by: SimFG <bang.fu@zilliz.com>
55 lines
1.5 KiB
Go
55 lines
1.5 KiB
Go
package rootcoord
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/milvus-io/milvus-proto/go-api/commonpb"
|
|
|
|
"github.com/milvus-io/milvus-proto/go-api/milvuspb"
|
|
)
|
|
|
|
func Test_alterAliasTask_Prepare(t *testing.T) {
|
|
t.Run("invalid msg type", func(t *testing.T) {
|
|
task := &alterAliasTask{Req: &milvuspb.AlterAliasRequest{Base: &commonpb.MsgBase{MsgType: commonpb.MsgType_DropCollection}}}
|
|
err := task.Prepare(context.Background())
|
|
assert.Error(t, err)
|
|
})
|
|
|
|
t.Run("normal case", func(t *testing.T) {
|
|
task := &alterAliasTask{Req: &milvuspb.AlterAliasRequest{Base: &commonpb.MsgBase{MsgType: commonpb.MsgType_AlterAlias}}}
|
|
err := task.Prepare(context.Background())
|
|
assert.NoError(t, err)
|
|
})
|
|
}
|
|
|
|
func Test_alterAliasTask_Execute(t *testing.T) {
|
|
t.Run("failed to expire cache", func(t *testing.T) {
|
|
core := newTestCore(withInvalidProxyManager())
|
|
task := &alterAliasTask{
|
|
baseTask: baseTask{core: core},
|
|
Req: &milvuspb.AlterAliasRequest{
|
|
Base: &commonpb.MsgBase{MsgType: commonpb.MsgType_AlterAlias},
|
|
Alias: "test",
|
|
},
|
|
}
|
|
err := task.Execute(context.Background())
|
|
assert.Error(t, err)
|
|
})
|
|
|
|
t.Run("failed to alter alias", func(t *testing.T) {
|
|
core := newTestCore(withValidProxyManager(), withInvalidMeta())
|
|
task := &alterAliasTask{
|
|
baseTask: baseTask{core: core},
|
|
Req: &milvuspb.AlterAliasRequest{
|
|
Base: &commonpb.MsgBase{MsgType: commonpb.MsgType_AlterAlias},
|
|
Alias: "test",
|
|
},
|
|
}
|
|
err := task.Execute(context.Background())
|
|
assert.Error(t, err)
|
|
})
|
|
}
|