congqixia cb7f2fa6fd
enhance: Use v2 package name for pkg module (#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-22 23:15:58 +08:00

30 lines
746 B
Go

package utility
import (
"math/rand"
"testing"
"github.com/stretchr/testify/assert"
"github.com/milvus-io/milvus/pkg/v2/mocks/streaming/util/mock_message"
"github.com/milvus-io/milvus/pkg/v2/streaming/util/message"
"github.com/milvus-io/milvus/pkg/v2/util/typeutil"
)
func TestImmutableMessageHeap(t *testing.T) {
h := typeutil.NewHeap[message.ImmutableMessage](&immutableMessageHeap{})
timeticks := rand.Perm(25)
for _, timetick := range timeticks {
msg := mock_message.NewMockImmutableMessage(t)
msg.EXPECT().TimeTick().Return(uint64(timetick + 1))
h.Push(msg)
}
lastOneTimeTick := uint64(0)
for h.Len() != 0 {
msg := h.Pop()
assert.Greater(t, msg.TimeTick(), lastOneTimeTick)
lastOneTimeTick = msg.TimeTick()
}
}