blob: a458b1b404ac8127eccd402e2a5747f7c30655b5 [file] [log] [blame]
/*
* $Id$
*
* 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.tiles.request.collection;
import static org.junit.Assert.*;
import org.junit.Test;
/**
* Tests {@link MapEntry}.
*
* @version $Rev$ $Date$
*/
public class MapEntryTest {
/**
* Test method for {@link org.apache.tiles.request.collection.MapEntry#hashCode()}.
*/
@Test
public void testHashCode() {
MapEntry<String, String> entry = new MapEntry<String, String>("key", "value", false);
assertEquals("key".hashCode() ^ "value".hashCode(), entry.hashCode());
entry = new MapEntry<String, String>(null, "value", false);
assertEquals(0 ^ "value".hashCode(), entry.hashCode());
entry = new MapEntry<String, String>("key", null, false);
assertEquals("key".hashCode() ^ 0, entry.hashCode());
entry = new MapEntry<String, String>(null, null, false);
assertEquals(0 ^ 0, entry.hashCode());
}
/**
* Test method for {@link org.apache.tiles.request.collection.MapEntry#getKey()}.
*/
@Test
public void testGetKey() {
MapEntry<String, String> entry = new MapEntry<String, String>("key", "value", false);
assertEquals("key", entry.getKey());
}
/**
* Test method for {@link org.apache.tiles.request.collection.MapEntry#getValue()}.
*/
@Test
public void testGetValue() {
MapEntry<String, String> entry = new MapEntry<String, String>("key", "value", false);
assertEquals("value", entry.getValue());
}
/**
* Test method for {@link org.apache.tiles.request.collection.MapEntry#setValue(java.lang.Object)}.
*/
@Test
public void testSetValue() {
MapEntry<String, String> entry = new MapEntry<String, String>("key", "value", true);
assertEquals("value", entry.getValue());
entry.setValue("value2");
assertEquals("value2", entry.getValue());
}
/**
* Test method for {@link org.apache.tiles.request.collection.MapEntry#setValue(java.lang.Object)}.
*/
@Test(expected = UnsupportedOperationException.class)
public void testSetValueException() {
MapEntry<String, String> entry = new MapEntry<String, String>("key", "value", false);
assertEquals("value", entry.getValue());
entry.setValue("value2");
}
/**
* Test method for {@link org.apache.tiles.request.collection.MapEntry#equals(java.lang.Object)}.
*/
@Test
public void testEqualsObject() {
MapEntry<String, String> entry = new MapEntry<String, String>("key", "value", false);
assertFalse(entry.equals(null));
assertFalse(entry.equals("whatever"));
MapEntry<String, String> entry2 = new MapEntry<String, String>("key", "value", false);
assertTrue(entry.equals(entry2));
entry2 = new MapEntry<String, String>("key2", "value", false);
assertFalse(entry.equals(entry2));
entry2 = new MapEntry<String, String>("key", "value2", false);
assertFalse(entry.equals(entry2));
entry = new MapEntry<String, String>(null, "value", false);
entry2 = new MapEntry<String, String>(null, "value", false);
assertTrue(entry.equals(entry2));
entry = new MapEntry<String, String>("key", null, false);
entry2 = new MapEntry<String, String>("key", null, false);
assertTrue(entry.equals(entry2));
}
}