milvus/internal/util/idalloc/test_mock_root_coord_client.go
Xianhui Lin f9febe3bae
enhance: Merge RootCoord, DataCoord And QueryCoord into MixCoord (#41006)
Merge RootCoord, DataCoord And QueryCoord into MixCoord
Make Session into one
issue : https://github.com/milvus-io/milvus/issues/37764

---------

Signed-off-by: Xianhui.Lin <xianhui.lin@zilliz.com>
2025-04-11 16:36:30 +08:00

64 lines
1.8 KiB
Go

//go:build test
// +build test
package idalloc
import (
"context"
"fmt"
"testing"
"time"
"github.com/stretchr/testify/mock"
"go.uber.org/atomic"
"google.golang.org/grpc"
"github.com/milvus-io/milvus/internal/mocks"
"github.com/milvus-io/milvus/pkg/v2/proto/rootcoordpb"
"github.com/milvus-io/milvus/pkg/v2/util/merr"
"github.com/milvus-io/milvus/pkg/v2/util/tsoutil"
)
func NewMockRootCoordClient(t *testing.T) *mocks.MockMixCoordClient {
counter := atomic.NewUint64(1)
client := mocks.NewMockMixCoordClient(t)
lastAllocate := atomic.NewInt64(0)
client.EXPECT().AllocTimestamp(mock.Anything, mock.Anything).RunAndReturn(
func(ctx context.Context, atr *rootcoordpb.AllocTimestampRequest, co ...grpc.CallOption) (*rootcoordpb.AllocTimestampResponse, error) {
if atr.Count > 1000 {
panic(fmt.Sprintf("count %d is too large", atr.Count))
}
now := time.Now()
for {
lastAllocateMilli := lastAllocate.Load()
if now.UnixMilli() <= lastAllocateMilli {
now = time.Now()
continue
}
if lastAllocate.CompareAndSwap(lastAllocateMilli, now.UnixMilli()) {
break
}
}
return &rootcoordpb.AllocTimestampResponse{
Status: merr.Success(),
Timestamp: tsoutil.ComposeTSByTime(now, 0),
Count: atr.Count,
}, nil
},
).Maybe()
client.EXPECT().AllocID(mock.Anything, mock.Anything).RunAndReturn(
func(ctx context.Context, atr *rootcoordpb.AllocIDRequest, co ...grpc.CallOption) (*rootcoordpb.AllocIDResponse, error) {
if atr.Count > 1000 {
panic(fmt.Sprintf("count %d is too large", atr.Count))
}
c := counter.Add(uint64(atr.Count))
return &rootcoordpb.AllocIDResponse{
Status: merr.Success(),
ID: int64(c - uint64(atr.Count)),
Count: atr.Count,
}, nil
},
).Maybe()
return client
}