blob: f400f75f43a5af1726d78ad70e065b07a82a5b98 [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.ldap.client.api;
import org.apache.directory.api.ldap.model.schema.SchemaManager;
import org.apache.directory.api.ldap.schema.manager.impl.DefaultSchemaManager;
import org.junit.BeforeClass;
import org.junit.Test;
/**
* A class used to test the LDIFAnonymizer
*
* @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
*/
public class LdifAnonymizerTest
{
private static SchemaManager schemaManager;
@BeforeClass
public static void setup()
{
schemaManager = null;
try
{
schemaManager = new DefaultSchemaManager();
}
catch ( Exception e )
{
// Todo : we need a schemaManager
System.out.println( "Missing a SchemaManager !" );
System.exit( -1 );
}
}
@Test
public void testLdifAnonymizer() throws Exception, Exception
{
String ldif =
"dn: cn=test,dc=example,dc=com\n" +
"ObjectClass: top\n" +
"objectClass: person\n" +
"cn: test\n" +
"sn: Test\n" +
"\n" +
"dn: cn=emmanuel,dc=acme,dc=com\n" +
"ObjectClass: top\n" +
"objectClass: person\n" +
"cn: emmanuel\n" +
"sn: elecharny\n"+
"\n" +
"dn: cn=emmanuel,dc=test,dc=example,dc=com\n" +
"ObjectClass: top\n" +
"objectClass: person\n" +
"cn: emmanuel\n" +
"seeAlso: cn=emmanuel,dc=acme,dc=com\n" +
"sn: elecharny\n";
SchemaManager schemaManager = null;
try
{
schemaManager = new DefaultSchemaManager();
}
catch ( Exception e )
{
// Todo : we need a schemaManager
System.out.println( "Missing a SchemaManager !" );
System.exit( -1 );
}
LdifAnonymizer anonymizer = new LdifAnonymizer( schemaManager );
anonymizer.addNamingContext( "dc=example,dc=com" );
anonymizer.addNamingContext( "dc=acme,dc=com" );
anonymizer.removeAnonAttributeType( schemaManager.getAttributeType( "sn" ) );
anonymizer.anonymize( ldif );
}
@Test
public void testLdifAnonymizer2() throws Exception, Exception
{
String ldif =
"dn: cn=cn2 + sn=elecharny, dc=example, dc=com\n" +
"ObjectClass: top\n" +
"objectClass: person\n" +
"cn: cn1\n" +
"cn: cn2\n" +
"cn: cn3\n" +
"sn: elecharny\n" +
"givenname: test\n";
LdifAnonymizer anonymizer = new LdifAnonymizer( schemaManager );
anonymizer.addNamingContext( "dc=example,dc=com" );
anonymizer.anonymize( ldif );
}
@Test
public void testLdifAnonymizer3() throws Exception, Exception
{
String ldif =
"dn: cn=cn2 + sn=elecharny, dc=example, dc=com\n" +
"ObjectClass: top\n" +
"objectClass: person\n" +
"cn: cn1\n" +
"cn: cn2\n" +
"cn: cn3\n" +
"userPassword: test\n" +
"sn: elecharny\n" +
"givenname: test\n";
LdifAnonymizer anonymizer = new LdifAnonymizer( schemaManager );
anonymizer.addNamingContext( "dc=example,dc=com" );
anonymizer.anonymize( ldif );
}
}