milvus/internal/util/idalloc/allocator_test.go
congqixia 709594f158
enhance: [2.5] Use v2 package name for pkg module (#40117)
Cherry-pick from master
pr: #39990
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>
2025-02-23 00:46:01 +08:00

61 lines
1.6 KiB
Go

package idalloc
import (
"context"
"testing"
"time"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/mock"
"google.golang.org/grpc"
"github.com/milvus-io/milvus-proto/go-api/v2/commonpb"
"github.com/milvus-io/milvus/internal/types"
"github.com/milvus-io/milvus/pkg/v2/proto/rootcoordpb"
"github.com/milvus-io/milvus/pkg/v2/util/paramtable"
"github.com/milvus-io/milvus/pkg/v2/util/syncutil"
)
func TestTimestampAllocator(t *testing.T) {
paramtable.Init()
paramtable.SetNodeID(1)
client := NewMockRootCoordClient(t)
f := syncutil.NewFuture[types.RootCoordClient]()
f.Set(client)
allocator := NewTSOAllocator(f)
for i := 0; i < 5000; i++ {
ts, err := allocator.Allocate(context.Background())
assert.NoError(t, err)
assert.NotZero(t, ts)
}
for i := 0; i < 100; i++ {
ts, err := allocator.Allocate(context.Background())
assert.NoError(t, err)
assert.NotZero(t, ts)
time.Sleep(time.Millisecond * 1)
allocator.Sync()
}
// error test
client.EXPECT().AllocTimestamp(mock.Anything, mock.Anything).Unset()
client.EXPECT().AllocTimestamp(mock.Anything, mock.Anything).RunAndReturn(
func(ctx context.Context, atr *rootcoordpb.AllocTimestampRequest, co ...grpc.CallOption) (*rootcoordpb.AllocTimestampResponse, error) {
return &rootcoordpb.AllocTimestampResponse{
Status: &commonpb.Status{
ErrorCode: commonpb.ErrorCode_ForceDeny,
},
}, nil
},
)
f = syncutil.NewFuture[types.RootCoordClient]()
f.Set(client)
allocator = NewTSOAllocator(f)
_, err := allocator.Allocate(context.Background())
assert.Error(t, err)
}