2006-02-24 03:50:52 -05:00
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*/
|
2006-02-23 15:36:12 -05:00
|
|
|
using NUnit.Framework;
|
|
|
|
using OpenWire.Client.Commands;
|
|
|
|
using System.Collections;
|
|
|
|
|
|
|
|
namespace OpenWire.Client
|
|
|
|
{
|
|
|
|
[TestFixture]
|
|
|
|
public class CommandTest
|
|
|
|
{
|
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void TestCommand()
|
|
|
|
{
|
|
|
|
ConsumerId value1 = new ConsumerId();
|
|
|
|
value1.ConnectionId = "abc";
|
|
|
|
value1.SessionId = 123;
|
|
|
|
value1.Value = 456;
|
|
|
|
|
|
|
|
ConsumerId value2 = new ConsumerId();
|
|
|
|
value2.ConnectionId = "abc";
|
|
|
|
value2.SessionId = 123;
|
|
|
|
value2.Value = 456;
|
|
|
|
|
|
|
|
ConsumerId value3 = new ConsumerId();
|
|
|
|
value3.ConnectionId = "abc";
|
|
|
|
value3.SessionId = 123;
|
|
|
|
value3.Value = 457;
|
|
|
|
|
|
|
|
Assert.AreEqual(value1, value2, "value1 and value2 should be equal");
|
|
|
|
Assert.AreEqual(value1.GetHashCode(), value2.GetHashCode(), "value1 and value2 hash codes should be equal");
|
|
|
|
|
|
|
|
Assert.IsTrue(!value1.Equals(value3), "value1 and value3 should not be equal");
|
|
|
|
Assert.IsTrue(!value3.Equals(value2), "value3 and value2 should not be equal");
|
|
|
|
|
|
|
|
// now lets test an IDictionary
|
|
|
|
IDictionary dictionary = new Hashtable();
|
|
|
|
dictionary[value1] = value3;
|
|
|
|
|
|
|
|
// now lets lookup with a copy
|
|
|
|
object actual = dictionary[value2];
|
|
|
|
|
|
|
|
Assert.AreEqual(value3, actual, "Should have found item in Map using value2 as a key");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|