blob: 166d258e7fe3ad422193516ec2c2a69f7be40d7b [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.Assert.assertEquals;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Collections;
import java.util.HashSet;
import java.util.Set;
import com.mycila.junit.concurrent.Concurrency;
import com.mycila.junit.concurrent.ConcurrentJunitRunner;
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.model.constants.AuthenticationLevel;
import org.junit.Test;
import org.junit.runner.RunWith;
/**
* Tests {@link MicroOperationFilter}.
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
*/
@RunWith(ConcurrentJunitRunner.class)
@Concurrency()
public class MicroOperationFilterTest
{
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> USER_OPERATIONS_A = new HashSet<MicroOperation>();
private static final Set<MicroOperation> USER_OPERATIONS_B = new HashSet<MicroOperation>();
private static final Set<MicroOperation> TUPLE_OPERATIONS = new HashSet<MicroOperation>();
static
{
USER_OPERATIONS_A.add( MicroOperation.ADD );
USER_OPERATIONS_A.add( MicroOperation.BROWSE );
USER_OPERATIONS_B.add( MicroOperation.COMPARE );
USER_OPERATIONS_B.add( MicroOperation.DISCLOSE_ON_ERROR );
TUPLE_OPERATIONS.add( MicroOperation.ADD );
TUPLE_OPERATIONS.add( MicroOperation.BROWSE );
TUPLE_OPERATIONS.add( MicroOperation.EXPORT );
}
@Test
public void testZeroTuple() throws Exception
{
MicroOperationFilter filter = new MicroOperationFilter();
AciContext aciContext = new AciContext( null, null );
aciContext.setAciTuples( EMPTY_ACI_TUPLE_COLLECTION );
assertEquals( 0, filter.filter( aciContext, OperationScope.ATTRIBUTE_TYPE_AND_VALUE, null ).size() );
}
@Test
public void testOneTuple() throws Exception
{
MicroOperationFilter filter = new MicroOperationFilter();
Collection<ACITuple> tuples = new ArrayList<ACITuple>();
tuples.add( new ACITuple( EMPTY_USER_CLASS_COLLECTION, AuthenticationLevel.NONE,
EMPTY_PROTECTED_ITEM_COLLECTION,
TUPLE_OPERATIONS, true, 0 ) );
AciContext aciContext = new AciContext( null, null );
aciContext.setMicroOperations( USER_OPERATIONS_A );
aciContext.setAciTuples( tuples );
assertEquals( 1, filter.filter( aciContext, OperationScope.ENTRY, null ).size() );
aciContext = new AciContext( null, null );
aciContext.setMicroOperations( USER_OPERATIONS_B );
aciContext.setAciTuples( tuples );
assertEquals( 0, filter.filter( aciContext, OperationScope.ENTRY, null ).size() );
}
}