mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-06 19:02:18 +08:00
Related to #39095 https://go.dev/doc/modules/version-numbers Update pkg version according to golang dep version convention --------- Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>
109 lines
3.1 KiB
Go
109 lines
3.1 KiB
Go
package producer
|
|
|
|
import (
|
|
"context"
|
|
"io"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/mock"
|
|
|
|
"github.com/milvus-io/milvus/pkg/v2/mocks/proto/mock_streamingpb"
|
|
"github.com/milvus-io/milvus/pkg/v2/proto/messagespb"
|
|
"github.com/milvus-io/milvus/pkg/v2/proto/streamingpb"
|
|
"github.com/milvus-io/milvus/pkg/v2/streaming/util/message"
|
|
"github.com/milvus-io/milvus/pkg/v2/streaming/util/types"
|
|
"github.com/milvus-io/milvus/pkg/v2/streaming/walimpls/impls/walimplstest"
|
|
)
|
|
|
|
func TestProducer(t *testing.T) {
|
|
c := mock_streamingpb.NewMockStreamingNodeHandlerServiceClient(t)
|
|
cc := mock_streamingpb.NewMockStreamingNodeHandlerService_ProduceClient(t)
|
|
recvCh := make(chan *streamingpb.ProduceResponse, 10)
|
|
cc.EXPECT().Recv().RunAndReturn(func() (*streamingpb.ProduceResponse, error) {
|
|
msg, ok := <-recvCh
|
|
if !ok {
|
|
return nil, io.EOF
|
|
}
|
|
return msg, nil
|
|
})
|
|
sendCh := make(chan struct{}, 5)
|
|
cc.EXPECT().Send(mock.Anything).RunAndReturn(func(pr *streamingpb.ProduceRequest) error {
|
|
sendCh <- struct{}{}
|
|
return nil
|
|
})
|
|
c.EXPECT().Produce(mock.Anything, mock.Anything).Return(cc, nil)
|
|
cc.EXPECT().CloseSend().RunAndReturn(func() error {
|
|
recvCh <- &streamingpb.ProduceResponse{Response: &streamingpb.ProduceResponse_Close{}}
|
|
close(recvCh)
|
|
return nil
|
|
})
|
|
|
|
ctx := context.Background()
|
|
opts := &ProducerOptions{
|
|
Assignment: &types.PChannelInfoAssigned{
|
|
Channel: types.PChannelInfo{Name: "test", Term: 1},
|
|
Node: types.StreamingNodeInfo{ServerID: 1, Address: "localhost"},
|
|
},
|
|
}
|
|
|
|
recvCh <- &streamingpb.ProduceResponse{
|
|
Response: &streamingpb.ProduceResponse_Create{
|
|
Create: &streamingpb.CreateProducerResponse{
|
|
WalName: walimplstest.WALName,
|
|
},
|
|
},
|
|
}
|
|
producer, err := CreateProducer(ctx, opts, c)
|
|
assert.NoError(t, err)
|
|
assert.NotNil(t, producer)
|
|
ch := make(chan struct{})
|
|
go func() {
|
|
msg := message.CreateTestEmptyInsertMesage(1, nil)
|
|
msgID, err := producer.Append(ctx, msg)
|
|
assert.Error(t, err)
|
|
assert.Nil(t, msgID)
|
|
|
|
msg = message.CreateTestEmptyInsertMesage(1, nil)
|
|
msgID, err = producer.Append(ctx, msg)
|
|
assert.NoError(t, err)
|
|
assert.NotNil(t, msgID)
|
|
close(ch)
|
|
}()
|
|
<-sendCh
|
|
recvCh <- &streamingpb.ProduceResponse{
|
|
Response: &streamingpb.ProduceResponse_Produce{
|
|
Produce: &streamingpb.ProduceMessageResponse{
|
|
RequestId: 1,
|
|
Response: &streamingpb.ProduceMessageResponse_Error{
|
|
Error: &streamingpb.StreamingError{Code: 1},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
<-sendCh
|
|
recvCh <- &streamingpb.ProduceResponse{
|
|
Response: &streamingpb.ProduceResponse_Produce{
|
|
Produce: &streamingpb.ProduceMessageResponse{
|
|
RequestId: 2,
|
|
Response: &streamingpb.ProduceMessageResponse_Result{
|
|
Result: &streamingpb.ProduceMessageResponseResult{
|
|
Id: &messagespb.MessageID{Id: walimplstest.NewTestMessageID(1).Marshal()},
|
|
},
|
|
},
|
|
},
|
|
},
|
|
}
|
|
<-ch
|
|
|
|
ctx, cancel := context.WithTimeout(ctx, 100*time.Millisecond)
|
|
defer cancel()
|
|
msg := message.CreateTestEmptyInsertMesage(1, nil)
|
|
_, err = producer.Append(ctx, msg)
|
|
assert.ErrorIs(t, err, context.DeadlineExceeded)
|
|
assert.True(t, producer.IsAvailable())
|
|
producer.Close()
|
|
assert.False(t, producer.IsAvailable())
|
|
}
|