blob: a8954661b70f14181f9cd89a3ef424c4dc7a9a6c [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.schema;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
import java.io.ByteArrayOutputStream;
import java.io.InputStream;
import org.apache.directory.api.ldap.model.constants.SchemaConstants;
import org.apache.directory.api.ldap.model.entry.DefaultEntry;
import org.apache.directory.api.ldap.model.entry.DefaultModification;
import org.apache.directory.api.ldap.model.entry.Entry;
import org.apache.directory.api.ldap.model.entry.ModificationOperation;
import org.apache.directory.api.ldap.model.exception.LdapException;
import org.apache.directory.api.ldap.model.exception.LdapInvalidDnException;
import org.apache.directory.api.ldap.model.exception.LdapUnwillingToPerformException;
import org.apache.directory.api.ldap.model.message.ResultCodeEnum;
import org.apache.directory.api.ldap.model.name.Dn;
import org.apache.directory.api.ldap.model.name.Rdn;
import org.apache.directory.api.ldap.model.schema.MatchingRule;
import org.apache.directory.api.ldap.model.schema.SchemaManager;
import org.apache.directory.api.ldap.model.schema.comparators.BooleanComparator;
import org.apache.directory.api.ldap.model.schema.comparators.StringComparator;
import org.apache.directory.ldap.client.api.LdapConnection;
import org.apache.directory.server.core.annotations.CreateDS;
import org.apache.directory.server.core.integ.FrameworkRunner;
import org.apache.directory.server.core.integ.IntegrationUtils;
import org.junit.Before;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.runner.RunWith;
/**
* A test case which tests the addition of various schema elements
* to the ldap server.
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
*/
@RunWith(FrameworkRunner.class)
@CreateDS(name = "MetaComparatorHandlerIT")
public class MetaComparatorHandlerIT extends AbstractMetaSchemaObjectHandler
{
private static final String OID = "1.3.6.1.4.1.18060.0.4.0.1.100000";
private static final String NEW_OID = "1.3.6.1.4.1.18060.0.4.0.1.100001";
private static SchemaManager schemaManager;
private static LdapConnection connection;
class DummyMR extends MatchingRule
{
public DummyMR()
{
super( OID );
addName( "dummy" );
}
}
@Before
public void init() throws Exception
{
super.init();
connection = IntegrationUtils.getAdminConnection( getService() );
schemaManager = getService().getSchemaManager();
}
// ----------------------------------------------------------------------
// Test all core methods with normal operational pathways
// ----------------------------------------------------------------------
// Test Add operation
// ----------------------------------------------------------------------
@Test
public void testAddComparatorToEnabledSchema() throws Exception
{
Dn dn = new Dn( "m-oid=" + OID + ",ou=comparators,cn=apachemeta,ou=schema" );
Entry entry = new DefaultEntry(
dn,
"objectClass: top",
"objectClass: metaTop",
"objectClass: metaComparator",
"m-fqcn", StringComparator.class.getName(),
"m-oid", OID,
"m-description: A test comparator" );
// Pre-checks
assertFalse( isOnDisk( dn ) );
assertFalse( schemaManager.getComparatorRegistry().contains( OID ) );
// Addition
connection.add( entry );
// Post-checks
assertTrue( schemaManager.getComparatorRegistry().contains( OID ) );
assertEquals( schemaManager.getComparatorRegistry().getSchemaName( OID ), "apachemeta" );
Class<?> clazz = schemaManager.getComparatorRegistry().lookup( OID ).getClass();
assertEquals( clazz, StringComparator.class );
assertTrue( isOnDisk( dn ) );
}
@Test
public void testAddComparatorToDisabledSchema() throws Exception
{
Dn dn = new Dn( "m-oid=" + OID + ",ou=comparators,cn=nis,ou=schema" );
Entry entry = new DefaultEntry(
dn,
"objectClass: top",
"objectClass: metaTop",
"objectClass: metaComparator",
"m-fqcn", StringComparator.class.getName(),
"m-oid", OID,
"m-description: A test comparator" );
// nis is by default inactive
// Pre-checks
assertFalse( isOnDisk( dn ) );
assertFalse( schemaManager.getComparatorRegistry().contains( OID ) );
// Addition
connection.add( entry );
// Post-checks
assertFalse( "adding new comparator to disabled schema should not register it into the registries",
schemaManager.getComparatorRegistry().contains( OID ) );
assertTrue( isOnDisk( dn ) );
}
@Test
public void testAddComparatorToUnloadedSchema() throws Exception
{
Dn dn = new Dn( "m-oid=" + OID + ",ou=comparators,cn=notloaded,ou=schema" );
Entry entry = new DefaultEntry(
dn,
"objectClass: top",
"objectClass: metaTop",
"objectClass: metaComparator",
"m-fqcn", StringComparator.class.getName(),
"m-oid", OID,
"m-description: A test comparator" );
// Pre-checks
assertFalse( isOnDisk( dn ) );
assertFalse( schemaManager.getComparatorRegistry().contains( OID ) );
// Addition
try
{
connection.add( entry );
fail( "Should not be there" );
}
catch ( LdapException nnfe )
{
// Expected result.
}
// Post-checks
assertFalse( "adding new comparator to disabled schema should not register it into the registries",
schemaManager.getComparatorRegistry().contains( OID ) );
assertFalse( isOnDisk( dn ) );
}
@Test
public void testAddComparatorWithByteCodeToEnabledSchema() throws Exception
{
InputStream in = getClass().getResourceAsStream( "DummyComparator.bytecode" );
ByteArrayOutputStream out = new ByteArrayOutputStream();
while ( in.available() > 0 )
{
out.write( in.read() );
}
Dn dn = new Dn( "m-oid=" + OID + ",ou=comparators,cn=apachemeta,ou=schema" );
Entry entry = new DefaultEntry(
dn,
"objectClass: top",
"objectClass: metaTop",
"objectClass: metaComparator",
"m-fqcn: org.apache.directory.api.ldap.model.schema.comparators.DummyComparator",
"m-bytecode", out.toByteArray(),
"m-oid", OID,
"m-description: A test comparator" );
// Pre-checks
assertFalse( isOnDisk( dn ) );
assertFalse( schemaManager.getComparatorRegistry().contains( OID ) );
// Addition
connection.add( entry );
// Post-checks
assertTrue( schemaManager.getComparatorRegistry().contains( OID ) );
assertEquals( schemaManager.getComparatorRegistry().getSchemaName( OID ), "apachemeta" );
Class<?> clazz = schemaManager.getComparatorRegistry().lookup( OID ).getClass();
assertEquals( clazz.getName(), "org.apache.directory.api.ldap.model.schema.comparators.DummyComparator" );
assertTrue( isOnDisk( dn ) );
}
@Test
public void testAddComparatorWithByteCodeToDisabledSchema() throws Exception
{
InputStream in = getClass().getResourceAsStream( "DummyComparator.bytecode" );
ByteArrayOutputStream out = new ByteArrayOutputStream();
while ( in.available() > 0 )
{
out.write( in.read() );
}
Dn dn = new Dn( "m-oid=" + OID + ",ou=comparators,cn=nis,ou=schema" );
Entry entry = new DefaultEntry(
dn,
"objectClass: top",
"objectClass: metaTop",
"objectClass: metaComparator",
"m-fqcn: org.apache.directory.api.ldap.model.schema.comparators.DummyComparator",
"m-bytecode", out.toByteArray(),
"m-oid", OID,
"m-description: A test comparator" );
// nis is by default inactive
// Pre-checks
assertFalse( isOnDisk( dn ) );
assertFalse( schemaManager.getComparatorRegistry().contains( OID ) );
// Addition
connection.add( entry );
// Post-checks
assertFalse( "adding new comparator to disabled schema should not register it into the registries",
schemaManager.getComparatorRegistry().contains( OID ) );
assertTrue( isOnDisk( dn ) );
}
// ----------------------------------------------------------------------
// Test Delete operation
// ----------------------------------------------------------------------
@Test
public void testDeleteComparatorFromEnabledSchema() throws Exception
{
Dn dn = new Dn( "m-oid=" + OID + ",ou=comparators,cn=apachemeta,ou=schema" );
testAddComparatorToEnabledSchema();
// Pre-checks
assertTrue( schemaManager.getComparatorRegistry().contains( OID ) );
assertTrue( isOnDisk( dn ) );
// Deletion
connection.delete( dn );
// Post-checks
assertFalse( "comparator should be removed from the registry after being deleted", schemaManager
.getComparatorRegistry().contains( OID ) );
try
{
schemaManager.getComparatorRegistry().lookup( OID );
fail( "comparator lookup should fail after deleting the comparator" );
}
catch ( LdapException e )
{
}
assertFalse( isOnDisk( dn ) );
}
@Test
public void testDeleteComparatorFromDisabledSchema() throws Exception
{
Dn dn = new Dn( "m-oid=" + OID + ",ou=comparators,cn=nis,ou=schema" );
testAddComparatorToDisabledSchema();
// Pre-checks
assertFalse( "comparator should be removed from the registry after being deleted", schemaManager
.getComparatorRegistry().contains( OID ) );
assertTrue( isOnDisk( dn ) );
// Deletion
connection.delete( dn );
// Post-checks
assertFalse( "comparator should be removed from the registry after being deleted", schemaManager
.getComparatorRegistry().contains( OID ) );
try
{
schemaManager.getComparatorRegistry().lookup( OID );
fail( "comparator lookup should fail after deleting the comparator" );
}
catch ( LdapException e )
{
}
assertFalse( isOnDisk( dn ) );
}
@Test
public void testDeleteComparatorWhenInUse() throws Exception
{
Dn dn = new Dn( "m-oid=" + OID + ",ou=comparators,cn=apachemeta,ou=schema" );
// Create a new Comparator
testAddComparatorToEnabledSchema();
assertTrue( isOnDisk( dn ) );
assertTrue( schemaManager.getComparatorRegistry().contains( OID ) );
// Create a MR using this comparator
Dn mrDn = new Dn( "m-oid=" + OID + ",ou=matchingRules,cn=apachemeta,ou=schema" );
Entry entry = new DefaultEntry(
mrDn,
"objectClass: top",
"objectClass: metaTop",
"objectClass: metaMatchingRule",
"m-oid", OID,
"m-syntax", SchemaConstants.INTEGER_SYNTAX,
"m-description: test" );
// Pre-checks
assertFalse( isOnDisk( mrDn ) );
assertFalse( schemaManager.getMatchingRuleRegistry().contains( OID ) );
// MatchingRule Addition
connection.add( entry );
// Post-checks
assertTrue( isOnDisk( mrDn ) );
assertTrue( schemaManager.getMatchingRuleRegistry().contains( OID ) );
try
{
connection.delete( dn );
fail( "should not be able to delete a comparator in use" );
}
catch ( LdapException e )
{
}
assertTrue( "comparator should still be in the registry after delete failure", schemaManager
.getComparatorRegistry().contains( OID ) );
}
// ----------------------------------------------------------------------
// Test Modify operation
// ----------------------------------------------------------------------
@Test
@Ignore
public void testModifyComparatorWithModificationItems() throws Exception
{
testAddComparatorToEnabledSchema();
Dn dn = new Dn( "m-oid=" + OID + ",ou=comparators,cn=apachemeta,ou=schema" );
connection.modify( dn, new DefaultModification(
ModificationOperation.REPLACE_ATTRIBUTE, "m-fqcn", BooleanComparator.class.getName() ) );
assertTrue( "comparator OID should still be present", schemaManager.getComparatorRegistry().contains( OID ) );
assertEquals( "comparator schema should be set to apachemeta", schemaManager.getComparatorRegistry()
.getSchemaName( OID ), "apachemeta" );
Class<?> clazz = schemaManager.getComparatorRegistry().lookup( OID ).getClass();
assertEquals( clazz, BooleanComparator.class );
}
@Test
@Ignore
public void testModifyComparatorWithAttributes() throws Exception
{
testAddComparatorToEnabledSchema();
Dn dn = new Dn( "m-oid=" + OID + ",ou=comparators,cn=apachemeta,ou=schema" );
connection.modify( dn, new DefaultModification(
ModificationOperation.REPLACE_ATTRIBUTE, "m-fqcn", BooleanComparator.class.getName() ) );
assertTrue( "comparator OID should still be present", schemaManager.getComparatorRegistry().contains( OID ) );
assertEquals( "comparator schema should be set to apachemeta", schemaManager.getComparatorRegistry()
.getSchemaName( OID ), "apachemeta" );
Class<?> clazz = schemaManager.getComparatorRegistry().lookup( OID ).getClass();
assertEquals( clazz, BooleanComparator.class );
}
// ----------------------------------------------------------------------
// Test Rename operation
// ----------------------------------------------------------------------
@Test
@Ignore
public void testRenameComparator() throws Exception
{
Dn dn = new Dn( "m-oid=" + OID + ",ou=comparators,cn=apachemeta,ou=schema" );
testAddComparatorToEnabledSchema();
Rdn rdn = new Rdn( "m-oid=" + NEW_OID );
connection.rename( dn, rdn );
assertFalse( "old comparator OID should be removed from the registry after being renamed", schemaManager
.getComparatorRegistry().contains( OID ) );
try
{
schemaManager.getComparatorRegistry().lookup( OID );
fail( "comparator lookup should fail after deleting the comparator" );
}
catch ( LdapException e )
{
}
assertTrue( schemaManager.getComparatorRegistry().contains( NEW_OID ) );
Class<?> clazz = schemaManager.getComparatorRegistry().lookup( NEW_OID ).getClass();
assertEquals( clazz, StringComparator.class );
}
@Test
@Ignore
public void testRenameComparatorWhenInUse() throws Exception
{
Dn dn = new Dn( "m-oid=" + OID + ",ou=comparators,cn=apachemeta,ou=schema" );
testAddComparatorToEnabledSchema();
schemaManager.getMatchingRuleRegistry().register( new DummyMR() );
Rdn rdn = new Rdn( "m-oid" + "=" + NEW_OID );
try
{
connection.rename( dn, rdn );
fail( "should not be able to rename a comparator in use" );
}
catch ( LdapUnwillingToPerformException e )
{
assertEquals( e.getResultCode(), ResultCodeEnum.UNWILLING_TO_PERFORM );
}
assertTrue( "comparator should still be in the registry after rename failure", schemaManager
.getComparatorRegistry().contains( OID ) );
schemaManager.getMatchingRuleRegistry().unregister( OID );
schemaManager.getGlobalOidRegistry().unregister( OID );
}
// ----------------------------------------------------------------------
// Test Move operation
// ----------------------------------------------------------------------
@Test
@Ignore
public void testMoveComparator() throws Exception
{
testAddComparatorToEnabledSchema();
Dn dn = new Dn( "m-oid=" + OID + ",ou=comparators,cn=apachemeta,ou=schema" );
Dn newDn = new Dn( "m-oid=" + OID + ",ou=comparators,cn=apache,ou=schema" );
connection.move( dn, newDn );
assertTrue( "comparator OID should still be present", schemaManager.getComparatorRegistry().contains( OID ) );
assertEquals( "comparator schema should be set to apache not apachemeta", schemaManager.getComparatorRegistry()
.getSchemaName( OID ), "apache" );
Class<?> clazz = schemaManager.getComparatorRegistry().lookup( OID ).getClass();
assertEquals( clazz, StringComparator.class );
}
@Test
@Ignore
public void testMoveComparatorAndChangeRdn() throws Exception
{
testAddComparatorToEnabledSchema();
Dn dn = new Dn( "m-oid=" + OID + ",ou=comparators,cn=apachemeta,ou=schema" );
Dn newDn = new Dn( "m-oid=" + NEW_OID + ",ou=comparators,cn=apache,ou=schema" );
connection.moveAndRename( dn, newDn );
assertFalse( "old comparator OID should NOT be present", schemaManager.getComparatorRegistry().contains( OID ) );
assertTrue( "new comparator OID should be present", schemaManager.getComparatorRegistry().contains( NEW_OID ) );
assertEquals( "comparator with new oid should have schema set to apache NOT apachemeta", schemaManager
.getComparatorRegistry().getSchemaName( NEW_OID ), "apache" );
Class<?> clazz = schemaManager.getComparatorRegistry().lookup( NEW_OID ).getClass();
assertEquals( clazz, StringComparator.class );
}
// ----------------------------------------------------------------------
// Test move, rename, and delete when a MR exists and uses the Comparator
// ----------------------------------------------------------------------
@Test
@Ignore
public void testMoveComparatorWhenInUse() throws Exception
{
testAddComparatorToEnabledSchema();
schemaManager.getMatchingRuleRegistry().register( new DummyMR() );
Dn dn = new Dn( "m-oid=" + OID + ",ou=comparators,cn=apachemeta,ou=schema" );
Dn newDn = new Dn( "m-oid=" + OID + ",ou=comparators,cn=apache,ou=schema" );
try
{
connection.move( dn, newDn );
fail( "should not be able to move a comparator in use" );
}
catch ( LdapUnwillingToPerformException e )
{
assertEquals( e.getResultCode(), ResultCodeEnum.UNWILLING_TO_PERFORM );
}
assertTrue( "comparator should still be in the registry after move failure", schemaManager
.getComparatorRegistry().contains( OID ) );
schemaManager.getMatchingRuleRegistry().unregister( OID );
schemaManager.getGlobalOidRegistry().unregister( OID );
}
@Test
@Ignore
public void testMoveComparatorAndChangeRdnWhenInUse() throws Exception
{
testAddComparatorToEnabledSchema();
schemaManager.getMatchingRuleRegistry().register( new DummyMR() );
Dn dn = new Dn( "m-oid=" + OID + ",ou=comparators,cn=apachemeta,ou=schema" );
Dn newDn = new Dn( "m-oid=" + NEW_OID + ",ou=comparators,cn=apache,ou=schema" );
try
{
connection.moveAndRename( dn, newDn );
fail( "should not be able to move a comparator in use" );
}
catch ( LdapUnwillingToPerformException e )
{
assertEquals( e.getResultCode(), ResultCodeEnum.UNWILLING_TO_PERFORM );
}
assertTrue( "comparator should still be in the registry after move failure", schemaManager
.getComparatorRegistry().contains( OID ) );
schemaManager.getMatchingRuleRegistry().unregister( OID );
schemaManager.getGlobalOidRegistry().unregister( OID );
}
// ----------------------------------------------------------------------
// Let's try some freaky stuff
// ----------------------------------------------------------------------
@Test
@Ignore
public void testMoveComparatorToTop() throws Exception
{
testAddComparatorToEnabledSchema();
Dn dn = new Dn( "m-oid=" + OID + ",ou=comparators,cn=apachemeta,ou=schema" );
Dn top = new Dn();
top = top.add( "m-oid" + "=" + OID );
try
{
connection.move( dn, top );
fail( "should not be able to move a comparator up to ou=schema" );
}
catch ( LdapInvalidDnException e )
{
assertEquals( e.getResultCode(), ResultCodeEnum.NAMING_VIOLATION );
}
assertTrue( "comparator should still be in the registry after move failure", schemaManager
.getComparatorRegistry().contains( OID ) );
}
@Test
@Ignore
public void testMoveComparatorToNormalizers() throws Exception
{
testAddComparatorToEnabledSchema();
Dn dn = new Dn( "m-oid=" + OID + ",ou=comparators,cn=apachemeta,ou=schema" );
Dn newDn = new Dn( "m-oid=" + OID + "ou=normalizers,cn=apachemeta,ou=schema" );
try
{
connection.move( dn, newDn );
fail( "should not be able to move a comparator up to normalizers container" );
}
catch ( LdapInvalidDnException e )
{
assertEquals( e.getResultCode(), ResultCodeEnum.NAMING_VIOLATION );
}
assertTrue( "comparator should still be in the registry after move failure", schemaManager
.getComparatorRegistry().contains( OID ) );
}
@Test
@Ignore
public void testMoveComparatorToDisabledSchema() throws Exception
{
testAddComparatorToEnabledSchema();
Dn dn = new Dn( "m-oid=" + OID + ",ou=comparators,cn=apachemeta,ou=schema" );
// nis is inactive by default
Dn newDn = new Dn( "m-oid=" + OID + ",ou=comparators,cn=nis,ou=schema" );
connection.move( dn, newDn );
assertFalse( "comparator OID should no longer be present", schemaManager.getComparatorRegistry().contains( OID ) );
}
@Test
@Ignore
public void testMoveComparatorToEnabledSchema() throws Exception
{
testAddComparatorToDisabledSchema();
// nis is inactive by default
Dn dn = new Dn( "m-oid=" + OID + ",ou=comparators,cn=nis,ou=schema" );
assertFalse( "comparator OID should NOT be present when added to disabled nis schema", schemaManager
.getComparatorRegistry().contains( OID ) );
Dn newDn = new Dn( "m-oid=" + OID + ",ou=comparators,cn=apachemeta,ou=schema" );
connection.move( dn, newDn );
assertTrue( "comparator OID should be present when moved to enabled schema", schemaManager
.getComparatorRegistry().contains( OID ) );
assertEquals( "comparator should be in apachemeta schema after move", schemaManager.getComparatorRegistry()
.getSchemaName( OID ), "apachemeta" );
}
}