/* * A CCNx library test. * * Copyright (C) 2008-2013 Palo Alto Research Center, Inc. * * This work is free software; you can redistribute it and/or modify it under * the terms of the GNU General Public License version 2 as published by the * Free Software Foundation. * This work is distributed in the hope that it will be useful, but WITHOUT ANY * WARRANTY; without even the implied warranty of MERCHANTABILITY or * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * for more details. You should have received a copy of the GNU General Public * License along with this program; if not, write to the * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, * Boston, MA 02110-1301, USA. */ package org.ccnx.ccn.profiles.ccnd; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotNull; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import org.ccnx.ccn.encoding.XMLEncodableTester; import org.ccnx.ccn.impl.support.Log; import org.ccnx.ccn.io.content.ContentDecodingException; import org.ccnx.ccn.io.content.ContentEncodingException; import org.ccnx.ccn.profiles.ccnd.PrefixRegistrationManager.ActionType; import org.ccnx.ccn.profiles.ccnd.PrefixRegistrationManager.ForwardingEntry; import org.ccnx.ccn.protocol.Component; import org.ccnx.ccn.protocol.ContentName; import org.junit.After; import org.junit.Before; import org.junit.Test; /** * Test basic version manipulation. */ public class PrefixRegistrationManagerUnitTest { PrefixRegistrationManager prm; ContentName contentNameToUse; NotReallyAContentName notReallyAContentNameToUse; public final static String prefixToUse = "ccnx:/prefix/to/test/with/"; class NotReallyAContentName extends ContentName { private static final long serialVersionUID = 7618128398055066315L; public NotReallyAContentName() { super(); } public NotReallyAContentName(ContentName name) { super(name); } @Override public long getElementLabel() { return -42; } } /** * @throws java.lang.Exception */ @Before public void setUp() throws Exception { prm = new PrefixRegistrationManager(); contentNameToUse = ContentName.fromURI(prefixToUse); notReallyAContentNameToUse = new NotReallyAContentName(contentNameToUse); } /** * @throws java.lang.Exception */ @After public void tearDown() throws Exception { } /** * Test method for org.ccnx.ccn.profiles.VersioningProfile#addVersion(org.ccnx.ccn.protocol.ContentName, long). */ @Test public void testEncodeOutputStream() { Log.info(Log.FAC_TEST, "Starting testEncodeOutputStream"); System.out.println(); System.out.println("PrefixRegistrationManagerTest.testEncodeOutputStream:"); ForwardingEntry entryToEncode = new ForwardingEntry(ActionType.Register, contentNameToUse, null, new Integer(42), new Integer(3), new Integer(149)); System.out.println("Encoding: " + entryToEncode); assertNotNull("EncodeOutputStream", entryToEncode); ByteArrayOutputStream baos = new ByteArrayOutputStream(); try { entryToEncode.encode(baos); } catch (ContentEncodingException e) { System.out.println("Exception " + e.getClass().getName() + ", message: " + e.getMessage()); e.printStackTrace(); } System.out.println("Encoded: " ); System.out.println(Component.printURI(baos.toString().getBytes())); System.out.println(); Log.info(Log.FAC_TEST, "Completed testEncodeOutputStream"); } @Test public void testDecodeInputStream() { Log.info(Log.FAC_TEST, "Starting testDecodeInputStream"); System.out.println(); System.out.println("PrefixRegistrationManagerTest.testDecodeInputStream:"); ForwardingEntry entryToEncode = new ForwardingEntry(ActionType.Register, contentNameToUse, null, new Integer(42), new Integer(3), new Integer(149)); System.out.println("Encoding: " + entryToEncode); assertNotNull("DecodeOutputStream", entryToEncode); ByteArrayOutputStream baos = new ByteArrayOutputStream(); try { entryToEncode.encode(baos); } catch (ContentEncodingException e) { System.out.println("Exception " + e.getClass().getName() + ", message: " + e.getMessage()); e.printStackTrace(); } System.out.println("Encoded: " ); System.out.println(Component.printURI(baos.toString().getBytes())); System.out.println("Decoding: "); ByteArrayInputStream bais = new ByteArrayInputStream(baos.toByteArray()); ForwardingEntry entryToDecodeTo = new ForwardingEntry(); /* We need an empty one to decode into */ try { entryToDecodeTo.decode(bais); } catch (ContentDecodingException e) { System.out.println("Exception " + e.getClass().getName() + ", message: " + e.getMessage()); e.printStackTrace(); } System.out.println("Decoded: " + entryToDecodeTo); assertEquals("DecodeOutputStream", entryToEncode, entryToDecodeTo); System.out.println(); Log.info(Log.FAC_TEST, "Completed testDecodeInputStream"); } @Test public void testEncodingDecoding() { Log.info(Log.FAC_TEST, "Starting testEncodingDecoding"); System.out.println(); System.out.println("PrefixRegistrationManagerTest.testEncodingDecoding:"); ForwardingEntry entryToEncode = new ForwardingEntry(ActionType.Register, contentNameToUse, null, new Integer(42), new Integer(3), new Integer(149)); System.out.println("Encoding: " + entryToEncode); ForwardingEntry textEntryToDecodeInto = new ForwardingEntry(); assertNotNull("EncodeDecodeOutput", textEntryToDecodeInto); ForwardingEntry binaryEntryToDecodeInto = new ForwardingEntry(); assertNotNull("EncodeDecodeOutput", binaryEntryToDecodeInto); XMLEncodableTester.encodeDecodeTest("EncodeDecodeOutput", entryToEncode, textEntryToDecodeInto, binaryEntryToDecodeInto); System.out.println(); Log.info(Log.FAC_TEST, "Completed testEncodingDecoding"); } @Test public void testEncodingDecodingSubclass() { Log.info(Log.FAC_TEST, "Starting testEncodingDecodingSubclass"); System.out.println(); System.out.println("PrefixRegistrationManagerTest.testEncodingDecodingSubclass:"); ForwardingEntry entryToEncode = new ForwardingEntry(ActionType.Register, notReallyAContentNameToUse, null, new Integer(42), new Integer(3), new Integer(149)); System.out.println("Encoding: " + entryToEncode); ForwardingEntry textEntryToDecodeInto = new ForwardingEntry(); assertNotNull("EncodeDecodeOutput", textEntryToDecodeInto); ForwardingEntry binaryEntryToDecodeInto = new ForwardingEntry(); assertNotNull("EncodeDecodeOutput", binaryEntryToDecodeInto); XMLEncodableTester.encodeDecodeTest("EncodeDecodeOutput", entryToEncode, textEntryToDecodeInto, binaryEntryToDecodeInto); System.out.println(); Log.info(Log.FAC_TEST, "Completed testEncodingDecodingSubclass"); } }