blob: 947167a2639a07739c36053d7bb1943689a70a01 [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.authz.support;
import static org.junit.jupiter.api.Assertions.assertEquals;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.HashSet;
import java.util.Set;
import org.apache.directory.api.ldap.aci.ACITuple;
import org.apache.directory.api.ldap.aci.MicroOperation;
import org.apache.directory.api.ldap.aci.ProtectedItem;
import org.apache.directory.api.ldap.aci.UserClass;
import org.apache.directory.api.ldap.aci.protectedItem.MaxValueCountElem;
import org.apache.directory.api.ldap.aci.protectedItem.MaxValueCountItem;
import org.apache.directory.api.ldap.model.constants.AuthenticationLevel;
import org.apache.directory.api.ldap.model.entry.DefaultEntry;
import org.apache.directory.api.ldap.model.entry.Entry;
import org.apache.directory.api.ldap.model.name.Dn;
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.jupiter.api.BeforeAll;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.parallel.Execution;
import org.junit.jupiter.api.parallel.ExecutionMode;
/**
* Tests {@link MaxValueCountFilter}.
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
*/
@Execution(ExecutionMode.CONCURRENT)
public class MaxValueCountFilterTest
{
private static final Collection<ACITuple> EMPTY_ACI_TUPLE_COLLECTION = Collections
.unmodifiableCollection( new ArrayList<ACITuple>() );
private static final Collection<UserClass> EMPTY_USER_CLASS_COLLECTION = Collections
.unmodifiableCollection( new ArrayList<UserClass>() );
private static final Collection<ProtectedItem> EMPTY_PROTECTED_ITEM_COLLECTION = Collections
.unmodifiableCollection( new ArrayList<ProtectedItem>() );
private static final Set<MicroOperation> EMPTY_MICRO_OPERATION_SET = Collections
.unmodifiableSet( new HashSet<MicroOperation>() );
private static final Collection<ProtectedItem> PROTECTED_ITEMS = new ArrayList<ProtectedItem>();
private static Entry ENTRY;
private static Entry FULL_ENTRY;
/** The CN attribute Type */
private static AttributeType CN_AT;
/** A reference to the schemaManager */
private static SchemaManager schemaManager;
@BeforeAll
public static void init() throws Exception
{
schemaManager = new DefaultSchemaManager();
Dn entryName = new Dn( schemaManager, "ou=test, ou=system" );
ENTRY = new DefaultEntry( schemaManager, entryName );
FULL_ENTRY = new DefaultEntry( schemaManager, entryName );
ENTRY.put( "cn", "1" );
FULL_ENTRY.put( "cn", "1", "2", "3" );
Set<MaxValueCountElem> mvcItems = new HashSet<MaxValueCountElem>();
AttributeType cn = schemaManager.lookupAttributeTypeRegistry( "cn" );
mvcItems.add( new MaxValueCountElem( cn, 2 ) );
PROTECTED_ITEMS.add( new MaxValueCountItem( mvcItems ) );
CN_AT = schemaManager.lookupAttributeTypeRegistry( "cn" );
}
@Test
public void testWrongScope() throws Exception
{
MaxValueCountFilter filter = new MaxValueCountFilter();
Collection<ACITuple> tuples = new ArrayList<ACITuple>();
tuples.add( new ACITuple( EMPTY_USER_CLASS_COLLECTION, AuthenticationLevel.NONE,
EMPTY_PROTECTED_ITEM_COLLECTION,
EMPTY_MICRO_OPERATION_SET, true, 0 ) );
tuples = Collections.unmodifiableCollection( tuples );
AciContext aciContext = new AciContext( schemaManager, null );
aciContext.setAciTuples( tuples );
assertEquals( tuples, filter.filter( aciContext, OperationScope.ATTRIBUTE_TYPE, null ) );
aciContext = new AciContext( schemaManager, null );
aciContext.setAciTuples( tuples );
assertEquals( tuples, filter.filter( aciContext, OperationScope.ENTRY, null ) );
}
@Test
public void testZeroTuple() throws Exception
{
MaxValueCountFilter filter = new MaxValueCountFilter();
AciContext aciContext = new AciContext( schemaManager, null );
aciContext.setAciTuples( EMPTY_ACI_TUPLE_COLLECTION );
assertEquals( 0, filter.filter( aciContext, OperationScope.ATTRIBUTE_TYPE_AND_VALUE, null ).size() );
}
@Test
public void testDenialTuple() throws Exception
{
MaxValueCountFilter filter = new MaxValueCountFilter();
Collection<ACITuple> tuples = new ArrayList<ACITuple>();
tuples.add( new ACITuple( EMPTY_USER_CLASS_COLLECTION, AuthenticationLevel.NONE, PROTECTED_ITEMS,
EMPTY_MICRO_OPERATION_SET, false, 0 ) );
tuples = Collections.unmodifiableCollection( tuples );
AciContext aciContext = new AciContext( schemaManager, null );
aciContext.setAciTuples( tuples );
aciContext.setAttributeType( CN_AT );
aciContext.setEntry( ENTRY );
assertEquals( tuples, filter.filter( aciContext, OperationScope.ATTRIBUTE_TYPE_AND_VALUE, null ) );
aciContext = new AciContext( schemaManager, null );
aciContext.setAciTuples( tuples );
aciContext.setAttributeType( CN_AT );
aciContext.setEntry( FULL_ENTRY );
assertEquals( tuples, filter.filter( aciContext, OperationScope.ATTRIBUTE_TYPE_AND_VALUE, null ) );
}
@Test
public void testGrantTuple() throws Exception
{
MaxValueCountFilter filter = new MaxValueCountFilter();
Collection<ACITuple> tuples = new ArrayList<ACITuple>();
// Test with this ACI :
//
tuples.add( new ACITuple(
EMPTY_USER_CLASS_COLLECTION,
AuthenticationLevel.NONE,
PROTECTED_ITEMS,
EMPTY_MICRO_OPERATION_SET,
true,
0 ) );
AciContext aciContext = new AciContext( schemaManager, null );
aciContext.setAciTuples( tuples );
aciContext.setAttributeType( CN_AT );
aciContext.setEntry( ENTRY );
aciContext.setEntryView( ENTRY );
assertEquals( 1, filter.filter( aciContext, OperationScope.ATTRIBUTE_TYPE_AND_VALUE, null ).size() );
aciContext = new AciContext( schemaManager, null );
aciContext.setAciTuples( tuples );
aciContext.setAttributeType( CN_AT );
aciContext.setEntry( FULL_ENTRY );
aciContext.setEntryView( FULL_ENTRY );
assertEquals( 0, filter.filter( aciContext, OperationScope.ATTRIBUTE_TYPE_AND_VALUE, null ).size() );
}
}