blob: 33b764514ee684412fdcd6c3db8ec688fdbacbc6 [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 java.util.ArrayList;
import java.util.Iterator;
import java.util.Map;
import java.util.Set;
import org.apache.directory.shared.ldap.exception.LdapException;
import org.apache.directory.shared.ldap.schema.AttributeType;
import org.apache.directory.shared.ldap.schema.LdapSyntax;
import org.apache.directory.shared.ldap.schema.MatchingRule;
import org.apache.directory.shared.ldap.schema.Normalizer;
import org.apache.directory.shared.ldap.schema.SchemaObjectType;
import org.apache.directory.shared.ldap.schema.normalizers.DeepTrimToLowerNormalizer;
import org.apache.directory.shared.ldap.schema.normalizers.OidNormalizer;
import org.apache.directory.shared.ldap.schema.registries.AttributeTypeRegistry;
import org.apache.directory.shared.ldap.schema.registries.DefaultSchemaObjectRegistry;
import org.apache.directory.shared.ldap.schema.registries.OidRegistry;
import org.apache.directory.shared.ldap.schema.registries.SchemaObjectRegistry;
/**
* A mock {@link AttributeTypeRegistry} to test {@link ACITupleFilter} implementations.
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
* @version $Rev$, $Date$
*
*/
public class DummyAttributeTypeRegistry extends DefaultSchemaObjectRegistry<AttributeType>
{
private final boolean returnOperational;
public DummyAttributeTypeRegistry(boolean returnOperational)
{
super( SchemaObjectType.ATTRIBUTE_TYPE, new OidRegistry() );
this.returnOperational = returnOperational;
}
public AttributeType lookup( final String id ) throws LdapException
{
Normalizer normalizer = new DeepTrimToLowerNormalizer( "1.1.1" );
MatchingRule equality = new MatchingRule( "1.1.1" );
equality.setNormalizer( normalizer );
AttributeType attributeType = new AttributeType( id );
attributeType.setEquality( equality );
attributeType.setSingleValued( false );
attributeType.setCollective( false );
attributeType.setDescription( id );
if ( returnOperational )
{
attributeType.setUserModifiable( false );
}
else
{
LdapSyntax syntax = new LdapSyntax( "1.1.1" );
syntax.setHumanReadable( true );
attributeType.setSyntax( syntax );
attributeType.setUserModifiable( true );
}
return attributeType;
}
public String getSchemaName( String id ) throws LdapException
{
return "dummy";
}
public boolean contains( String id )
{
return true;
}
public Iterator<AttributeType> list()
{
return new ArrayList<AttributeType>().iterator();
}
public Map<String,OidNormalizer> getNormalizerMapping()
{
return null;
}
public Iterator<AttributeType> descendants( String ancestorId ) throws LdapException
{
return null;
}
public boolean hasDescendants( String ancestorId ) throws LdapException
{
return false;
}
public Iterator<AttributeType> iterator()
{
return null;
}
public AttributeType unregister( String numericOid ) throws LdapException
{
return null;
}
public void register( AttributeType attributeType ) throws LdapException
{
}
public Set<String> getBinaryAttributes() throws LdapException
{
return null;
}
public void unregisterDescendants( AttributeType attributeType, AttributeType ancestor )
throws LdapException
{
}
public void registerDescendants( AttributeType attributeType, AttributeType ancestor )
throws LdapException
{
}
public void addMappingFor( AttributeType attributeType ) throws LdapException
{
}
public SchemaObjectRegistry<AttributeType> copy()
{
return null;
}
}