milvus/internal/util/mqclient/pulsar_id_test.go
edward.zeng 1c7e8bbcaf
[skip e2e] Update mqclient pulsar id test license (#14858)
Signed-off-by: Edward Zeng <jie.zeng@zilliz.com>
2022-01-05 18:57:21 +08:00

75 lines
1.9 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 mqclient
import (
"testing"
"github.com/apache/pulsar-client-go/pulsar"
"github.com/stretchr/testify/assert"
)
func TestPulsarID_Serialize(t *testing.T) {
mid := pulsar.EarliestMessageID()
pid := &pulsarID{
messageID: mid,
}
binary := pid.Serialize()
assert.NotNil(t, binary)
assert.NotZero(t, len(binary))
pid.LedgerID()
pid.EntryID()
pid.BatchIdx()
pid.PartitionIdx()
}
func Test_SerializePulsarMsgID(t *testing.T) {
mid := pulsar.EarliestMessageID()
binary := SerializePulsarMsgID(mid)
assert.NotNil(t, binary)
assert.NotZero(t, len(binary))
}
func Test_DeserializePulsarMsgID(t *testing.T) {
mid := pulsar.EarliestMessageID()
binary := SerializePulsarMsgID(mid)
res, err := DeserializePulsarMsgID(binary)
assert.Nil(t, err)
assert.NotNil(t, res)
}
func Test_PulsarMsgIDToString(t *testing.T) {
mid := pulsar.EarliestMessageID()
str := PulsarMsgIDToString(mid)
assert.NotNil(t, str)
assert.NotZero(t, len(str))
}
func Test_StringToPulsarMsgID(t *testing.T) {
mid := pulsar.EarliestMessageID()
str := PulsarMsgIDToString(mid)
res, err := StringToPulsarMsgID(str)
assert.Nil(t, err)
assert.NotNil(t, res)
}