blob: 2f8d298e8b04867322bb83b6e2d41792a3ba284f [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) 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 org.apache.qpid.proton.amqp.transport;
import static org.hamcrest.CoreMatchers.is;
import static org.hamcrest.CoreMatchers.not;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.junit.Assert.assertEquals;
import java.util.Collections;
import org.apache.qpid.proton.amqp.Symbol;
import org.junit.Test;
public class ErrorConditionTest
{
@Test
public void testEqualityOfNewlyConstructed()
{
ErrorCondition new1 = new ErrorCondition();
ErrorCondition new2 = new ErrorCondition();
assertErrorConditionsEqual(new1, new2);
}
@Test
public void testSameObject()
{
ErrorCondition error = new ErrorCondition();
assertErrorConditionsEqual(error, error);
}
@Test
public void testConditionEquality()
{
String symbolValue = "symbol";
ErrorCondition same1 = new ErrorCondition();
same1.setCondition(Symbol.getSymbol(new String(symbolValue)));
ErrorCondition same2 = new ErrorCondition();
same2.setCondition(Symbol.getSymbol(new String(symbolValue)));
assertErrorConditionsEqual(same1, same2);
ErrorCondition different = new ErrorCondition();
different.setCondition(Symbol.getSymbol("other"));
assertErrorConditionsNotEqual(same1, different);
}
@Test
public void testConditionAndDescriptionEquality()
{
String symbolValue = "symbol";
String descriptionValue = "description";
ErrorCondition same1 = new ErrorCondition();
same1.setCondition(Symbol.getSymbol(new String(symbolValue)));
same1.setDescription(new String(descriptionValue));
ErrorCondition same2 = new ErrorCondition();
same2.setCondition(Symbol.getSymbol(new String(symbolValue)));
same2.setDescription(new String(descriptionValue));
assertErrorConditionsEqual(same1, same2);
ErrorCondition different = new ErrorCondition();
different.setCondition(Symbol.getSymbol(symbolValue));
different.setDescription("other");
assertErrorConditionsNotEqual(same1, different);
}
@Test
public void testConditionDescriptionInfoEquality()
{
String symbolValue = "symbol";
String descriptionValue = "description";
ErrorCondition same1 = new ErrorCondition();
same1.setCondition(Symbol.getSymbol(new String(symbolValue)));
same1.setDescription(new String(descriptionValue));
same1.setInfo(Collections.singletonMap(Symbol.getSymbol("key"), "value"));
ErrorCondition same2 = new ErrorCondition();
same2.setCondition(Symbol.getSymbol(new String(symbolValue)));
same2.setDescription(new String(descriptionValue));
same2.setInfo(Collections.singletonMap(Symbol.getSymbol("key"), "value"));
assertErrorConditionsEqual(same1, same2);
ErrorCondition different = new ErrorCondition();
different.setCondition(Symbol.getSymbol(symbolValue));
different.setDescription(new String(descriptionValue));
different.setInfo(Collections.singletonMap(Symbol.getSymbol("other"), "value"));
assertErrorConditionsNotEqual(same1, different);
}
private void assertErrorConditionsNotEqual(ErrorCondition error1, ErrorCondition error2)
{
assertThat(error1, is(not(error2)));
assertThat(error2, is(not(error1)));
}
private void assertErrorConditionsEqual(ErrorCondition error1, ErrorCondition error2)
{
assertEquals(error1, error2);
assertEquals(error2, error1);
assertEquals(error1.hashCode(), error2.hashCode());
}
}