mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-08 10:08:42 +08:00
issue: #45403, #45463 - fix the Nightly E2E failures. - fix the wrong update timetick of altering collection to fix the related load failure. Signed-off-by: chyezh <chyezh@outlook.com>
25 lines
670 B
Go
25 lines
670 B
Go
package message
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/milvus-io/milvus/pkg/v2/util/funcutil"
|
|
)
|
|
|
|
func TestBroadcastResult(t *testing.T) {
|
|
r := BroadcastResult[*CreateDatabaseMessageHeader, *CreateDatabaseMessageBody]{
|
|
Message: nil,
|
|
Results: map[string]*AppendResult{
|
|
"v1": {TimeTick: 1},
|
|
"v2": {TimeTick: 2},
|
|
"abc" + funcutil.ControlChannelSuffix: {TimeTick: 3},
|
|
},
|
|
}
|
|
|
|
assert.ElementsMatch(t, []string{"v1", "v2"}, r.GetVChannelsWithoutControlChannel())
|
|
assert.NotNil(t, r.GetControlChannelResult())
|
|
assert.Equal(t, uint64(3), r.GetMaxTimeTick())
|
|
}
|