blob: c905ce96adfad0abf450f909a9662662a2a1ea3d [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.directmemory.lightning.internal.marshaller;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.File;
import java.math.BigInteger;
import java.util.HashSet;
import java.util.Set;
import org.apache.directmemory.lightning.Lightning;
import org.apache.directmemory.lightning.Serializer;
import org.apache.directmemory.lightning.base.AbstractSerializerDefinition;
import org.apache.directmemory.lightning.internal.util.DebugLogger;
import org.apache.directmemory.lightning.io.InputStreamSource;
import org.apache.directmemory.lightning.io.OutputStreamTarget;
import org.apache.directmemory.lightning.metadata.Attribute;
import org.junit.Test;
public class SetMarshallerTestCase
{
@Test
@SuppressWarnings( { "rawtypes", "unchecked" } )
public void testNoGenericTypeList()
throws Exception
{
Serializer serializer =
Lightning.newBuilder().logger( new DebugLogger() ).debugCacheDirectory( new File( "target" ) ).serializerDefinitions( new AbstractSerializerDefinition()
{
@Override
protected void configure()
{
serialize(
NoGenericTypeSet.class ).attributes();
}
} ).build();
Set set = new HashSet();
set.add( "Foo" );
set.add( 20 );
set.add( null );
set.add( BigInteger.TEN );
NoGenericTypeSet value = new NoGenericTypeSet();
value.setSet( set );
ByteArrayOutputStream baos = new ByteArrayOutputStream();
OutputStreamTarget target = new OutputStreamTarget( baos );
serializer.serialize( value, target );
ByteArrayInputStream bais = new ByteArrayInputStream( baos.toByteArray() );
InputStreamSource source = new InputStreamSource( bais );
Object result = serializer.deserialize( source );
assertNotNull( result );
assertEquals( value, result );
}
@Test
public void testSimpleGenericTypeList()
throws Exception
{
Serializer serializer =
Lightning.newBuilder().logger( new DebugLogger() ).debugCacheDirectory( new File( "target" ) ).serializerDefinitions( new AbstractSerializerDefinition()
{
@Override
protected void configure()
{
serialize(
SimpleGenericTypeSet.class ).attributes();
}
} ).build();
Set<String> set = new HashSet<String>();
set.add( "Foo" );
set.add( "Bar" );
set.add( null );
set.add( "Rhabarbar" );
SimpleGenericTypeSet value = new SimpleGenericTypeSet();
value.setSet( set );
ByteArrayOutputStream baos = new ByteArrayOutputStream();
OutputStreamTarget target = new OutputStreamTarget( baos );
serializer.serialize( value, target );
ByteArrayInputStream bais = new ByteArrayInputStream( baos.toByteArray() );
InputStreamSource source = new InputStreamSource( bais );
Object result = serializer.deserialize( source );
assertNotNull( result );
assertEquals( value, result );
}
@Test
public void testComplexGenericTypeList()
throws Exception
{
Serializer serializer =
Lightning.newBuilder().logger( new DebugLogger() ).debugCacheDirectory( new File( "target" ) ).serializerDefinitions( new AbstractSerializerDefinition()
{
@Override
protected void configure()
{
serialize(
ComplexGenericTypeSet.class ).attributes();
}
} ).build();
Set<Set<String>> set = new HashSet<Set<String>>();
Set<String> set1 = new HashSet<String>();
set1.add( "Foo" );
set1.add( "Bar" );
set1.add( null );
set1.add( "Rhabarbar" );
Set<String> set2 = new HashSet<String>();
set2.add( null );
set2.add( "Rhabarbar" );
set2.add( "Foo" );
set2.add( "Bar" );
set.add( set1 );
set.add( set2 );
ComplexGenericTypeSet value = new ComplexGenericTypeSet();
value.setSet( set );
ByteArrayOutputStream baos = new ByteArrayOutputStream();
OutputStreamTarget target = new OutputStreamTarget( baos );
serializer.serialize( value, target );
ByteArrayInputStream bais = new ByteArrayInputStream( baos.toByteArray() );
InputStreamSource source = new InputStreamSource( bais );
Object result = serializer.deserialize( source );
assertNotNull( result );
assertEquals( value, result );
}
@SuppressWarnings( "rawtypes" )
public static class NoGenericTypeSet
{
@Attribute
private Set set;
public Set getSet()
{
return set;
}
public void setSet( Set set )
{
this.set = set;
}
@Override
public int hashCode()
{
final int prime = 31;
int result = 1;
result = prime * result + ( ( set == null ) ? 0 : set.hashCode() );
return result;
}
@Override
public boolean equals( Object obj )
{
if ( this == obj )
{
return true;
}
if ( obj == null )
{
return false;
}
if ( getClass() != obj.getClass() )
{
return false;
}
NoGenericTypeSet other = (NoGenericTypeSet) obj;
if ( set == null )
{
if ( other.set != null )
{
return false;
}
}
else if ( !set.equals( other.set ) )
{
return false;
}
return true;
}
@Override
public String toString()
{
return "NoGenericTypeSet [set=" + set + "]";
}
}
public static class SimpleGenericTypeSet
{
@Attribute
private Set<String> set;
public Set<String> getSet()
{
return set;
}
public void setSet( Set<String> set )
{
this.set = set;
}
@Override
public int hashCode()
{
final int prime = 31;
int result = 1;
result = prime * result + ( ( set == null ) ? 0 : set.hashCode() );
return result;
}
@Override
public boolean equals( Object obj )
{
if ( this == obj )
{
return true;
}
if ( obj == null )
{
return false;
}
if ( getClass() != obj.getClass() )
{
return false;
}
SimpleGenericTypeSet other = (SimpleGenericTypeSet) obj;
if ( set == null )
{
if ( other.set != null )
{
return false;
}
}
else if ( !set.equals( other.set ) )
{
return false;
}
return true;
}
@Override
public String toString()
{
return "SimpleGenericTypeSet [set=" + set + "]";
}
}
public static class ComplexGenericTypeSet
{
@Attribute
private Set<Set<String>> set;
public Set<Set<String>> getSet()
{
return set;
}
public void setSet( Set<Set<String>> set )
{
this.set = set;
}
@Override
public int hashCode()
{
final int prime = 31;
int result = 1;
result = prime * result + ( ( set == null ) ? 0 : set.hashCode() );
return result;
}
@Override
public boolean equals( Object obj )
{
if ( this == obj )
{
return true;
}
if ( obj == null )
{
return false;
}
if ( getClass() != obj.getClass() )
{
return false;
}
ComplexGenericTypeSet other = (ComplexGenericTypeSet) obj;
if ( set == null )
{
if ( other.set != null )
{
return false;
}
}
else if ( !set.equals( other.set ) )
{
return false;
}
return true;
}
@Override
public String toString()
{
return "ComplexGenericTypeSet [set=" + set + "]";
}
}
}