/*
|
* CDDL HEADER START
|
*
|
* The contents of this file are subject to the terms of the
|
* Common Development and Distribution License, Version 1.0 only
|
* (the "License"). You may not use this file except in compliance
|
* with the License.
|
*
|
* You can obtain a copy of the license at
|
* trunk/opends/resource/legal-notices/OpenDS.LICENSE
|
* or https://OpenDS.dev.java.net/OpenDS.LICENSE.
|
* See the License for the specific language governing permissions
|
* and limitations under the License.
|
*
|
* When distributing Covered Code, include this CDDL HEADER in each
|
* file and include the License file at
|
* trunk/opends/resource/legal-notices/OpenDS.LICENSE. If applicable,
|
* add the following below this CDDL HEADER, with the fields enclosed
|
* by brackets "[]" replaced with your own identifying information:
|
* Portions Copyright [yyyy] [name of copyright owner]
|
*
|
* CDDL HEADER END
|
*
|
*
|
* Copyright 2006-2008 Sun Microsystems, Inc.
|
*/
|
package org.opends.server.tools;
|
|
|
|
import java.io.File;
|
import java.io.FileWriter;
|
import java.util.ArrayList;
|
|
import org.testng.annotations.BeforeClass;
|
import org.testng.annotations.DataProvider;
|
import org.testng.annotations.Test;
|
|
import org.opends.server.TestCaseUtils;
|
import org.opends.server.core.AddOperation;
|
import org.opends.server.core.DirectoryServer;
|
import org.opends.server.protocols.internal.InternalClientConnection;
|
import org.opends.server.types.Entry;
|
import org.opends.server.types.OperatingSystem;
|
import org.opends.server.types.ResultCode;
|
import org.opends.server.util.Base64;
|
|
import static org.testng.Assert.*;
|
|
import static org.opends.server.util.ServerConstants.*;
|
|
|
|
/**
|
* A set of test cases for the LDAPCompare tool.
|
*/
|
public class LDAPCompareTestCase
|
extends ToolsTestCase
|
{
|
// The path to a file containing an invalid bind password.
|
private String invalidPasswordFile;
|
|
// The path to a file containing a valid bind password.
|
private String validPasswordFile;
|
|
|
|
/**
|
* Ensures that the Directory Server is running and performs other necessary
|
* setup.
|
*
|
* @throws Exception If an unexpected problem occurs.
|
*/
|
@BeforeClass()
|
public void startServerAndCreatePasswordFiles()
|
throws Exception
|
{
|
TestCaseUtils.startServer();
|
|
File pwFile = File.createTempFile("valid-bind-password-", ".txt");
|
pwFile.deleteOnExit();
|
FileWriter fileWriter = new FileWriter(pwFile);
|
fileWriter.write("password" + System.getProperty("line.separator"));
|
fileWriter.close();
|
validPasswordFile = pwFile.getAbsolutePath();
|
|
pwFile = File.createTempFile("invalid-bind-password-", ".txt");
|
pwFile.deleteOnExit();
|
fileWriter = new FileWriter(pwFile);
|
fileWriter.write("wrongPassword" + System.getProperty("line.separator"));
|
fileWriter.close();
|
invalidPasswordFile = pwFile.getAbsolutePath();
|
}
|
|
|
|
/**
|
* Retrieves sets of invalid arguments that may not be used to initialize
|
* the LDAPCompare tool.
|
*
|
* @return Sets of invalid arguments that may not be used to initialize the
|
* LDAPCompare tool.
|
*/
|
@DataProvider(name = "invalidArgs")
|
public Object[][] getInvalidArgumentLists()
|
{
|
ArrayList<String[]> argLists = new ArrayList<String[]>();
|
ArrayList<String> reasonList = new ArrayList<String>();
|
|
String[] args = {};
|
argLists.add(args);
|
reasonList.add("No arguments");
|
|
args = new String[]
|
{
|
"-D",
|
};
|
argLists.add(args);
|
reasonList.add("No value for '-D' argument");
|
|
args = new String[]
|
{
|
"-w",
|
};
|
argLists.add(args);
|
reasonList.add("No value for '-w' argument");
|
|
args = new String[]
|
{
|
"-j",
|
};
|
argLists.add(args);
|
reasonList.add("No value for '-j' argument");
|
|
args = new String[]
|
{
|
"-i",
|
};
|
argLists.add(args);
|
reasonList.add("No value for '-i' argument");
|
|
args = new String[]
|
{
|
"-K",
|
};
|
argLists.add(args);
|
reasonList.add("No value for '-K' argument");
|
|
args = new String[]
|
{
|
"-P",
|
};
|
argLists.add(args);
|
reasonList.add("No value for '-P' argument");
|
|
args = new String[]
|
{
|
"-W",
|
};
|
argLists.add(args);
|
reasonList.add("No value for '-W' argument");
|
|
args = new String[]
|
{
|
"-h",
|
};
|
argLists.add(args);
|
reasonList.add("No value for '-h' argument");
|
|
args = new String[]
|
{
|
"-p",
|
};
|
argLists.add(args);
|
reasonList.add("No value for '-p' argument");
|
|
args = new String[]
|
{
|
"-V",
|
};
|
argLists.add(args);
|
reasonList.add("No value for '-V' argument");
|
|
args = new String[]
|
{
|
"-f",
|
};
|
argLists.add(args);
|
reasonList.add("No value for '-f' argument");
|
|
args = new String[]
|
{
|
"-J",
|
};
|
argLists.add(args);
|
reasonList.add("No value for '-J' argument");
|
|
args = new String[]
|
{
|
"-o",
|
};
|
argLists.add(args);
|
reasonList.add("No value for '-o' argument");
|
|
args = new String[]
|
{
|
"--assertionFilter",
|
};
|
argLists.add(args);
|
reasonList.add("No value for '--assertionFilter' argument");
|
|
args = new String[]
|
{
|
"-I"
|
};
|
argLists.add(args);
|
reasonList.add("Invalid short argument");
|
|
args = new String[]
|
{
|
"--invalidLongArgument"
|
};
|
argLists.add(args);
|
reasonList.add("Invalid long argument");
|
|
args = new String[]
|
{
|
"--assertionFilter", "(invalidfilter)",
|
"uid:test.user",
|
"uid=test.user,o=test"
|
};
|
argLists.add(args);
|
reasonList.add("Invalid assertion filter");
|
|
args = new String[]
|
{
|
"-D", "cn=Directory Manager",
|
"-j", "no.such.file",
|
"uid:test.user",
|
"uid=test.user,o=test"
|
};
|
argLists.add(args);
|
reasonList.add("Invalid bind password file path");
|
|
args = new String[]
|
{
|
"-D", "cn=Directory Manager",
|
"-w", "password",
|
"-j", validPasswordFile,
|
"uid:test.user",
|
"uid=test.user,o=test"
|
};
|
argLists.add(args);
|
reasonList.add("Both bind password and password file");
|
|
args = new String[]
|
{
|
"-V", "nonnumeric",
|
"uid:test.user",
|
"uid=test.user,o=test"
|
};
|
argLists.add(args);
|
reasonList.add("Non-numeric LDAP version");
|
|
args = new String[]
|
{
|
"-V", "1",
|
"uid:test.user",
|
"uid=test.user,o=test"
|
};
|
argLists.add(args);
|
reasonList.add("Invalid LDAP version");
|
|
args = new String[]
|
{
|
"-f", "no.such.file",
|
"uid:test.user",
|
"uid=test.user,o=test"
|
};
|
argLists.add(args);
|
reasonList.add("Invalid DN file path");
|
|
args = new String[]
|
{
|
"-J", "1.2.3.4:invalidcriticality",
|
"uid:test.user",
|
"uid=test.user,o=test"
|
};
|
argLists.add(args);
|
reasonList.add("Invalid control criticality");
|
|
args = new String[]
|
{
|
"-p", "nonnumeric",
|
"uid:test.user",
|
"uid=test.user,o=test"
|
};
|
argLists.add(args);
|
reasonList.add("Non-numeric port");
|
|
args = new String[]
|
{
|
"-p", "999999",
|
"uid:test.user",
|
"uid=test.user,o=test"
|
};
|
argLists.add(args);
|
reasonList.add("Port value out of range");
|
|
args = new String[]
|
{
|
"-r",
|
"-K", "key.store.file",
|
"uid:test.user",
|
"uid=test.user,o=test"
|
};
|
argLists.add(args);
|
reasonList.add("SASL external without SSL or StartTLS");
|
|
args = new String[]
|
{
|
"-Z",
|
"-r",
|
"uid:test.user",
|
"uid=test.user,o=test"
|
};
|
argLists.add(args);
|
reasonList.add("SASL external without keystore file");
|
|
args = new String[]
|
{
|
"-D", "cn=Directory Manager",
|
"-w", "password"
|
};
|
argLists.add(args);
|
reasonList.add("No trailing arguments");
|
|
args = new String[]
|
{
|
"-D", "cn=Directory Manager",
|
"-w", "password",
|
"uid:test.user"
|
};
|
argLists.add(args);
|
reasonList.add("Only one trailing argument");
|
|
args = new String[]
|
{
|
"-D", "cn=Directory Manager",
|
"-w", "password",
|
"malformed",
|
"uid=test.user,o=test"
|
};
|
argLists.add(args);
|
reasonList.add("Malformed attribute-value assertion");
|
|
|
Object[][] returnArray = new Object[argLists.size()][2];
|
for (int i=0; i < argLists.size(); i++)
|
{
|
returnArray[i][0] = argLists.get(i);
|
returnArray[i][1] = reasonList.get(i);
|
}
|
return returnArray;
|
}
|
|
|
|
/**
|
* Tests the LDAPCompare tool with sets of invalid arguments.
|
*
|
* @param args The set of arguments to use for the LDAPCompare
|
* tool.
|
* @param invalidReason The reason the provided set of arguments is invalid.
|
*/
|
@Test(dataProvider = "invalidArgs")
|
public void testInvalidArguments(String[] args, String invalidReason)
|
{
|
assertFalse(LDAPCompare.mainCompare(args, false, null, null) == 0,
|
"Should have been invalid because: " + invalidReason);
|
}
|
|
|
|
/**
|
* Tests a simple LDAPv2 compare.
|
*
|
* @throws Exception If an unexpectd problem occurs.
|
*/
|
@Test()
|
public void testSimpleLDAPv2Compare()
|
throws Exception
|
{
|
TestCaseUtils.initializeTestBackend(true);
|
|
String[] args =
|
{
|
"-h", "127.0.0.1",
|
"-p", String.valueOf(TestCaseUtils.getServerLdapPort()),
|
"-V", "2",
|
"-D", "cn=Directory Manager",
|
"-w", "password",
|
"--noPropertiesFile",
|
"o:test",
|
"o=test"
|
};
|
|
assertEquals(LDAPCompare.mainCompare(args, false, null, System.err), 0);
|
}
|
|
|
|
/**
|
* Tests a simple LDAPv3 compare in which the assertion is true.
|
*
|
* @throws Exception If an unexpectd problem occurs.
|
*/
|
@Test()
|
public void testSimpleLDAPv3CompareTrue()
|
throws Exception
|
{
|
TestCaseUtils.initializeTestBackend(true);
|
|
String[] args =
|
{
|
"-h", "127.0.0.1",
|
"-p", String.valueOf(TestCaseUtils.getServerLdapPort()),
|
"-V", "3",
|
"-D", "cn=Directory Manager",
|
"-w", "password",
|
"--noPropertiesFile",
|
"o:test",
|
"o=test"
|
};
|
|
assertEquals(LDAPCompare.mainCompare(args, false, null, System.err), 0);
|
}
|
|
|
|
/**
|
* Tests a simple LDAPv3 compare in which the assertion is false.
|
*
|
* @throws Exception If an unexpectd problem occurs.
|
*/
|
@Test()
|
public void testSimpleLDAPv3CompareFalse()
|
throws Exception
|
{
|
TestCaseUtils.initializeTestBackend(true);
|
|
String[] args =
|
{
|
"-h", "127.0.0.1",
|
"-p", String.valueOf(TestCaseUtils.getServerLdapPort()),
|
"-V", "3",
|
"-D", "cn=Directory Manager",
|
"-w", "password",
|
"--noPropertiesFile",
|
"o:nottest",
|
"o=test"
|
};
|
|
assertEquals(LDAPCompare.mainCompare(args, false, null, System.err), 0);
|
}
|
|
|
|
/**
|
* Tests a simple compare using SSL with blind trust.
|
*
|
* @throws Exception If an unexpectd problem occurs.
|
*/
|
@Test()
|
public void testSSLBlindTrust()
|
throws Exception
|
{
|
TestCaseUtils.initializeTestBackend(true);
|
|
String[] args =
|
{
|
"-h", "127.0.0.1",
|
"-p", String.valueOf(TestCaseUtils.getServerLdapsPort()),
|
"-Z",
|
"-X",
|
"-D", "cn=Directory Manager",
|
"-w", "password",
|
"--noPropertiesFile",
|
"o:test",
|
"o=test"
|
};
|
|
assertEquals(LDAPCompare.mainCompare(args, false, null, System.err), 0);
|
}
|
|
|
|
/**
|
* Tests a simple compare using SSL with a trust store.
|
*
|
* @throws Exception If an unexpectd problem occurs.
|
*/
|
@Test()
|
public void testSSLTrustStore()
|
throws Exception
|
{
|
TestCaseUtils.initializeTestBackend(true);
|
|
String trustStorePath = DirectoryServer.getInstanceRoot() + File.separator +
|
"config" + File.separator + "client.truststore";
|
|
String[] args =
|
{
|
"-h", "127.0.0.1",
|
"-p", String.valueOf(TestCaseUtils.getServerLdapsPort()),
|
"-Z",
|
"-P", trustStorePath,
|
"-D", "cn=Directory Manager",
|
"-w", "password",
|
"--noPropertiesFile",
|
"o:test",
|
"o=test"
|
};
|
|
assertEquals(LDAPCompare.mainCompare(args, false, null, System.err), 0);
|
}
|
|
|
|
/**
|
* Tests a simple compare using StartTLS with blind trust.
|
*
|
* @throws Exception If an unexpectd problem occurs.
|
*/
|
@Test()
|
public void testStartTLSBlindTrust()
|
throws Exception
|
{
|
TestCaseUtils.initializeTestBackend(true);
|
|
String[] args =
|
{
|
"-h", "127.0.0.1",
|
"-p", String.valueOf(TestCaseUtils.getServerLdapPort()),
|
"-q",
|
"-X",
|
"-D", "cn=Directory Manager",
|
"-w", "password",
|
"--noPropertiesFile",
|
"o:test",
|
"o=test"
|
};
|
|
assertEquals(LDAPCompare.mainCompare(args, false, null, System.err), 0);
|
}
|
|
|
|
/**
|
* Tests a simple compare using StartTLS with a trust store.
|
*
|
* @throws Exception If an unexpectd problem occurs.
|
*/
|
@Test()
|
public void testStartTLSTrustStore()
|
throws Exception
|
{
|
TestCaseUtils.initializeTestBackend(true);
|
|
String trustStorePath = DirectoryServer.getInstanceRoot() + File.separator +
|
"config" + File.separator + "client.truststore";
|
|
String[] args =
|
{
|
"-h", "127.0.0.1",
|
"-p", String.valueOf(TestCaseUtils.getServerLdapPort()),
|
"-q",
|
"-P", trustStorePath,
|
"-D", "cn=Directory Manager",
|
"-w", "password",
|
"--noPropertiesFile",
|
"o:test",
|
"o=test"
|
};
|
|
assertEquals(LDAPCompare.mainCompare(args, false, null, System.err), 0);
|
}
|
|
|
|
/**
|
* Tests a simple LDAP compare over SSL using a trust store and SASL EXTERNAL
|
* authentication.
|
*
|
* @throws Exception If an unexpected problem occurs.
|
*/
|
@Test()
|
public void testSimpleCompareSSLTrustStoreSASLExternal()
|
throws Exception
|
{
|
TestCaseUtils.initializeTestBackend(true);
|
|
Entry e = TestCaseUtils.makeEntry(
|
"dn: cn=Test User,o=test",
|
"objectClass: top",
|
"objectClass: person",
|
"objectClass: organizationalPerson",
|
"objectClass: inetOrgPerson",
|
"cn: Test User",
|
"givenName: Test",
|
"ds-privilege-name: bypass-acl",
|
"sn: User");
|
|
InternalClientConnection conn =
|
InternalClientConnection.getRootConnection();
|
AddOperation addOperation =
|
conn.processAdd(e.getDN(), e.getObjectClasses(), e.getUserAttributes(),
|
e.getOperationalAttributes());
|
assertEquals(addOperation.getResultCode(), ResultCode.SUCCESS);
|
|
|
String keyStorePath = DirectoryServer.getInstanceRoot() + File.separator +
|
"config" + File.separator + "client.keystore";
|
String trustStorePath = DirectoryServer.getInstanceRoot() + File.separator +
|
"config" + File.separator + "client.truststore";
|
|
String[] args =
|
{
|
"-h", "127.0.0.1",
|
"-p", String.valueOf(TestCaseUtils.getServerLdapsPort()),
|
"-Z",
|
"-K", keyStorePath,
|
"-W", "password",
|
"-P", trustStorePath,
|
"--noPropertiesFile",
|
"-r",
|
"cn:Test User",
|
"cn=Test User,o=test"
|
};
|
|
assertEquals(LDAPCompare.mainCompare(args, false, null, System.err), 0);
|
}
|
|
|
|
/**
|
* Tests a simple LDAP compare over SSL using a trust store and SASL EXTERNAL
|
* authentication when explicitly specifying a valid client certificate.
|
*
|
* @throws Exception If an unexpected problem occurs.
|
*/
|
@Test()
|
public void testSimpleCompareSSLTrustStoreSASLExternalValidClientCert()
|
throws Exception
|
{
|
TestCaseUtils.initializeTestBackend(true);
|
|
Entry e = TestCaseUtils.makeEntry(
|
"dn: cn=Test User,o=test",
|
"objectClass: top",
|
"objectClass: person",
|
"objectClass: organizationalPerson",
|
"objectClass: inetOrgPerson",
|
"cn: Test User",
|
"givenName: Test",
|
"ds-privilege-name: bypass-acl",
|
"sn: User");
|
|
InternalClientConnection conn =
|
InternalClientConnection.getRootConnection();
|
AddOperation addOperation =
|
conn.processAdd(e.getDN(), e.getObjectClasses(), e.getUserAttributes(),
|
e.getOperationalAttributes());
|
assertEquals(addOperation.getResultCode(), ResultCode.SUCCESS);
|
|
|
String keyStorePath = DirectoryServer.getInstanceRoot() + File.separator +
|
"config" + File.separator + "client.keystore";
|
String trustStorePath = DirectoryServer.getInstanceRoot() + File.separator +
|
"config" + File.separator + "client.truststore";
|
|
String[] args =
|
{
|
"-h", "127.0.0.1",
|
"-p", String.valueOf(TestCaseUtils.getServerLdapsPort()),
|
"-Z",
|
"-K", keyStorePath,
|
"-W", "password",
|
"-N", "client-cert",
|
"-P", trustStorePath,
|
"--noPropertiesFile",
|
"-r",
|
"cn:Test User",
|
"cn=Test User,o=test"
|
};
|
|
assertEquals(LDAPCompare.mainCompare(args, false, null, System.err), 0);
|
}
|
|
|
|
/**
|
* Tests a simple LDAP compare over SSL using a trust store and SASL EXTERNAL
|
* authentication when explicitly specifying an invalid client certificate.
|
*
|
* @throws Exception If an unexpected problem occurs.
|
*/
|
@Test()
|
public void testSimpleCompareSSLTrustStoreSASLExternalInvalidClientCert()
|
throws Exception
|
{
|
TestCaseUtils.initializeTestBackend(true);
|
|
Entry e = TestCaseUtils.makeEntry(
|
"dn: cn=Test User,o=test",
|
"objectClass: top",
|
"objectClass: person",
|
"objectClass: organizationalPerson",
|
"objectClass: inetOrgPerson",
|
"cn: Test User",
|
"givenName: Test",
|
"ds-privilege-name: bypass-acl",
|
"sn: User");
|
|
InternalClientConnection conn =
|
InternalClientConnection.getRootConnection();
|
AddOperation addOperation =
|
conn.processAdd(e.getDN(), e.getObjectClasses(), e.getUserAttributes(),
|
e.getOperationalAttributes());
|
assertEquals(addOperation.getResultCode(), ResultCode.SUCCESS);
|
|
|
String keyStorePath = DirectoryServer.getInstanceRoot() + File.separator +
|
"config" + File.separator + "client.keystore";
|
String trustStorePath = DirectoryServer.getInstanceRoot() + File.separator +
|
"config" + File.separator + "client.truststore";
|
|
String[] args =
|
{
|
"-h", "127.0.0.1",
|
"-p", String.valueOf(TestCaseUtils.getServerLdapsPort()),
|
"-Z",
|
"-K", keyStorePath,
|
"-W", "password",
|
"-N", "invalid",
|
"-P", trustStorePath,
|
"--noPropertiesFile",
|
"-r",
|
"cn:Test User",
|
"cn=Test User,o=test"
|
};
|
|
assertFalse(LDAPCompare.mainCompare(args, false, null, null) == 0);
|
}
|
|
|
|
/**
|
* Tests a simple LDAP compare using StartTLS with a trust store and SASL
|
* EXTERNAL authentication.
|
*
|
* @throws Exception If an unexpected problem occurs.
|
*/
|
@Test()
|
public void testSimpleCompareStartTLSTrustStoreSASLExternal()
|
throws Exception
|
{
|
TestCaseUtils.initializeTestBackend(true);
|
|
Entry e = TestCaseUtils.makeEntry(
|
"dn: cn=Test User,o=test",
|
"objectClass: top",
|
"objectClass: person",
|
"objectClass: organizationalPerson",
|
"objectClass: inetOrgPerson",
|
"cn: Test User",
|
"givenName: Test",
|
"ds-privilege-name: bypass-acl",
|
"sn: User");
|
|
InternalClientConnection conn =
|
InternalClientConnection.getRootConnection();
|
AddOperation addOperation =
|
conn.processAdd(e.getDN(), e.getObjectClasses(), e.getUserAttributes(),
|
e.getOperationalAttributes());
|
assertEquals(addOperation.getResultCode(), ResultCode.SUCCESS);
|
|
|
String keyStorePath = DirectoryServer.getInstanceRoot() + File.separator +
|
"config" + File.separator + "client.keystore";
|
String trustStorePath = DirectoryServer.getInstanceRoot() + File.separator +
|
"config" + File.separator + "client.truststore";
|
|
String[] args =
|
{
|
"-h", "127.0.0.1",
|
"-p", String.valueOf(TestCaseUtils.getServerLdapPort()),
|
"-q",
|
"-K", keyStorePath,
|
"-W", "password",
|
"-P", trustStorePath,
|
"--noPropertiesFile",
|
"-r",
|
"cn:Test User",
|
"cn=Test User,o=test"
|
};
|
|
assertEquals(LDAPCompare.mainCompare(args, false, null, System.err), 0);
|
}
|
|
|
|
/**
|
* Tests a simple compare operation using CRAM-MD5 authentication.
|
*
|
* @throws Exception If an unexpected problem occurs.
|
*/
|
@Test()
|
public void testCRAMMD5()
|
throws Exception
|
{
|
TestCaseUtils.initializeTestBackend(true);
|
|
Entry e = TestCaseUtils.makeEntry(
|
"dn: uid=test.user,o=test",
|
"objectClass: top",
|
"objectClass: person",
|
"objectClass: organizationalPerson",
|
"objectClass: inetOrgPerson",
|
"uid: test.user",
|
"givenName: Test",
|
"sn: User",
|
"cn: Test User",
|
"ds-privilege-name: bypass-acl",
|
"userPassword: password",
|
"ds-pwp-password-policy-dn: cn=Clear UserPassword Policy," +
|
"cn=Password Policies,cn=config");
|
|
InternalClientConnection conn =
|
InternalClientConnection.getRootConnection();
|
AddOperation addOperation =
|
conn.processAdd(e.getDN(), e.getObjectClasses(), e.getUserAttributes(),
|
e.getOperationalAttributes());
|
assertEquals(addOperation.getResultCode(), ResultCode.SUCCESS);
|
|
|
String[] args =
|
{
|
"-h", "127.0.0.1",
|
"-p", String.valueOf(TestCaseUtils.getServerLdapPort()),
|
"-o", "mech=CRAM-MD5",
|
"-o", "authid=u:test.user",
|
"-w", "password",
|
"--noPropertiesFile",
|
"givenName:Test",
|
"uid=test.user,o=test"
|
};
|
|
assertEquals(LDAPCompare.mainCompare(args, false, null, System.err), 0);
|
}
|
|
|
|
/**
|
* Tests a simple compare operation using DIGEST-MD5 authentication.
|
*
|
* @throws Exception If an unexpected problem occurs.
|
*/
|
@Test()
|
public void testDigestMD5()
|
throws Exception
|
{
|
TestCaseUtils.initializeTestBackend(true);
|
|
Entry e = TestCaseUtils.makeEntry(
|
"dn: uid=test.user,o=test",
|
"objectClass: top",
|
"objectClass: person",
|
"objectClass: organizationalPerson",
|
"objectClass: inetOrgPerson",
|
"uid: test.user",
|
"givenName: Test",
|
"sn: User",
|
"cn: Test User",
|
"ds-privilege-name: bypass-acl",
|
"userPassword: password",
|
"ds-pwp-password-policy-dn: cn=Clear UserPassword Policy," +
|
"cn=Password Policies,cn=config");
|
|
InternalClientConnection conn =
|
InternalClientConnection.getRootConnection();
|
AddOperation addOperation =
|
conn.processAdd(e.getDN(), e.getObjectClasses(), e.getUserAttributes(),
|
e.getOperationalAttributes());
|
assertEquals(addOperation.getResultCode(), ResultCode.SUCCESS);
|
|
|
String[] args =
|
{
|
"-h", "127.0.0.1",
|
"-p", String.valueOf(TestCaseUtils.getServerLdapPort()),
|
"-o", "mech=DIGEST-MD5",
|
"-o", "authid=u:test.user",
|
"-o", "authzid=u:test.user",
|
"-o", "realm=o=test",
|
"-w", "password",
|
"--noPropertiesFile",
|
"givenName:Test",
|
"uid=test.user,o=test"
|
};
|
|
assertEquals(LDAPCompare.mainCompare(args, false, null, System.err), 0);
|
}
|
|
|
|
/**
|
* Tests a simple compare operation using PLAIN authentication.
|
*
|
* @throws Exception If an unexpected problem occurs.
|
*/
|
@Test()
|
public void testPLAIN()
|
throws Exception
|
{
|
TestCaseUtils.initializeTestBackend(true);
|
|
Entry e = TestCaseUtils.makeEntry(
|
"dn: uid=test.user,o=test",
|
"objectClass: top",
|
"objectClass: person",
|
"objectClass: organizationalPerson",
|
"objectClass: inetOrgPerson",
|
"uid: test.user",
|
"givenName: Test",
|
"sn: User",
|
"cn: Test User",
|
"userPassword: password");
|
|
InternalClientConnection conn =
|
InternalClientConnection.getRootConnection();
|
AddOperation addOperation =
|
conn.processAdd(e.getDN(), e.getObjectClasses(), e.getUserAttributes(),
|
e.getOperationalAttributes());
|
assertEquals(addOperation.getResultCode(), ResultCode.SUCCESS);
|
|
|
String[] args =
|
{
|
"-h", "127.0.0.1",
|
"-p", String.valueOf(TestCaseUtils.getServerLdapPort()),
|
"-o", "mech=PLAIN",
|
"-o", "authid=dn:cn=Directory Manager",
|
"-w", "password",
|
"--noPropertiesFile",
|
"givenName:Test",
|
"uid=test.user,o=test"
|
};
|
|
assertEquals(LDAPCompare.mainCompare(args, false, null, System.err), 0);
|
}
|
|
|
|
/**
|
* Tests a a comparison in which the assertion value is base64-encoded with a
|
* valid encoding.
|
*
|
* @throws Exception If an unexpectd problem occurs.
|
*/
|
@Test()
|
public void testCompareValidBase64Assertion()
|
throws Exception
|
{
|
TestCaseUtils.initializeTestBackend(true);
|
|
String[] args =
|
{
|
"-h", "127.0.0.1",
|
"-p", String.valueOf(TestCaseUtils.getServerLdapPort()),
|
"-V", "3",
|
"-D", "cn=Directory Manager",
|
"-w", "password",
|
"--noPropertiesFile",
|
"o::" + Base64.encode("test".getBytes("UTF-8")),
|
"o=test"
|
};
|
|
assertEquals(LDAPCompare.mainCompare(args, false, null, System.err), 0);
|
}
|
|
|
|
/**
|
* Tests a a comparison in which the assertion value should be base64-encoded
|
* but uses an incorrect encoding.
|
*
|
* @throws Exception If an unexpectd problem occurs.
|
*/
|
@Test()
|
public void testCompareInvalidBase64Assertion()
|
throws Exception
|
{
|
TestCaseUtils.initializeTestBackend(true);
|
|
String[] args =
|
{
|
"-h", "127.0.0.1",
|
"-p", String.valueOf(TestCaseUtils.getServerLdapPort()),
|
"-V", "3",
|
"-D", "cn=Directory Manager",
|
"-w", "password",
|
"--noPropertiesFile",
|
"o::***invalidencoding***",
|
"o=test"
|
};
|
|
assertFalse(LDAPCompare.mainCompare(args, false, null, null) == 0);
|
}
|
|
|
|
/**
|
* Tests a a comparison in which the assertion value is contained in a file.
|
*
|
* @throws Exception If an unexpectd problem occurs.
|
*/
|
@Test()
|
public void testCompareAssertionValueFromFile()
|
throws Exception
|
{
|
TestCaseUtils.initializeTestBackend(true);
|
|
File f = File.createTempFile("testCompareAssertionValueFromFile", ".txt");
|
f.deleteOnExit();
|
FileWriter w = new FileWriter(f);
|
w.write("test");
|
w.close();
|
|
String[] args =
|
{
|
"-h", "127.0.0.1",
|
"-p", String.valueOf(TestCaseUtils.getServerLdapPort()),
|
"-V", "3",
|
"-D", "cn=Directory Manager",
|
"-w", "password",
|
"--noPropertiesFile",
|
"o:<" + f.getAbsolutePath(),
|
"o=test"
|
};
|
|
assertEquals(LDAPCompare.mainCompare(args, false, null, System.err), 0);
|
}
|
|
|
|
/**
|
* Tests a a comparison in which the assertion value is contained in a file
|
* that does not exist.
|
*
|
* @throws Exception If an unexpectd problem occurs.
|
*/
|
@Test()
|
public void testCompareAssertionValueFromNonExistentFile()
|
throws Exception
|
{
|
String[] args =
|
{
|
"-h", "127.0.0.1",
|
"-p", String.valueOf(TestCaseUtils.getServerLdapPort()),
|
"-V", "3",
|
"-D", "cn=Directory Manager",
|
"-w", "password",
|
"--noPropertiesFile",
|
"o:<does.not.exist",
|
"o=test"
|
};
|
|
assertFalse(LDAPCompare.mainCompare(args, false, null, null) == 0);
|
}
|
|
|
|
/**
|
* Tests a a comparison using the LDAP assertion control in which the
|
* assertion is true.
|
*
|
* @throws Exception If an unexpectd problem occurs.
|
*/
|
@Test()
|
public void testCompareLDAPAssertionControlTrue()
|
throws Exception
|
{
|
TestCaseUtils.initializeTestBackend(true);
|
|
String[] args =
|
{
|
"-h", "127.0.0.1",
|
"-p", String.valueOf(TestCaseUtils.getServerLdapPort()),
|
"-V", "3",
|
"-D", "cn=Directory Manager",
|
"-w", "password",
|
"--assertionFilter", "(o=test)",
|
"--noPropertiesFile",
|
"o:test",
|
"o=test"
|
};
|
|
assertEquals(LDAPCompare.mainCompare(args, false, null, System.err), 0);
|
}
|
|
|
|
/**
|
* Tests a a comparison using the LDAP assertion control in which the
|
* assertion is not true.
|
*
|
* @throws Exception If an unexpectd problem occurs.
|
*/
|
@Test()
|
public void testCompareLDAPAssertionControlNotTrue()
|
throws Exception
|
{
|
TestCaseUtils.initializeTestBackend(true);
|
|
String[] args =
|
{
|
"-h", "127.0.0.1",
|
"-p", String.valueOf(TestCaseUtils.getServerLdapPort()),
|
"-V", "3",
|
"-D", "cn=Directory Manager",
|
"-w", "password",
|
"--assertionFilter", "(o=notAMatch)",
|
"--noPropertiesFile",
|
"o:test",
|
"o=test"
|
};
|
|
assertFalse(LDAPCompare.mainCompare(args, false, null, null) == 0);
|
}
|
|
|
|
/**
|
* Tests a a compare operation reading the DNs to compare from a file. Some
|
* of the compares will succeed and others will not.
|
*
|
* @throws Exception If an unexpectd problem occurs.
|
*/
|
@Test()
|
public void testCompareDNsFromFile()
|
throws Exception
|
{
|
TestCaseUtils.initializeTestBackend(true);
|
|
String path = TestCaseUtils.createTempFile(
|
"o=test",
|
"dc=example,dc=com",
|
"o=nonexistentsuffix",
|
"malformed",
|
"o=nonexistent,o=test");
|
|
String[] args =
|
{
|
"-h", "127.0.0.1",
|
"-p", String.valueOf(TestCaseUtils.getServerLdapPort()),
|
"-V", "3",
|
"-D", "cn=Directory Manager",
|
"-w", "password",
|
"-c",
|
"-f", path,
|
"--noPropertiesFile",
|
"o:test",
|
};
|
|
LDAPCompare.mainCompare(args, false, null, null);
|
}
|
|
|
|
/**
|
* Tests a a compare operation reading the DNs to compare from a file that
|
* doesn't exist.
|
*
|
* @throws Exception If an unexpectd problem occurs.
|
*/
|
@Test()
|
public void testCompareDNsFromNonExistentFile()
|
throws Exception
|
{
|
TestCaseUtils.initializeTestBackend(true);
|
|
String[] args =
|
{
|
"-h", "127.0.0.1",
|
"-p", String.valueOf(TestCaseUtils.getServerLdapPort()),
|
"-V", "3",
|
"-D", "cn=Directory Manager",
|
"-w", "password",
|
"-c",
|
"-f", "does.not.exist",
|
"--noPropertiesFile",
|
"o:test",
|
};
|
|
assertFalse(LDAPCompare.mainCompare(args, false, null, null) == 0);
|
}
|
|
|
|
/**
|
* Tests the LDAPCompare tool with the "--help" option.
|
*/
|
@Test()
|
public void testHelp()
|
{
|
String[] args = { "--help" };
|
assertEquals(LDAPCompare.mainCompare(args, false, null, null), 0);
|
|
args = new String[] { "-H" };
|
assertEquals(LDAPCompare.mainCompare(args, false, null, null), 0);
|
|
args = new String[] { "-?" };
|
assertEquals(LDAPCompare.mainCompare(args, false, null, null), 0);
|
}
|
}
|