blob: dc8aac9da2b8f1b6ab360208f87d3212beb3658b [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;
import static org.junit.Assert.fail;
import java.io.File;
import java.util.Calendar;
import org.apache.directory.ldap.client.api.LdapConnectionConfig;
import org.apache.directory.ldap.client.api.LdapNetworkConnection;
import org.apache.directory.server.constants.ServerDNConstants;
import org.apache.directory.server.core.api.partition.PartitionNexus;
import org.apache.directory.shared.ldap.codec.api.SchemaBinaryAttributeDetector;
import org.apache.directory.shared.ldap.model.entry.Entry;
import org.apache.directory.shared.ldap.model.name.Dn;
import org.junit.Test;
/**
* Test case for the UberJarMain class.
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
*/
public class UberJarMainTest
{
/** Flag used by connection verification thread */
private boolean verified = true;
/**
* Tests the creation of a new ApacheDS Service instance.
*
* @throws Exception
*/
@Test
public void serviceInstanceTest() throws Exception
{
// Getting tmp directory
File tmpDirectory = new File( System.getProperty( "java.io.tmpdir" ) );
// Creating an instance directory
Calendar calendar = Calendar.getInstance();
File instanceDirectory = new File( tmpDirectory, "ApacheDS-" + calendar.get( Calendar.YEAR )
+ calendar.get( Calendar.MONTH ) + calendar.get( Calendar.DATE ) + calendar.get( Calendar.HOUR )
+ calendar.get( Calendar.MINUTE ) + calendar.get( Calendar.SECOND ) );
instanceDirectory.mkdir();
// Launching the server
UberjarMain.main( new String[]
{ instanceDirectory.toString() } );
// Creating a separate thread for the connection verification
Thread connectionVerificationThread = new Thread()
{
public void run()
{
try
{
// Creating a connection on the created server
LdapConnectionConfig configuration = new LdapConnectionConfig();
configuration.setLdapHost( "localhost" );
configuration.setLdapPort( 10389 );
configuration.setName( ServerDNConstants.ADMIN_SYSTEM_DN );
configuration.setCredentials( PartitionNexus.ADMIN_PASSWORD_STRING );
configuration.setBinaryAttributeDetector( new SchemaBinaryAttributeDetector( null ) );
LdapNetworkConnection connection = new LdapNetworkConnection( configuration );
connection.loadSchema();
// Binding on the connection
connection.bind();
// Looking for the Root DSE entry
Entry rootDseEntry = connection.lookup( Dn.ROOT_DSE );
if ( rootDseEntry == null )
{
// This isn't good
verified = false;
return;
}
}
catch ( Exception e )
{
verified = false;
}
};
};
// Starting the connection verification thread
// and waiting for the termination of it
connectionVerificationThread.start();
connectionVerificationThread.join();
// Checking if verification is successful
if ( !verified )
{
fail();
}
}
}