blob: c75353cbe69eadb1a1e6232da9462bc42f50d4eb [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.server.core.sp;
import static org.apache.directory.server.core.integ.IntegrationUtils.getRootContext;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import javax.naming.directory.Attribute;
import javax.naming.directory.Attributes;
import javax.naming.directory.BasicAttribute;
import javax.naming.directory.BasicAttributes;
import javax.naming.ldap.LdapContext;
import org.apache.directory.api.util.Base64;
import org.apache.directory.server.core.annotations.CreateDS;
import org.apache.directory.server.core.factory.DefaultDirectoryServiceFactory;
import org.apache.directory.server.core.integ.AbstractLdapTestUnit;
import org.apache.directory.server.core.integ.FrameworkRunner;
import org.apache.directory.server.core.jndi.ServerLdapContext;
import org.apache.directory.server.core.api.sp.LdapClassLoader;
import org.junit.Test;
import org.junit.runner.RunWith;
/**
* Test case for LdapClassLoader.
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
*/
@RunWith(FrameworkRunner.class)
@CreateDS(factory = DefaultDirectoryServiceFactory.class, name = "LdapClassLoaderIT-class")
public class LdapClassLoaderIT extends AbstractLdapTestUnit
{
private static final String HELLOWORLD_CLASS_BASE64 = "yv66vgAAADEAHQoABgAPCQAQABEIABIKABMAFAcAFQcAFgEABjxpbml0PgEAAygpV"
+ "gEABENvZGUBAA9MaW5lTnVtYmVyVGFibGUBAARtYWluAQAWKFtMamF2YS9sYW5nL1N0cmluZzsp"
+ "VgEAClNvdXJjZUZpbGUBAA9IZWxsb1dvcmxkLmphdmEMAAcACAcAFwwAGAAZAQAMSGVsbG8gV29"
+ "ybGQhBwAaDAAbABwBAApIZWxsb1dvcmxkAQAQamF2YS9sYW5nL09iamVjdAEAEGphdmEvbGFuZy"
+ "9TeXN0ZW0BAANvdXQBABVMamF2YS9pby9QcmludFN0cmVhbTsBABNqYXZhL2lvL1ByaW50U3RyZ"
+ "WFtAQAHcHJpbnRsbgEAFShMamF2YS9sYW5nL1N0cmluZzspVgAhAAUABgAAAAAAAgABAAcACAAB"
+ "AAkAAAAdAAEAAQAAAAUqtwABsQAAAAEACgAAAAYAAQAAAAEACQALAAwAAQAJAAAAJQACAAEAAAA"
+ "JsgACEgO2AASxAAAAAQAKAAAACgACAAAABQAIAAYAAQANAAAAAgAO";
private static final byte[] HELLOWORLD_CLASS_BYTES = Base64.decode( HELLOWORLD_CLASS_BASE64.toCharArray() );
@Test
public void testLdapClassLoaderWithClassLoadedAnywhere() throws Exception
{
LdapContext root = getRootContext( getService() );
// get default naming context to work on
ServerLdapContext defaultContext = ( ServerLdapContext ) root.lookup( "ou=system" );
// set up
Attributes attributes = new BasicAttributes( "objectClass", "top", true );
attributes.get( "objectClass" ).add( "javaClass" );
attributes.put( "fullyQualifiedJavaClassName", "HelloWorld" );
attributes.put( "javaClassByteCode", HELLOWORLD_CLASS_BYTES );
defaultContext.createSubcontext( "fullyQualifiedJavaClassName=HelloWorld", attributes );
// assert set up successfull
assertNotNull( defaultContext.lookup( "fullyQualifiedJavaClassName=HelloWorld" ) );
// load the class
LdapClassLoader loader = new LdapClassLoader( getService() );
Class<?> clazz = loader.loadClass( "HelloWorld" );
// assert class loaded successfully
assertEquals( clazz.getName(), "HelloWorld" );
}
@Test
public void testLdapClassLoaderWithClassLoadedAtDefaultSearchSubtree() throws Exception
{
LdapContext root = getRootContext( getService() );
// get default naming context to work on
ServerLdapContext defaultContext = ( ServerLdapContext ) root.lookup( "ou=system" );
// create an extensible object for holding custom config data
Attributes classLoaderDefaultSearchContextConfig = new BasicAttributes( true );
Attribute objectClass = new BasicAttribute( "objectClass" );
objectClass.add( "top" );
objectClass.add( "javaContainer" );
// We need to ad this extensibleObject OC in order to avoid an error
// with the classLoaderDefaultSearchContext AT used later (no OC contains
// this AT)
objectClass.add( "extensibleObject" );
// create custom config entry
classLoaderDefaultSearchContextConfig.put( objectClass );
classLoaderDefaultSearchContextConfig.put( new BasicAttribute( "cn", "classLoaderDefaultSearchContext" ) );
// add a default search context to the configuration
classLoaderDefaultSearchContextConfig
.put( new BasicAttribute( "classLoaderDefaultSearchContext", "ou=system" ) );
// add the configuration entry to the DIT
ServerLdapContext configContext = ( ServerLdapContext ) defaultContext.lookup( "ou=configuration" );
configContext.createSubcontext( "cn=classLoaderDefaultSearchContext", classLoaderDefaultSearchContextConfig );
// create a class holder entry and add it to the DIT
Attributes attributes = new BasicAttributes( "objectClass", "top", true );
attributes.get( "objectClass" ).add( "javaClass" );
attributes.put( "fullyQualifiedJavaClassName", "HelloWorld" );
attributes.put( "javaClassByteCode", HELLOWORLD_CLASS_BYTES );
defaultContext.createSubcontext( "fullyQualifiedJavaClassName=HelloWorld", attributes );
// assert set up successfull
assertNotNull( defaultContext.lookup( "fullyQualifiedJavaClassName=HelloWorld" ) );
// load the class
LdapClassLoader loader = new LdapClassLoader( getService() );
Class<?> clazz = loader.loadClass( "HelloWorld" );
// assert class loaded successfully
assertEquals( clazz.getName(), "HelloWorld" );
}
}