mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-28 22:45:26 +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>
30 lines
746 B
Go
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()
|
|
}
|
|
}
|