blob: 6ba4dcebc51fb04b4277715b03596f6b91de16b8 [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
*
* https://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.api.ldap.model.schema.registries;
import static org.junit.jupiter.api.Assertions.assertEquals;
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.exception.LdapException;
import org.apache.directory.api.ldap.model.schema.AttributeType;
import org.apache.directory.api.ldap.model.schema.registries.AttributeTypeRegistry;
import org.apache.directory.api.ldap.model.schema.registries.DefaultAttributeTypeRegistry;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.parallel.Execution;
import org.junit.jupiter.api.parallel.ExecutionMode;
/**
* Test the AttributeTypeRegistry
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
*/
@Execution(ExecutionMode.CONCURRENT)
public class AttributeTypeRegistryTest
{
AttributeTypeRegistry atRegistry;
@BeforeEach
public void setup()
{
atRegistry = new DefaultAttributeTypeRegistry();
}
@Test
public void testUnregister() throws LdapException
{
AttributeType at0 = new AttributeType( "1.1" );
at0.addName( "t", "test", "Test", "T" );
atRegistry.register( at0 );
atRegistry.unregister( "1.1" );
assertFalse( atRegistry.contains( "1.1" ) );
assertFalse( atRegistry.contains( "t" ) );
assertFalse( atRegistry.contains( "T" ) );
assertFalse( atRegistry.contains( "tEsT" ) );
try
{
atRegistry.getOidByName( "T" );
fail();
}
catch ( LdapException ne )
{
assertTrue( true );
}
}
@Test
public void testRegister() throws LdapException
{
AttributeType at0 = new AttributeType( "1.1" );
at0.addName( "t", "test", "Test", "T" );
atRegistry.register( at0 );
assertTrue( atRegistry.contains( "1.1" ) );
assertTrue( atRegistry.contains( "t" ) );
assertTrue( atRegistry.contains( "T" ) );
assertTrue( atRegistry.contains( "tEsT" ) );
assertEquals( "1.1", atRegistry.getOidByName( "T" ) );
try
{
atRegistry.register( at0 );
fail();
}
catch ( LdapException ne )
{
assertTrue( true );
}
}
}