mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-03 20:39:36 +08:00
cbbeb2a383
Signed-off-by: yudong.cai <yudong.cai@zilliz.com>
112 lines
3.0 KiB
Go
112 lines
3.0 KiB
Go
// Copyright (C) 2019-2020 Zilliz. All rights reserved.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance
|
|
// with the License. You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software distributed under the License
|
|
// is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
|
|
// or implied. See the License for the specific language governing permissions and limitations under the License.
|
|
|
|
package rootcoord
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/milvus-io/milvus/internal/msgstream"
|
|
"github.com/milvus-io/milvus/internal/proto/commonpb"
|
|
"github.com/milvus-io/milvus/internal/proto/internalpb"
|
|
"github.com/milvus-io/milvus/internal/util/sessionutil"
|
|
)
|
|
|
|
func TestTimetickSync(t *testing.T) {
|
|
ctx := context.Background()
|
|
|
|
session := &sessionutil.Session{
|
|
ServerID: 100,
|
|
}
|
|
|
|
factory := msgstream.NewPmsFactory()
|
|
m := map[string]interface{}{
|
|
"pulsarAddress": Params.PulsarAddress,
|
|
"receiveBufSize": 1024,
|
|
"pulsarBufSize": 1024}
|
|
err := factory.SetParams(m)
|
|
assert.Nil(t, err)
|
|
|
|
//chanMap := map[typeutil.UniqueID][]string{
|
|
// int64(1): {"rootcoord-dml_0"},
|
|
//}
|
|
|
|
Params.DmlChannelNum = 2
|
|
Params.DmlChannelName = "rootcoord-dml"
|
|
Params.DeltaChannelName = "rootcoord-delta"
|
|
ttSync := newTimeTickSync(ctx, session, factory, nil)
|
|
|
|
t.Run("sendToChannel", func(t *testing.T) {
|
|
ttSync.sendToChannel()
|
|
|
|
ttSync.proxyTimeTick[1] = nil
|
|
ttSync.sendToChannel()
|
|
|
|
msg := &internalpb.ChannelTimeTickMsg{
|
|
Base: &commonpb.MsgBase{
|
|
MsgType: commonpb.MsgType_TimeTick,
|
|
},
|
|
}
|
|
ttSync.proxyTimeTick[1] = newChanTsMsg(msg, 1)
|
|
ttSync.sendToChannel()
|
|
})
|
|
|
|
t.Run("RemoveDdlTimeTick", func(t *testing.T) {
|
|
ttSync.addDdlTimeTick(uint64(1), "1")
|
|
ttSync.addDdlTimeTick(uint64(2), "2")
|
|
ttSync.removeDdlTimeTick(uint64(1), "1")
|
|
assert.Equal(t, ttSync.ddlMinTs, uint64(2))
|
|
})
|
|
|
|
t.Run("UpdateTimeTick", func(t *testing.T) {
|
|
msg := &internalpb.ChannelTimeTickMsg{
|
|
Base: &commonpb.MsgBase{
|
|
MsgType: commonpb.MsgType_TimeTick,
|
|
SourceID: int64(1),
|
|
},
|
|
DefaultTimestamp: 0,
|
|
}
|
|
|
|
err := ttSync.updateTimeTick(msg, "1")
|
|
assert.Nil(t, err)
|
|
|
|
msg.ChannelNames = append(msg.ChannelNames, "a")
|
|
err = ttSync.updateTimeTick(msg, "1")
|
|
assert.Error(t, err)
|
|
|
|
msg.Timestamps = append(msg.Timestamps, uint64(2))
|
|
msg.DefaultTimestamp = uint64(200)
|
|
cttMsg := newChanTsMsg(msg, 1)
|
|
ttSync.proxyTimeTick[msg.Base.SourceID] = cttMsg
|
|
|
|
ttSync.ddlMinTs = uint64(100)
|
|
err = ttSync.updateTimeTick(msg, "1")
|
|
assert.Nil(t, err)
|
|
|
|
ttSync.ddlMinTs = uint64(300)
|
|
ttSync.session.ServerID = int64(1)
|
|
err = ttSync.updateTimeTick(msg, "1")
|
|
assert.Nil(t, err)
|
|
})
|
|
|
|
t.Run("minTimeTick", func(t *testing.T) {
|
|
tts := make([]uint64, 2)
|
|
tts[0] = uint64(5)
|
|
tts[1] = uint64(3)
|
|
|
|
ret := minTimeTick(tts...)
|
|
assert.Equal(t, ret, tts[1])
|
|
})
|
|
}
|