blob: 0cc0e0ae4d9de0095d6e02bea85b1505b94906fc [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.subtree;
import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertTrue;
import static org.junit.jupiter.api.Assertions.fail;
import org.apache.directory.api.ldap.model.constants.SchemaConstants;
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.entry.Value;
import org.apache.directory.api.ldap.model.exception.LdapException;
import org.apache.directory.api.ldap.model.filter.EqualityNode;
import org.apache.directory.api.ldap.model.filter.GreaterEqNode;
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.loader.JarLdifSchemaLoader;
import org.apache.directory.api.ldap.schema.manager.impl.DefaultSchemaManager;
import org.apache.directory.api.util.exception.Exceptions;
import org.apache.directory.server.core.api.subtree.RefinementLeafEvaluator;
import org.junit.jupiter.api.AfterAll;
import org.junit.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.parallel.Execution;
import org.junit.jupiter.api.parallel.ExecutionMode;
/**
* Unit test cases for testing the evaluator for refinement leaf nodes.
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
*/
public class RefinementLeafEvaluatorTest
{
/** the SchemaManager instance */
private static SchemaManager schemaManager;
/** The ObjectClass AttributeType */
private static AttributeType OBJECT_CLASS_AT;
/** The CN AttributeType */
private static AttributeType CN_AT;
/** the refinement leaf evaluator to test */
private static RefinementLeafEvaluator evaluator;
/**
* Initializes the global registries.
* @throws javax.naming.NamingException if there is a failure loading the schema
*/
@BeforeAll
public static void init() throws Exception
{
JarLdifSchemaLoader loader = new JarLdifSchemaLoader();
schemaManager = new DefaultSchemaManager( loader );
boolean loaded = schemaManager.loadAllEnabled();
if ( !loaded )
{
fail( "Schema load failed : " + Exceptions.printErrors( schemaManager.getErrors() ) );
}
OBJECT_CLASS_AT = schemaManager.getAttributeType( SchemaConstants.OBJECT_CLASS_AT );
CN_AT = schemaManager.getAttributeType( SchemaConstants.CN_AT );
evaluator = new RefinementLeafEvaluator( schemaManager );
}
/**
* Sets evaluator and registries to null.
*/
@AfterAll
public static void tearDown()
{
evaluator = null;
}
/**
* Test cases for various bad combinations of arguments
* @throws Exception if something goes wrongg
*/
@Test
public void testForBadArguments() throws Exception
{
Attribute objectClasses = null;
try
{
assertFalse( evaluator.evaluate( null, null ) );
fail( "should never get here due to an IAE" );
}
catch ( IllegalArgumentException iae )
{
}
try
{
assertFalse( evaluator.evaluate( new GreaterEqNode( "", "" ), objectClasses ) );
fail( "should never get here due to an NE" );
}
catch ( LdapException ne )
{
}
try
{
assertFalse( evaluator.evaluate( new EqualityNode( "", "" ), objectClasses ) );
fail( "should never get here due to an NE" );
}
catch ( IllegalArgumentException iae )
{
}
try
{
assertFalse( evaluator.evaluate( new EqualityNode( OBJECT_CLASS_AT, new Value( "" ) ), objectClasses ) );
fail( "should never get here due to an IAE" );
}
catch ( IllegalArgumentException iae )
{
}
try
{
objectClasses = new DefaultAttribute( "cn", OBJECT_CLASS_AT.getName() );
assertFalse( evaluator.evaluate( new EqualityNode( CN_AT, new Value( "" ) ), objectClasses ) );
fail( "should never get here due to an IAE" );
}
catch ( IllegalArgumentException iae )
{
assertTrue( true );
}
}
@Test
public void testMatchByName() throws Exception
{
// positive test
Attribute objectClasses = new DefaultAttribute( OBJECT_CLASS_AT, "person" );
assertTrue( evaluator
.evaluate( new EqualityNode( OBJECT_CLASS_AT, new Value( "person" ) ), objectClasses ) );
objectClasses = new DefaultAttribute( OBJECT_CLASS_AT );
objectClasses.add( "person" );
objectClasses.add( "blah" );
assertTrue( evaluator
.evaluate( new EqualityNode( OBJECT_CLASS_AT, new Value( "person" ) ), objectClasses ) );
// negative tests
objectClasses = new DefaultAttribute( OBJECT_CLASS_AT, "person" );
assertFalse( evaluator.evaluate( new EqualityNode( OBJECT_CLASS_AT, new Value( "blah" ) ), objectClasses ) );
objectClasses = new DefaultAttribute( OBJECT_CLASS_AT, "blah" );
assertFalse( evaluator.evaluate( new EqualityNode( OBJECT_CLASS_AT, new Value( "person" ) ),
objectClasses ) );
}
@Test
public void testMatchByOID() throws Exception
{
Attribute objectClasses = new DefaultAttribute( OBJECT_CLASS_AT, "person" );
// positive test
assertTrue( evaluator.evaluate( new EqualityNode( OBJECT_CLASS_AT, new Value( "2.5.6.6" ) ),
objectClasses ) );
objectClasses = new DefaultAttribute( OBJECT_CLASS_AT );
objectClasses.add( "person" );
objectClasses.add( "blah" );
assertTrue( evaluator.evaluate( new EqualityNode( OBJECT_CLASS_AT, new Value( "2.5.6.6" ) ),
objectClasses ) );
// negative tests
objectClasses = new DefaultAttribute( OBJECT_CLASS_AT, "person" );
assertFalse( evaluator.evaluate( new EqualityNode( OBJECT_CLASS_AT, new Value( "2.5.6.5" ) ),
objectClasses ) );
objectClasses = new DefaultAttribute( OBJECT_CLASS_AT, "blah" );
assertFalse( evaluator.evaluate( new EqualityNode( OBJECT_CLASS_AT, new Value( "2.5.6.5" ) ),
objectClasses ) );
}
}