blob: da620aaf340e74cc664fafd0ecb577b6605d4905 [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.tuscany.das.ldap.schema.embedded.setup.test;
import javax.naming.NamingException;
import javax.naming.directory.Attribute;
import javax.naming.directory.Attributes;
import javax.naming.directory.BasicAttribute;
import javax.naming.directory.BasicAttributes;
import javax.naming.directory.DirContext;
import org.apache.tuscany.das.ldap.constants.DASConstants;
import org.apache.tuscany.das.ldap.schema.create.ComplexTypeRDNCreator;
import org.apache.tuscany.das.ldap.schema.create.SimpleTypeRDNCreator;
public class DASSchemaContextsSetup
extends AbstractTestSetup
implements DASConstants
{
public void tearDown() throws NamingException, Exception
{
dasSyntaxesContext.close();
dasSchemaSubContext.destroySubcontext(
SYNTAXES_CONTEXT_RDN );
dasAttributeTypesContext.close();
dasSchemaSubContext.destroySubcontext(
ATTRIBUTE_TYPES_CONTEXT_RDN );
dasSchemaSubContext.destroySubcontext(
OBJECT_CLASSES_CONTEXT_RDN );
dasSchemaSubContext.close();
schemaPartitionContext.destroySubcontext(
DAS_CONTEXT_RDN );
schemaPartitionContext.close();
super.tearDown();
}
public void setUp() throws NamingException, Exception
{
super.setUp();
dasSchemaSubContext =
createDasSchemaSubContext();
dasSyntaxesContext =
createDasSyntaxesContext();
dasAttributeTypesContext =
createDasAttributeTypesContext();
dasObjectClassesContext =
createDasObjectClassesContext();
mComplexMayRDN =
SimpleTypeRDNCreator.create(
TUSCANY_OID_PREFIX_VALUE,
DAS_XSD_NAMESPACE,
M_META_TOP_SDO_OBJECT_CLASS,
M_COMPLEX_MAY);
mComplexMustRDN =
SimpleTypeRDNCreator.create(
TUSCANY_OID_PREFIX_VALUE,
DAS_XSD_NAMESPACE,
M_META_TOP_SDO_OBJECT_CLASS,
M_COMPLEX_MUST);
idRDN =
SimpleTypeRDNCreator.create(
TUSCANY_OID_PREFIX_VALUE,
DAS_XSD_NAMESPACE,
M_META_TOP_SDO_OBJECT_CLASS,
ID);
metaTopSDORDN =
ComplexTypeRDNCreator.create(
TUSCANY_OID_PREFIX_VALUE,
DAS_XSD_NAMESPACE,
M_META_TOP_SDO_OBJECT_CLASS);
}
private DirContext createDasSchemaSubContext() throws NamingException
{
Attributes contextAttributes = new BasicAttributes();
Attribute objectClassAttribute = new BasicAttribute(
OBJECT_CLASS,
TOP);
objectClassAttribute.add(META_SCHEMA);
Attribute ecoreAttribute = new BasicAttribute(
CN,
DAS_CONTEXT_NAME);
contextAttributes.put( ecoreAttribute );
contextAttributes.put( objectClassAttribute );
return schemaPartitionContext.createSubcontext(
DAS_CONTEXT_RDN, contextAttributes );
}
private DirContext createDasAttributeTypesContext() throws NamingException
{
Attributes contextAttributes = new BasicAttributes();
Attribute objectClassAttribute = new BasicAttribute(
OBJECT_CLASS,
TOP);
objectClassAttribute.add(ORGANIZATIONAL_UNIT);
Attribute ecoreAttribute = new BasicAttribute(
OU,
ATTRIBUTE_TYPES_CONTEXT_NAME);
contextAttributes.put( ecoreAttribute );
contextAttributes.put( objectClassAttribute );
return dasSchemaSubContext.createSubcontext(
ATTRIBUTE_TYPES_CONTEXT_RDN, contextAttributes );
}
private DirContext createDasSyntaxesContext() throws NamingException
{
Attributes contextAttributes = new BasicAttributes();
Attribute objectClassAttribute = new BasicAttribute(
OBJECT_CLASS,
TOP);
objectClassAttribute.add(ORGANIZATIONAL_UNIT);
Attribute ecoreAttribute = new BasicAttribute(
OU,
SYNTAXES_CONTEXT_NAME);
contextAttributes.put( ecoreAttribute );
contextAttributes.put( objectClassAttribute );
return dasSchemaSubContext.createSubcontext(
SYNTAXES_CONTEXT_RDN, contextAttributes );
}
private DirContext createDasObjectClassesContext() throws NamingException
{
Attributes contextAttributes = new BasicAttributes();
Attribute objectClassAttribute = new BasicAttribute(
OBJECT_CLASS,
TOP);
objectClassAttribute.add(ORGANIZATIONAL_UNIT);
Attribute attributeTypes = new BasicAttribute(
OU,
OBJECT_CLASSES_CONTEXT_NAME);
contextAttributes.put( attributeTypes );
contextAttributes.put( objectClassAttribute );
return dasSchemaSubContext.createSubcontext(
OBJECT_CLASSES_CONTEXT_RDN,
contextAttributes );
}
protected DirContext dasSchemaSubContext = null;
protected DirContext dasAttributeTypesContext = null;
protected DirContext dasSyntaxesContext = null;
protected DirContext dasObjectClassesContext = null;
protected String mComplexMayRDN = null;
protected String mComplexMustRDN = null;
protected String idRDN = null;
protected String metaTopSDORDN = null;
}