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
64 lines
1.8 KiB
Go
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/v3/proto/rootcoordpb"
|
|
"github.com/milvus-io/milvus/pkg/v3/util/merr"
|
|
"github.com/milvus-io/milvus/pkg/v3/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),
|
|
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
|
|
}
|