mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-04 21:09:06 +08:00
c9d0c157ec
Signed-off-by: jaime <yun.zhang@zilliz.com>
129 lines
3.4 KiB
Go
129 lines
3.4 KiB
Go
// Licensed to the LF AI & Data foundation under one
|
|
// or more contributor license agreements. See the NOTICE file
|
|
// distributed with this work for additional information
|
|
// regarding copyright ownership. The ASF licenses this file
|
|
// to you 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 msgdispatcher
|
|
|
|
import (
|
|
"sync"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
"github.com/milvus-io/milvus/pkg/mq/msgstream"
|
|
"github.com/milvus-io/milvus/pkg/mq/msgstream/mqwrapper"
|
|
)
|
|
|
|
func TestDispatcher(t *testing.T) {
|
|
t.Run("test base", func(t *testing.T) {
|
|
d, err := NewDispatcher(newMockFactory(), true, "mock_pchannel_0", nil,
|
|
"mock_subName_0", mqwrapper.SubscriptionPositionEarliest, nil, nil)
|
|
assert.NoError(t, err)
|
|
assert.NotPanics(t, func() {
|
|
d.Handle(start)
|
|
d.Handle(pause)
|
|
d.Handle(resume)
|
|
d.Handle(terminate)
|
|
})
|
|
|
|
pos := &msgstream.MsgPosition{
|
|
ChannelName: "mock_vchannel_0",
|
|
MsgGroup: "mock_msg_group",
|
|
Timestamp: 100,
|
|
}
|
|
d.curTs.Store(pos.GetTimestamp())
|
|
curTs := d.CurTs()
|
|
assert.Equal(t, pos.Timestamp, curTs)
|
|
})
|
|
|
|
t.Run("test target", func(t *testing.T) {
|
|
d, err := NewDispatcher(newMockFactory(), true, "mock_pchannel_0", nil,
|
|
"mock_subName_0", mqwrapper.SubscriptionPositionEarliest, nil, nil)
|
|
assert.NoError(t, err)
|
|
output := make(chan *msgstream.MsgPack, 1024)
|
|
d.AddTarget(&target{
|
|
vchannel: "mock_vchannel_0",
|
|
pos: nil,
|
|
ch: output,
|
|
})
|
|
d.AddTarget(&target{
|
|
vchannel: "mock_vchannel_1",
|
|
pos: nil,
|
|
ch: nil,
|
|
})
|
|
num := d.TargetNum()
|
|
assert.Equal(t, 2, num)
|
|
|
|
target, err := d.GetTarget("mock_vchannel_0")
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, cap(output), cap(target.ch))
|
|
|
|
d.CloseTarget("mock_vchannel_0")
|
|
|
|
select {
|
|
case <-time.After(1 * time.Second):
|
|
assert.Fail(t, "timeout, didn't receive close message")
|
|
case _, ok := <-target.ch:
|
|
assert.False(t, ok)
|
|
}
|
|
|
|
num = d.TargetNum()
|
|
assert.Equal(t, 1, num)
|
|
})
|
|
|
|
t.Run("test concurrent send and close", func(t *testing.T) {
|
|
for i := 0; i < 100; i++ {
|
|
output := make(chan *msgstream.MsgPack, 1024)
|
|
target := &target{
|
|
vchannel: "mock_vchannel_0",
|
|
pos: nil,
|
|
ch: output,
|
|
}
|
|
assert.Equal(t, cap(output), cap(target.ch))
|
|
wg := &sync.WaitGroup{}
|
|
for j := 0; j < 100; j++ {
|
|
wg.Add(1)
|
|
go func() {
|
|
err := target.send(&MsgPack{})
|
|
assert.NoError(t, err)
|
|
wg.Done()
|
|
}()
|
|
wg.Add(1)
|
|
go func() {
|
|
target.close()
|
|
wg.Done()
|
|
}()
|
|
}
|
|
wg.Wait()
|
|
}
|
|
})
|
|
}
|
|
|
|
func BenchmarkDispatcher_handle(b *testing.B) {
|
|
d, err := NewDispatcher(newMockFactory(), true, "mock_pchannel_0", nil,
|
|
"mock_subName_0", mqwrapper.SubscriptionPositionEarliest, nil, nil)
|
|
assert.NoError(b, err)
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
d.Handle(start)
|
|
d.Handle(pause)
|
|
d.Handle(resume)
|
|
d.Handle(terminate)
|
|
}
|
|
// BenchmarkDispatcher_handle-12 9568 122123 ns/op
|
|
// PASS
|
|
}
|