mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-02 03:48:37 +08:00
f97127ae55
bug fixup, configurable natsmq, add unittest, pass e2e. move natsmq to pkg project Signed-off-by: chyezh <ye.zhen@zilliz.com> Co-authored-by: yiwangdr <yiwangdr@gmail.com>
45 lines
1.4 KiB
Go
45 lines
1.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 nmq
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/nats-io/nats.go"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestNmqMessage_All(t *testing.T) {
|
|
topic := t.Name()
|
|
raw := nats.NewMsg(topic)
|
|
raw.Data = []byte(`test payload`)
|
|
raw.Header.Add("test", "test")
|
|
nm := nmqMessage{
|
|
meta: &nats.MsgMetadata{
|
|
Sequence: nats.SequencePair{
|
|
Stream: 12,
|
|
},
|
|
},
|
|
raw: raw,
|
|
}
|
|
payload := []byte("test payload")
|
|
assert.Equal(t, topic, nm.Topic())
|
|
assert.Equal(t, MessageIDType(12), nm.ID().(*nmqID).messageID)
|
|
assert.Equal(t, payload, nm.Payload())
|
|
assert.Equal(t, nm.Properties()["test"], "test")
|
|
}
|