81 lines
3.0 KiB
Go
81 lines
3.0 KiB
Go
/*
|
|
Copyright 2021 The Dapr Authors
|
|
Licensed 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 servicebus
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
|
|
azservicebus "github.com/Azure/azure-sdk-for-go/sdk/messaging/azservicebus"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestAddMessageAttributesToMetadata(t *testing.T) {
|
|
testCases := []struct {
|
|
name string
|
|
ASBMessage azservicebus.ReceivedMessage
|
|
expectedMetadata map[string]string
|
|
}{
|
|
{
|
|
name: "Metadata must contain all attributes with the correct prefix",
|
|
ASBMessage: azservicebus.ReceivedMessage{
|
|
MessageID: testMessageID,
|
|
SessionID: &testSessionID,
|
|
CorrelationID: &testCorrelationID,
|
|
Subject: &testLabel,
|
|
ReplyTo: &testReplyTo,
|
|
To: &testTo,
|
|
ContentType: &testContentType,
|
|
LockToken: testLockTokenBytes,
|
|
DeliveryCount: testDeliveryCount,
|
|
EnqueuedTime: &testSampleTime,
|
|
SequenceNumber: &testSequenceNumber,
|
|
ScheduledEnqueueTime: &testSampleTime,
|
|
PartitionKey: &testPartitionKey,
|
|
LockedUntil: &testSampleTime,
|
|
},
|
|
expectedMetadata: map[string]string{
|
|
"metadata." + MessageKeyMessageID: testMessageID,
|
|
"metadata." + MessageKeySessionID: testSessionID,
|
|
"metadata." + MessageKeyCorrelationID: testCorrelationID,
|
|
"metadata." + MessageKeyLabel: testLabel, // Subject
|
|
"metadata." + MessageKeyReplyTo: testReplyTo,
|
|
"metadata." + MessageKeyTo: testTo,
|
|
"metadata." + MessageKeyContentType: testContentType,
|
|
"metadata." + MessageKeyLockToken: testLockTokenString,
|
|
"metadata." + MessageKeyDeliveryCount: "1",
|
|
"metadata." + MessageKeyEnqueuedTimeUtc: testSampleTimeHTTPFormat,
|
|
"metadata." + MessageKeySequenceNumber: "1",
|
|
"metadata." + MessageKeyScheduledEnqueueTimeUtc: testSampleTimeHTTPFormat,
|
|
"metadata." + MessageKeyPartitionKey: testPartitionKey,
|
|
"metadata." + MessageKeyLockedUntilUtc: testSampleTimeHTTPFormat,
|
|
},
|
|
},
|
|
}
|
|
|
|
metadataMap := map[string]map[string]string{
|
|
"Nil": nil,
|
|
"Empty": {},
|
|
}
|
|
|
|
for _, tc := range testCases {
|
|
for mType, mMap := range metadataMap {
|
|
t.Run(fmt.Sprintf("%s, metadata is %s", tc.name, mType), func(t *testing.T) {
|
|
actual := addMessageAttributesToMetadata(mMap, &tc.ASBMessage)
|
|
assert.Equal(t, tc.expectedMetadata, actual)
|
|
})
|
|
}
|
|
}
|
|
}
|