2021-12-28 21:56:57 +08:00
|
|
|
// 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
|
2021-09-07 09:39:47 +08:00
|
|
|
// with the License. You may obtain a copy of the License at
|
|
|
|
//
|
2021-12-28 21:56:57 +08:00
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
2021-09-07 09:39:47 +08:00
|
|
|
//
|
2021-12-28 21:56:57 +08:00
|
|
|
// 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.
|
2021-09-07 09:39:47 +08:00
|
|
|
|
|
|
|
package flowgraph
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"os"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/milvus-io/milvus/internal/msgstream"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestInputNode(t *testing.T) {
|
|
|
|
os.Setenv("ROCKSMQ_PATH", "/tmp/MilvusTest/FlowGraph/TestInputNode")
|
|
|
|
msFactory := msgstream.NewRmsFactory()
|
|
|
|
m := map[string]interface{}{}
|
|
|
|
err := msFactory.SetParams(m)
|
|
|
|
assert.Nil(t, err)
|
|
|
|
|
|
|
|
msgStream, _ := msFactory.NewMsgStream(context.TODO())
|
|
|
|
channels := []string{"cc"}
|
|
|
|
msgStream.AsConsumer(channels, "sub")
|
|
|
|
msgStream.Start()
|
|
|
|
|
|
|
|
msgPack := generateMsgPack()
|
|
|
|
produceStream, _ := msFactory.NewMsgStream(context.TODO())
|
|
|
|
produceStream.AsProducer(channels)
|
|
|
|
produceStream.Produce(&msgPack)
|
|
|
|
|
|
|
|
nodeName := "input_node"
|
|
|
|
inputNode := &InputNode{
|
2021-09-29 20:19:59 +08:00
|
|
|
inStream: msgStream,
|
2021-09-07 09:39:47 +08:00
|
|
|
name: nodeName,
|
|
|
|
}
|
2021-09-29 20:19:59 +08:00
|
|
|
defer inputNode.Close()
|
2021-09-07 09:39:47 +08:00
|
|
|
|
|
|
|
isInputNode := inputNode.IsInputNode()
|
|
|
|
assert.True(t, isInputNode)
|
|
|
|
|
|
|
|
name := inputNode.Name()
|
|
|
|
assert.Equal(t, name, nodeName)
|
|
|
|
|
|
|
|
stream := inputNode.InStream()
|
|
|
|
assert.NotNil(t, stream)
|
|
|
|
|
2021-09-29 20:19:59 +08:00
|
|
|
output := inputNode.Operate([]Msg{})
|
|
|
|
assert.Greater(t, len(output), 0)
|
2021-09-07 09:39:47 +08:00
|
|
|
}
|
|
|
|
|
2021-09-13 16:34:26 +08:00
|
|
|
func Test_NewInputNode(t *testing.T) {
|
2021-09-07 09:39:47 +08:00
|
|
|
nodeName := "input_node"
|
2021-12-14 15:31:07 +08:00
|
|
|
var maxQueueLength int32
|
2021-09-07 09:39:47 +08:00
|
|
|
var maxParallelism int32 = 100
|
|
|
|
node := NewInputNode(nil, nodeName, maxQueueLength, maxParallelism)
|
|
|
|
assert.NotNil(t, node)
|
|
|
|
assert.Equal(t, node.name, nodeName)
|
|
|
|
assert.Equal(t, node.maxQueueLength, maxQueueLength)
|
|
|
|
assert.Equal(t, node.maxParallelism, maxParallelism)
|
|
|
|
}
|