mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-02 20:09:57 +08:00
8ef650be35
Signed-off-by: yangxuan <xuan.yang@zilliz.com>
245 lines
7.2 KiB
Go
245 lines
7.2 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 proxy
|
|
|
|
import (
|
|
"sync"
|
|
"testing"
|
|
|
|
"github.com/milvus-io/milvus/internal/util/uniquegenerator"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestChannelsMgrImpl_getChannels(t *testing.T) {
|
|
master := newMockGetChannelsService()
|
|
query := newMockGetChannelsService()
|
|
factory := newSimpleMockMsgStreamFactory()
|
|
mgr := newChannelsMgrImpl(master.GetChannels, nil, query.GetChannels, nil, factory)
|
|
defer mgr.removeAllDMLStream()
|
|
|
|
collID := UniqueID(uniquegenerator.GetUniqueIntGeneratorIns().GetInt())
|
|
_, err := mgr.getChannels(collID)
|
|
assert.NotEqual(t, nil, err)
|
|
|
|
err = mgr.createDMLMsgStream(collID)
|
|
assert.Equal(t, nil, err)
|
|
|
|
_, err = mgr.getChannels(collID)
|
|
assert.Equal(t, nil, err)
|
|
}
|
|
|
|
func TestChannelsMgrImpl_getVChannels(t *testing.T) {
|
|
master := newMockGetChannelsService()
|
|
query := newMockGetChannelsService()
|
|
factory := newSimpleMockMsgStreamFactory()
|
|
mgr := newChannelsMgrImpl(master.GetChannels, nil, query.GetChannels, nil, factory)
|
|
defer mgr.removeAllDMLStream()
|
|
|
|
collID := UniqueID(uniquegenerator.GetUniqueIntGeneratorIns().GetInt())
|
|
_, err := mgr.getVChannels(collID)
|
|
assert.NotEqual(t, nil, err)
|
|
|
|
err = mgr.createDMLMsgStream(collID)
|
|
assert.Equal(t, nil, err)
|
|
|
|
_, err = mgr.getVChannels(collID)
|
|
assert.Equal(t, nil, err)
|
|
}
|
|
|
|
func TestChannelsMgrImpl_createDMLMsgStream(t *testing.T) {
|
|
master := newMockGetChannelsService()
|
|
query := newMockGetChannelsService()
|
|
factory := newSimpleMockMsgStreamFactory()
|
|
mgr := newChannelsMgrImpl(master.GetChannels, nil, query.GetChannels, nil, factory)
|
|
defer mgr.removeAllDMLStream()
|
|
|
|
collID := UniqueID(uniquegenerator.GetUniqueIntGeneratorIns().GetInt())
|
|
_, err := mgr.getChannels(collID)
|
|
assert.NotEqual(t, nil, err)
|
|
_, err = mgr.getVChannels(collID)
|
|
assert.NotEqual(t, nil, err)
|
|
|
|
err = mgr.createDMLMsgStream(collID)
|
|
assert.Equal(t, nil, err)
|
|
|
|
_, err = mgr.getChannels(collID)
|
|
assert.Equal(t, nil, err)
|
|
_, err = mgr.getVChannels(collID)
|
|
assert.Equal(t, nil, err)
|
|
}
|
|
|
|
func TestChannelsMgrImpl_getDMLMsgStream(t *testing.T) {
|
|
master := newMockGetChannelsService()
|
|
query := newMockGetChannelsService()
|
|
factory := newSimpleMockMsgStreamFactory()
|
|
mgr := newChannelsMgrImpl(master.GetChannels, nil, query.GetChannels, nil, factory)
|
|
defer mgr.removeAllDMLStream()
|
|
|
|
collID := UniqueID(uniquegenerator.GetUniqueIntGeneratorIns().GetInt())
|
|
_, err := mgr.getDMLStream(collID)
|
|
assert.NotEqual(t, nil, err)
|
|
|
|
err = mgr.createDMLMsgStream(collID)
|
|
assert.Equal(t, nil, err)
|
|
|
|
_, err = mgr.getDMLStream(collID)
|
|
assert.Equal(t, nil, err)
|
|
}
|
|
|
|
func TestChannelsMgrImpl_removeDMLMsgStream(t *testing.T) {
|
|
master := newMockGetChannelsService()
|
|
query := newMockGetChannelsService()
|
|
factory := newSimpleMockMsgStreamFactory()
|
|
mgr := newChannelsMgrImpl(master.GetChannels, nil, query.GetChannels, nil, factory)
|
|
defer mgr.removeAllDMLStream()
|
|
|
|
collID := UniqueID(uniquegenerator.GetUniqueIntGeneratorIns().GetInt())
|
|
_, err := mgr.getDMLStream(collID)
|
|
assert.NotEqual(t, nil, err)
|
|
|
|
err = mgr.removeDMLStream(collID)
|
|
assert.NotEqual(t, nil, err)
|
|
|
|
err = mgr.createDMLMsgStream(collID)
|
|
assert.Equal(t, nil, err)
|
|
|
|
_, err = mgr.getDMLStream(collID)
|
|
assert.Equal(t, nil, err)
|
|
|
|
err = mgr.removeDMLStream(collID)
|
|
assert.Equal(t, nil, err)
|
|
|
|
_, err = mgr.getDMLStream(collID)
|
|
assert.NotEqual(t, nil, err)
|
|
}
|
|
|
|
func TestChannelsMgrImpl_removeAllDMLMsgStream(t *testing.T) {
|
|
master := newMockGetChannelsService()
|
|
query := newMockGetChannelsService()
|
|
factory := newSimpleMockMsgStreamFactory()
|
|
mgr := newChannelsMgrImpl(master.GetChannels, nil, query.GetChannels, nil, factory)
|
|
defer mgr.removeAllDMLStream()
|
|
|
|
num := 10
|
|
for i := 0; i < num; i++ {
|
|
collID := UniqueID(uniquegenerator.GetUniqueIntGeneratorIns().GetInt())
|
|
err := mgr.createDMLMsgStream(collID)
|
|
assert.Equal(t, nil, err)
|
|
}
|
|
}
|
|
|
|
func TestChannelsMgrImpl_createDQLMsgStream(t *testing.T) {
|
|
master := newMockGetChannelsService()
|
|
query := newMockGetChannelsService()
|
|
factory := newSimpleMockMsgStreamFactory()
|
|
mgr := newChannelsMgrImpl(master.GetChannels, nil, query.GetChannels, nil, factory)
|
|
defer mgr.removeAllDMLStream()
|
|
|
|
collID := UniqueID(uniquegenerator.GetUniqueIntGeneratorIns().GetInt())
|
|
|
|
err := mgr.createDQLStream(collID)
|
|
assert.Equal(t, nil, err)
|
|
}
|
|
|
|
func TestChannelsMgrImpl_getDQLMsgStream(t *testing.T) {
|
|
master := newMockGetChannelsService()
|
|
query := newMockGetChannelsService()
|
|
factory := newSimpleMockMsgStreamFactory()
|
|
mgr := newChannelsMgrImpl(master.GetChannels, nil, query.GetChannels, nil, factory)
|
|
defer mgr.removeAllDMLStream()
|
|
|
|
collID := UniqueID(uniquegenerator.GetUniqueIntGeneratorIns().GetInt())
|
|
_, err := mgr.getDQLStream(collID)
|
|
assert.NotEqual(t, nil, err)
|
|
|
|
err = mgr.createDQLStream(collID)
|
|
assert.Equal(t, nil, err)
|
|
|
|
_, err = mgr.getDQLStream(collID)
|
|
assert.Equal(t, nil, err)
|
|
}
|
|
|
|
func TestChannelsMgrImpl_removeDQLMsgStream(t *testing.T) {
|
|
master := newMockGetChannelsService()
|
|
query := newMockGetChannelsService()
|
|
factory := newSimpleMockMsgStreamFactory()
|
|
mgr := newChannelsMgrImpl(master.GetChannels, nil, query.GetChannels, nil, factory)
|
|
defer mgr.removeAllDMLStream()
|
|
|
|
collID := UniqueID(uniquegenerator.GetUniqueIntGeneratorIns().GetInt())
|
|
_, err := mgr.getDQLStream(collID)
|
|
assert.NotEqual(t, nil, err)
|
|
|
|
err = mgr.removeDQLStream(collID)
|
|
assert.NotEqual(t, nil, err)
|
|
|
|
err = mgr.createDQLStream(collID)
|
|
assert.Equal(t, nil, err)
|
|
|
|
_, err = mgr.getDQLStream(collID)
|
|
assert.Equal(t, nil, err)
|
|
|
|
err = mgr.removeDQLStream(collID)
|
|
assert.Equal(t, nil, err)
|
|
|
|
_, err = mgr.getDQLStream(collID)
|
|
assert.NotEqual(t, nil, err)
|
|
}
|
|
|
|
func TestChannelsMgrImpl_removeAllDQLMsgStream(t *testing.T) {
|
|
master := newMockGetChannelsService()
|
|
query := newMockGetChannelsService()
|
|
factory := newSimpleMockMsgStreamFactory()
|
|
mgr := newChannelsMgrImpl(master.GetChannels, nil, query.GetChannels, nil, factory)
|
|
defer mgr.removeAllDMLStream()
|
|
|
|
num := 10
|
|
for i := 0; i < num; i++ {
|
|
collID := UniqueID(uniquegenerator.GetUniqueIntGeneratorIns().GetInt())
|
|
err := mgr.createDQLStream(collID)
|
|
assert.Equal(t, nil, err)
|
|
}
|
|
}
|
|
|
|
func TestGetAllKeysAndGetAllValues(t *testing.T) {
|
|
chanMapping := make(map[vChan]pChan)
|
|
chanMapping["v1"] = "p1"
|
|
chanMapping["v2"] = "p2"
|
|
|
|
t.Run("getAllKeys", func(t *testing.T) {
|
|
vChans := getAllKeys(chanMapping)
|
|
assert.Equal(t, 2, len(vChans))
|
|
})
|
|
|
|
t.Run("getAllValues", func(t *testing.T) {
|
|
pChans := getAllValues(chanMapping)
|
|
assert.Equal(t, 2, len(pChans))
|
|
})
|
|
}
|
|
|
|
func TestDeleteVChansByVID(t *testing.T) {
|
|
mgr := singleTypeChannelsMgr{
|
|
id2vchansMtx: sync.RWMutex{},
|
|
id2vchans: map[int][]vChan{
|
|
10: {"v1"},
|
|
},
|
|
}
|
|
|
|
mgr.deleteVChansByVID(10)
|
|
}
|