mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-11-30 02:48:45 +08:00
78bc688d16
Signed-off-by: Enwei Jiao <enwei.jiao@zilliz.com>
64 lines
1.3 KiB
Go
64 lines
1.3 KiB
Go
package proxy
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/cockroachdb/errors"
|
|
|
|
"github.com/milvus-io/milvus/pkg/mq/msgstream"
|
|
)
|
|
|
|
type mockMsgStream struct {
|
|
msgstream.MsgStream
|
|
asProducer func([]string)
|
|
setRepack func(repackFunc msgstream.RepackFunc)
|
|
close func()
|
|
}
|
|
|
|
func (m *mockMsgStream) AsProducer(producers []string) {
|
|
if m.asProducer != nil {
|
|
m.asProducer(producers)
|
|
}
|
|
}
|
|
|
|
func (m *mockMsgStream) SetRepackFunc(repackFunc msgstream.RepackFunc) {
|
|
if m.setRepack != nil {
|
|
m.setRepack(repackFunc)
|
|
}
|
|
}
|
|
|
|
func (m *mockMsgStream) Close() {
|
|
if m.close != nil {
|
|
m.close()
|
|
}
|
|
}
|
|
|
|
func newMockMsgStream() *mockMsgStream {
|
|
return &mockMsgStream{}
|
|
}
|
|
|
|
type mockMsgStreamFactory struct {
|
|
msgstream.Factory
|
|
f func(ctx context.Context) (msgstream.MsgStream, error)
|
|
fQStream func(ctx context.Context) (msgstream.MsgStream, error)
|
|
fTtStream func(ctx context.Context) (msgstream.MsgStream, error)
|
|
}
|
|
|
|
func (m *mockMsgStreamFactory) NewMsgStream(ctx context.Context) (msgstream.MsgStream, error) {
|
|
if m.f != nil {
|
|
return m.f(ctx)
|
|
}
|
|
return nil, errors.New("mock")
|
|
}
|
|
|
|
func (m *mockMsgStreamFactory) NewTtMsgStream(ctx context.Context) (msgstream.MsgStream, error) {
|
|
if m.fTtStream != nil {
|
|
return m.fTtStream(ctx)
|
|
}
|
|
return nil, errors.New("mock")
|
|
}
|
|
|
|
func newMockMsgStreamFactory() *mockMsgStreamFactory {
|
|
return &mockMsgStreamFactory{}
|
|
}
|