mirror of https://github.com/apache/activemq.git
128 lines
5.3 KiB
C#
128 lines
5.3 KiB
C#
/*
|
|
* Copyright 2006 The Apache Software Foundation or its licensors, as
|
|
* applicable.
|
|
*
|
|
* 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.
|
|
*/
|
|
using System;
|
|
using System.IO;
|
|
|
|
using NUnit.Framework;
|
|
|
|
using OpenWire.Client;
|
|
using OpenWire.Client.Core;
|
|
|
|
namespace OpenWire.Client
|
|
{
|
|
[ TestFixture ]
|
|
public class JMSPropertyTest : TestSupport
|
|
{
|
|
// standard JMS properties
|
|
string expectedText = "Hey this works!";
|
|
string correlationID = "abc";
|
|
ITemporaryQueue replyTo;
|
|
bool persistent = true;
|
|
byte priority = 5;
|
|
String type = "FooType";
|
|
String groupID = "MyGroup";
|
|
int groupSeq = 1;
|
|
|
|
// custom properties
|
|
string customText = "Cheese";
|
|
bool custom1 = true;
|
|
byte custom2 = 12;
|
|
short custom3 = 0x1234;
|
|
int custom4 = 0x12345678;
|
|
long custom5 = 0x1234567812345678;
|
|
char custom6 = 'J';
|
|
|
|
[ Test ]
|
|
public override void SendAndSyncReceive()
|
|
{
|
|
base.SendAndSyncReceive();
|
|
}
|
|
|
|
protected override IMessage CreateMessage(ISession session)
|
|
{
|
|
ITextMessage message = session.CreateTextMessage(expectedText);
|
|
replyTo = session.CreateTemporaryQueue();
|
|
|
|
// lets set the headers
|
|
message.JMSCorrelationID = correlationID;
|
|
message.JMSReplyTo = replyTo;
|
|
message.JMSPersistent = persistent;
|
|
message.JMSPriority = priority;
|
|
message.JMSType = type;
|
|
message.JMSXGroupID = groupID;
|
|
message.JMSXGroupSeq = groupSeq;
|
|
|
|
// lets set the custom headers
|
|
message.Properties["customText"] = customText;
|
|
message.Properties["custom1"] = custom1;
|
|
message.Properties["custom2"] = custom2;
|
|
message.Properties["custom3"] = custom3;
|
|
message.Properties["custom4"] = custom4;
|
|
message.Properties["custom5"] = custom5;
|
|
message.Properties["custom6"] = custom6;
|
|
|
|
return message;
|
|
}
|
|
|
|
protected override void AssertValidMessage(IMessage message)
|
|
{
|
|
Assert.IsTrue(message is ITextMessage, "Did not receive a ITextMessage!");
|
|
|
|
Console.WriteLine("Received Message: " + message);
|
|
|
|
ITextMessage textMessage = (ITextMessage) message;
|
|
String text = textMessage.Text;
|
|
Assert.AreEqual(expectedText, text, "the message text");
|
|
|
|
// compare standard JMS headers
|
|
Assert.AreEqual(correlationID, message.JMSCorrelationID, "JMSCorrelationID");
|
|
Assert.AreEqual(replyTo, message.JMSReplyTo, "JMSReplyTo");
|
|
Assert.AreEqual(persistent, message.JMSPersistent, "JMSPersistent");
|
|
Assert.AreEqual(priority, message.JMSPriority, "JMSPriority");
|
|
Assert.AreEqual(type, message.JMSType, "JMSType");
|
|
Assert.AreEqual(groupID, message.JMSXGroupID, "JMSXGroupID");
|
|
Assert.AreEqual(groupSeq, message.JMSXGroupSeq, "JMSXGroupSeq");
|
|
|
|
// compare custom headers
|
|
Assert.AreEqual(customText, message.Properties["customText"], "customText");
|
|
Assert.AreEqual(custom1, message.Properties["custom1"], "custom1");
|
|
Assert.AreEqual(custom2, message.Properties["custom2"], "custom2");
|
|
Assert.AreEqual(custom3, message.Properties["custom3"], "custom3");
|
|
Assert.AreEqual(custom4, message.Properties["custom4"], "custom4");
|
|
// TODO
|
|
Assert.AreEqual(custom5, message.Properties["custom5"], "custom5");
|
|
Assert.AreEqual(custom6, message.Properties["custom6"], "custom6");
|
|
|
|
Assert.AreEqual(custom1, message.Properties.GetBool("custom1"), "custom1");
|
|
Assert.AreEqual(custom2, message.Properties.GetByte("custom2"), "custom2");
|
|
Assert.AreEqual(custom3, message.Properties.GetShort("custom3"), "custom3");
|
|
Assert.AreEqual(custom4, message.Properties.GetInt("custom4"), "custom4");
|
|
Assert.AreEqual(custom5, message.Properties.GetLong("custom5"), "custom5");
|
|
Assert.AreEqual(custom6, message.Properties.GetChar("custom6"), "custom6");
|
|
|
|
// lets now look at some standard JMS headers
|
|
Console.WriteLine("JMSExpiration: " + message.JMSExpiration);
|
|
Console.WriteLine("JMSMessageId: " + message.JMSMessageId);
|
|
Console.WriteLine("JMSRedelivered: " + message.JMSRedelivered);
|
|
Console.WriteLine("JMSTimestamp: " + message.JMSTimestamp);
|
|
Console.WriteLine("JMSXDeliveryCount: " + message.JMSXDeliveryCount);
|
|
Console.WriteLine("JMSXProducerTXID: " + message.JMSXProducerTXID);
|
|
}
|
|
}
|
|
}
|
|
|