blob: 8b147af61d1bbf1c3a9181c9935365bcdae5b772 [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.directory.api.ldap.entry;
import static org.junit.Assert.assertEquals;
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import org.apache.directory.api.ldap.model.entry.Attribute;
import org.apache.directory.api.ldap.model.entry.DefaultAttribute;
import org.apache.directory.api.ldap.model.exception.LdapInvalidAttributeValueException;
import org.apache.directory.api.ldap.model.schema.AttributeType;
import org.apache.directory.api.ldap.model.schema.SchemaManager;
import org.apache.directory.api.ldap.schema.manager.impl.DefaultSchemaManager;
import org.junit.BeforeClass;
import org.junit.Test;
/**
* Test the Attribute Serialization
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
*/
public class SchemaAwareAttributeSerializationTest
{
private static byte[] data1 = new byte[]
{ 0x01, 0x02, 0x03, 0x04 };
private static byte[] data2 = new byte[]
{ 0x05, 0x06, 0x07, 0x08 };
private static byte[] data3 = new byte[]
{ 0x09, 0x0A, 0x0B, 0x0C };
private static AttributeType cn = null;
private static AttributeType userCertificate = null;
private static SchemaManager schemaManager;
/**
* Initialize OIDs maps for normalization
*/
@BeforeClass
public static void setup() throws Exception
{
schemaManager = new DefaultSchemaManager();
cn = schemaManager.getAttributeType( "cn" );
userCertificate = schemaManager.getAttributeType( "userCertificate" );
}
@Test
public void testEntryAttributeNoStringValueSerialization() throws IOException, ClassNotFoundException,
LdapInvalidAttributeValueException
{
Attribute attribute1 = new DefaultAttribute( cn );
ByteArrayOutputStream baos = new ByteArrayOutputStream();
ObjectOutputStream out = new ObjectOutputStream( baos );
attribute1.writeExternal( out );
ObjectInputStream in = null;
byte[] data = baos.toByteArray();
in = new ObjectInputStream( new ByteArrayInputStream( data ) );
Attribute attribute2 = new DefaultAttribute( cn );
attribute2.readExternal( in );
attribute2.apply( cn );
assertEquals( attribute1, attribute2 );
}
@Test
public void testEntryAttributeOneStringValueSerialization() throws IOException, ClassNotFoundException,
LdapInvalidAttributeValueException
{
Attribute attribute1 = new DefaultAttribute( "CommonName", cn, "test" );
ByteArrayOutputStream baos = new ByteArrayOutputStream();
ObjectOutputStream out = new ObjectOutputStream( baos );
attribute1.writeExternal( out );
ObjectInputStream in = null;
byte[] data = baos.toByteArray();
in = new ObjectInputStream( new ByteArrayInputStream( data ) );
Attribute attribute2 = new DefaultAttribute( cn );
attribute2.readExternal( in );
attribute2.apply( cn );
assertEquals( attribute1, attribute2 );
assertEquals( "CommonName", attribute2.getUpId() );
}
@Test
public void testEntryAttributeManyStringValuesSerialization() throws IOException, ClassNotFoundException,
LdapInvalidAttributeValueException
{
Attribute attribute1 = new DefaultAttribute( "CN", cn, "test1", "test2", "test3" );
ByteArrayOutputStream baos = new ByteArrayOutputStream();
ObjectOutputStream out = new ObjectOutputStream( baos );
attribute1.writeExternal( out );
ObjectInputStream in = null;
byte[] data = baos.toByteArray();
in = new ObjectInputStream( new ByteArrayInputStream( data ) );
Attribute attribute2 = new DefaultAttribute( cn );
attribute2.readExternal( in );
attribute2.apply( cn );
assertEquals( attribute1, attribute2 );
assertEquals( "CN", attribute2.getUpId() );
}
@Test
public void testEntryAttributeNoBinaryValueSerialization() throws IOException, ClassNotFoundException,
LdapInvalidAttributeValueException, LdapInvalidAttributeValueException
{
Attribute attribute1 = new DefaultAttribute( userCertificate );
ByteArrayOutputStream baos = new ByteArrayOutputStream();
ObjectOutputStream out = new ObjectOutputStream( baos );
attribute1.writeExternal( out );
ObjectInputStream in = null;
byte[] data = baos.toByteArray();
in = new ObjectInputStream( new ByteArrayInputStream( data ) );
Attribute attribute2 = new DefaultAttribute( userCertificate );
attribute2.readExternal( in );
attribute2.apply( userCertificate );
assertEquals( attribute1, attribute2 );
}
@Test
public void testEntryAttributeOneBinaryValueSerialization() throws IOException, ClassNotFoundException,
LdapInvalidAttributeValueException
{
Attribute attribute1 = new DefaultAttribute( userCertificate, data1 );
ByteArrayOutputStream baos = new ByteArrayOutputStream();
ObjectOutputStream out = new ObjectOutputStream( baos );
attribute1.writeExternal( out );
ObjectInputStream in = null;
byte[] data = baos.toByteArray();
in = new ObjectInputStream( new ByteArrayInputStream( data ) );
Attribute attribute2 = new DefaultAttribute( userCertificate );
attribute2.readExternal( in );
attribute2.apply( userCertificate );
assertEquals( attribute1, attribute2 );
}
@Test
public void testEntryAttributeManyBinaryValuesSerialization() throws IOException, ClassNotFoundException,
LdapInvalidAttributeValueException
{
Attribute attribute1 = new DefaultAttribute( "UserCertificate", userCertificate, data1, data2, data3 );
ByteArrayOutputStream baos = new ByteArrayOutputStream();
ObjectOutputStream out = new ObjectOutputStream( baos );
attribute1.writeExternal( out );
ObjectInputStream in = null;
byte[] data = baos.toByteArray();
in = new ObjectInputStream( new ByteArrayInputStream( data ) );
Attribute attribute2 = new DefaultAttribute( userCertificate );
attribute2.readExternal( in );
attribute2.apply( userCertificate );
assertEquals( attribute1, attribute2 );
assertEquals( "UserCertificate", attribute2.getUpId() );
}
}