milvus/pkg/mq/msgstream/mqwrapper/nmq/nmq_message_test.go
chyezh f97127ae55
add nats mq wrappers (#24445)
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>
2023-06-07 10:00:37 +08:00

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")
}