blob: 5d104fab85f986c7ccefd6a305de535159c54c38 [file] [log] [blame]
/*
* Copyright 2003,2004 The Apache Software Foundation.
*
* 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 org.apache.pluto.util.impl;
import org.apache.pluto.PortletWindowID;
import org.apache.pluto.util.PlutoTestCase;
import org.apache.pluto.util.NamespaceMapper;
/**
* Test Class
*
* @author <a href="ddewolf@apache.org">David H. DeWolf</a>
* @version 1.0
* @since June 1, 2005
*/
public class NamespaceMapperImplTest extends PlutoTestCase {
private NamespaceMapper mapper = new NamespaceMapperImpl();
private PortletWindowID id1;
private PortletWindowID id2;
public void setUp() throws Exception {
super.setUp();
id1 = new InternalPortletWindowID();
id2 = new InternalPortletWindowID();
}
public void testEncodeUniquenessWithSameName() {
String mappedA = mapper.encode(id1, "testNumber1");
String mappedB = mapper.encode(id2, "testNumber1");
assertFalse(mappedA.equals(mappedB));
}
public void testEncodeUniquenessWithSameObjectID() {
String mappedA = mapper.encode(id1, "testNumber1");
String mappedB = mapper.encode(id1, "testNumber2");
assertFalse(mappedA.equals(mappedB));
}
public void testDecode() {
String original = "original";
String mappedA = mapper.encode(id1, original);
assertEquals(original, mapper.decode(id1, mappedA));
}
public void testDecodeInvalidId() {
assertNull(mapper.decode(id1, mapper.encode(id2, "test")));
}
private static int objectIDCounter = 1;
private class InternalPortletWindowID implements PortletWindowID {
private int id;
public InternalPortletWindowID() {
id = objectIDCounter++;
}
public String getStringId() {
return "uniqueId"+id;
}
}
}