blob: 11e37ede73c1d99a60a3c5f100ef76e7968617ef [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.Comparator;
import java.util.Iterator;
import java.util.Map;
import java.util.Set;
import javax.naming.NamingException;
import org.apache.directory.server.core.authz.support.ACITupleFilter;
import org.apache.directory.server.schema.registries.AttributeTypeRegistry;
import org.apache.directory.shared.ldap.schema.AttributeType;
import org.apache.directory.shared.ldap.schema.MatchingRule;
import org.apache.directory.shared.ldap.schema.Normalizer;
import org.apache.directory.shared.ldap.schema.OidNormalizer;
import org.apache.directory.shared.ldap.schema.Syntax;
import org.apache.directory.shared.ldap.schema.UsageEnum;
import org.apache.directory.shared.ldap.schema.syntax.SyntaxChecker;
import org.apache.directory.shared.ldap.util.StringTools;
/**
* 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 implements AttributeTypeRegistry
{
private final boolean returnOperational;
public DummyAttributeTypeRegistry(boolean returnOperational)
{
this.returnOperational = returnOperational;
}
public AttributeType lookup( final String id ) throws NamingException
{
if ( returnOperational )
{
return new AttributeType()
{
private static final long serialVersionUID = 1L;
public boolean isSingleValue()
{
return false;
}
public boolean isCanUserModify()
{
return false;
}
public boolean isCollective()
{
return false;
}
public UsageEnum getUsage()
{
return null;
}
public AttributeType getSuperior() throws NamingException
{
return null;
}
public Syntax getSyntax() throws NamingException
{
return null;
}
public int getLength()
{
return 0;
}
public MatchingRule getEquality() throws NamingException
{
return new MatchingRule()
{
private static final long serialVersionUID = 1L;
public Syntax getSyntax() throws NamingException
{
return null;
}
public Comparator getComparator() throws NamingException
{
return null;
}
public Normalizer getNormalizer() throws NamingException
{
return new Normalizer()
{
private static final long serialVersionUID = 1L;
public Object normalize( Object value ) throws NamingException
{
return StringTools.deepTrimToLower( value.toString() );
}
};
}
public boolean isObsolete()
{
return false;
}
public String getOid()
{
return null;
}
public String[] getNamesRef()
{
return null;
}
public String getName()
{
return null;
}
public String getDescription()
{
return null;
}
public String getSchema()
{
return null;
}
public void setSchema( String schemaName )
{
}
};
}
public MatchingRule getOrdering() throws NamingException
{
return null;
}
public MatchingRule getSubstr() throws NamingException
{
return null;
}
public boolean isAncestorOf( AttributeType descendant ) throws NamingException
{
return false;
}
public boolean isDescentantOf( AttributeType ancestor ) throws NamingException
{
return false;
}
public boolean isObsolete()
{
return false;
}
public String getOid()
{
return String.valueOf( id.hashCode() );
}
public String[] getNamesRef()
{
return new String[]
{ id };
}
public String getName()
{
return id;
}
public String getDescription()
{
return id;
}
public String getSchema()
{
return null;
}
public void setSchema( String schemaName )
{
}
};
}
else
{
return new AttributeType()
{
private static final long serialVersionUID = 1L;
public boolean isSingleValue()
{
return false;
}
public boolean isCanUserModify()
{
return true;
}
public boolean isCollective()
{
return false;
}
public UsageEnum getUsage()
{
return null;
}
public AttributeType getSuperior() throws NamingException
{
return null;
}
public Syntax getSyntax() throws NamingException
{
return new Syntax()
{
private static final long serialVersionUID = 1L;
public boolean isHumanReadable()
{
return true;
}
public SyntaxChecker getSyntaxChecker() throws NamingException
{
return null;
}
public boolean isObsolete()
{
return false;
}
public String getOid()
{
return null;
}
public String[] getNamesRef()
{
return null;
}
public String getName()
{
return null;
}
public String getDescription()
{
return null;
}
public String getSchema()
{
return null;
}
public void setSchema( String schemaName )
{
}
};
}
public int getLength()
{
return 0;
}
public MatchingRule getEquality() throws NamingException
{
return new MatchingRule()
{
private static final long serialVersionUID = 1L;
public Syntax getSyntax() throws NamingException
{
return new Syntax()
{
private static final long serialVersionUID = 1L;
public boolean isHumanReadable()
{
return true;
}
public SyntaxChecker getSyntaxChecker() throws NamingException
{
return null;
}
public boolean isObsolete()
{
return false;
}
public String getOid()
{
return null;
}
public String[] getNamesRef()
{
return null;
}
public String getName()
{
return null;
}
public String getDescription()
{
return null;
}
public String getSchema()
{
return null;
}
public void setSchema( String schemaName )
{
}
};
}
public Comparator getComparator() throws NamingException
{
return null;
}
public Normalizer getNormalizer() throws NamingException
{
return new Normalizer()
{
private static final long serialVersionUID = 1L;
public Object normalize( Object value ) throws NamingException
{
return StringTools.deepTrimToLower( value.toString() );
}
};
}
public boolean isObsolete()
{
return false;
}
public String getOid()
{
return null;
}
public String[] getNamesRef()
{
return null;
}
public String getName()
{
return null;
}
public String getDescription()
{
return null;
}
public String getSchema()
{
return null;
}
public void setSchema( String schemaName )
{
}
};
}
public MatchingRule getOrdering() throws NamingException
{
return null;
}
public MatchingRule getSubstr() throws NamingException
{
return null;
}
public boolean isAncestorOf( AttributeType descendant ) throws NamingException
{
return false;
}
public boolean isDescentantOf( AttributeType ancestor ) throws NamingException
{
return false;
}
public boolean isObsolete()
{
return false;
}
public String getOid()
{
return String.valueOf( id.hashCode() );
}
public String[] getNamesRef()
{
return new String[]
{ id };
}
public String getName()
{
return id;
}
public String getDescription()
{
return id;
}
public String getSchema()
{
return null;
}
public void setSchema( String schemaName )
{
}
};
}
}
public String getSchemaName( String id ) throws NamingException
{
return "dummy";
}
public boolean hasAttributeType( String id )
{
return true;
}
public Iterator list()
{
return new ArrayList().iterator();
}
public Map<String,OidNormalizer> getNormalizerMapping() throws NamingException
{
return null;
}
public Iterator<AttributeType> descendants( String ancestorId ) throws NamingException
{
return null;
}
public boolean hasDescendants( String ancestorId ) throws NamingException
{
return false;
}
public Iterator<AttributeType> iterator()
{
return null;
}
public void unregister( String numericOid ) throws NamingException
{
}
public void register( AttributeType attributeType ) throws NamingException
{
}
public Set<String> getBinaryAttributes() throws NamingException
{
return null;
}
}