package org.infinispan.marshall.core; import java.io.ByteArrayInputStream; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.io.ObjectInputStream; import java.io.Serializable; import org.infinispan.test.AbstractInfinispanTest; import org.jboss.marshalling.ByteInput; import org.jboss.marshalling.ByteOutput; import org.jboss.marshalling.ContextClassResolver; import org.jboss.marshalling.Marshaller; import org.jboss.marshalling.MarshallerFactory; import org.jboss.marshalling.Marshalling; import org.jboss.marshalling.MarshallingConfiguration; import org.jboss.marshalling.Unmarshaller; import org.testng.annotations.AfterClass; import org.testng.annotations.BeforeClass; import org.testng.annotations.Test; /** * Test the behaivour of JBoss Marshalling library itself. This class has been created to * ease the creation of tests that check specific behaivour at this level. */ @Test(groups = "functional", testName = "marshall.jboss.JBossMarshallingTest") public class JBossMarshallingTest extends AbstractInfinispanTest { private MarshallerFactory factory; private Marshaller marshaller; private Unmarshaller unmarshaller; @BeforeClass public void setUp() throws Exception { factory = (MarshallerFactory) Thread.currentThread().getContextClassLoader().loadClass("org.jboss.marshalling.river.RiverMarshallerFactory").newInstance(); MarshallingConfiguration configuration = new MarshallingConfiguration(); configuration.setClassResolver(new ContextClassResolver()); marshaller = factory.createMarshaller(configuration); unmarshaller = factory.createUnmarshaller(configuration); } @AfterClass public void tearDown() { } public void testSerObjWithRefToSerObjectWithCustomReadObj() throws Exception { ByteArrayOutputStream baos = new ByteArrayOutputStream(10240); ByteOutput byteOutput = Marshalling.createByteOutput(baos); marshaller.start(byteOutput); ObjectThatContainsACustomReadObjectMethod obj = new ObjectThatContainsACustomReadObjectMethod(); obj.anObjectWithCustomReadObjectMethod = new CustomReadObjectMethod(); try { marshaller.writeObject(obj); } finally { marshaller.finish(); } byte[] bytes = baos.toByteArray(); ByteInput byteInput = Marshalling.createByteInput(new ByteArrayInputStream(bytes)); unmarshaller.start(byteInput); try { assert obj.equals(unmarshaller.readObject()); } finally { unmarshaller.finish(); } } public static class CustomReadObjectMethod implements Serializable { private static final long serialVersionUID = 1L; String lastName; String ssn; transient boolean deserialized; public CustomReadObjectMethod( ) { this("Zamarreno", "234-567-8901"); } public CustomReadObjectMethod(String lastName, String ssn) { this.lastName = lastName; this.ssn = ssn; } @Override public boolean equals(Object obj) { if (obj == this) return true; if (!(obj instanceof CustomReadObjectMethod)) return false; CustomReadObjectMethod pk = (CustomReadObjectMethod) obj; if (!lastName.equals(pk.lastName)) return false; if (!ssn.equals(pk.ssn)) return false; return true; } @Override public int hashCode( ) { int result = 17; result = result * 31 + lastName.hashCode(); result = result * 31 + ssn.hashCode(); return result; } private void readObject(ObjectInputStream ois) throws IOException, ClassNotFoundException { ois.defaultReadObject(); deserialized = true; } } public static class ObjectThatContainsACustomReadObjectMethod implements Serializable, ExternalPojo { private static final long serialVersionUID = 1L; public CustomReadObjectMethod anObjectWithCustomReadObjectMethod; Integer balance; public boolean equals(Object obj) { if (obj == this) return true; if (!(obj instanceof ObjectThatContainsACustomReadObjectMethod)) return false; ObjectThatContainsACustomReadObjectMethod acct = (ObjectThatContainsACustomReadObjectMethod) obj; if (!safeEquals(balance, acct.balance)) return false; if (!safeEquals(anObjectWithCustomReadObjectMethod, acct.anObjectWithCustomReadObjectMethod)) return false; return true; } public int hashCode() { int result = 17; result = result * 31 + safeHashCode(balance); result = result * 31 + safeHashCode(anObjectWithCustomReadObjectMethod); return result; } private static int safeHashCode(Object obj) { return obj == null ? 0 : obj.hashCode(); } private static boolean safeEquals(Object a, Object b) { return (a == b || (a != null && a.equals(b))); } } }