/*
|
* The contents of this file are subject to the terms of the Common Development and
|
* Distribution License (the License). You may not use this file except in compliance with the
|
* License.
|
*
|
* You can obtain a copy of the License at legal/CDDLv1.0.txt. See the License for the
|
* specific language governing permission and limitations under the License.
|
*
|
* When distributing Covered Software, include this CDDL Header Notice in each file and include
|
* the License file at legal/CDDLv1.0.txt. If applicable, add the following below the CDDL
|
* Header, with the fields enclosed by brackets [] replaced by your own identifying
|
* information: "Portions Copyright [year] [name of copyright owner]".
|
*
|
* Copyright 2006-2008 Sun Microsystems, Inc.
|
* Portions Copyright 2014-2015 ForgeRock AS.
|
*/
|
package org.opends.server.tools;
|
|
import java.io.File;
|
import java.io.FileWriter;
|
import java.util.ArrayList;
|
|
import org.opends.server.TestCaseUtils;
|
import org.opends.server.core.DirectoryServer;
|
import org.opends.server.protocols.ldap.LDAPResultCode;
|
import org.testng.annotations.BeforeClass;
|
import org.testng.annotations.DataProvider;
|
import org.testng.annotations.Test;
|
|
import static org.opends.server.util.ServerConstants.*;
|
import static org.testng.Assert.*;
|
|
/**
|
* A set of test cases for the LDAPDelete tool.
|
*/
|
public class LDAPDeleteTestCase
|
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 LDAPDelete tool.
|
*
|
* @return Sets of invalid arguments that may not be used to initialize the
|
* LDAPDelete tool.
|
*/
|
@DataProvider(name = "invalidArgs")
|
public Object[][] getInvalidArgumentLists()
|
{
|
ArrayList<String[]> argLists = new ArrayList<>();
|
ArrayList<String> reasonList = new ArrayList<>();
|
|
String[] 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[]
|
{
|
"-I"
|
};
|
argLists.add(args);
|
reasonList.add("Invalid short argument");
|
|
args = new String[]
|
{
|
"--invalidLongArgument"
|
};
|
argLists.add(args);
|
reasonList.add("Invalid long argument");
|
|
args = new String[]
|
{
|
"-D", "cn=Directory Manager",
|
"-j", "no.such.file",
|
"o=test"
|
};
|
argLists.add(args);
|
reasonList.add("Invalid bind password file path");
|
|
args = new String[]
|
{
|
"-D", "cn=Directory Manager",
|
"-w", "password",
|
"-j", validPasswordFile,
|
"o=test"
|
};
|
argLists.add(args);
|
reasonList.add("Both bind password and password file");
|
|
args = new String[]
|
{
|
"-V", "nonnumeric",
|
"o=test"
|
};
|
argLists.add(args);
|
reasonList.add("Non-numeric LDAP version");
|
|
args = new String[]
|
{
|
"-V", "1",
|
"o=test"
|
};
|
argLists.add(args);
|
reasonList.add("Invalid LDAP version");
|
|
args = new String[]
|
{
|
"-f", "no.such.file",
|
"o=test"
|
};
|
argLists.add(args);
|
reasonList.add("Invalid DN file path");
|
|
args = new String[]
|
{
|
"-J", "1.2.3.4:invalidcriticality",
|
"o=test"
|
};
|
argLists.add(args);
|
reasonList.add("Invalid control criticality");
|
|
args = new String[]
|
{
|
"-p", "nonnumeric",
|
"o=test"
|
};
|
argLists.add(args);
|
reasonList.add("Non-numeric port");
|
|
args = new String[]
|
{
|
"-p", "999999",
|
"o=test"
|
};
|
argLists.add(args);
|
reasonList.add("Port value out of range");
|
|
args = new String[]
|
{
|
"-r",
|
"-K", "key.store.file",
|
"o=test"
|
};
|
argLists.add(args);
|
reasonList.add("SASL external without SSL or StartTLS");
|
|
args = new String[]
|
{
|
"-Z",
|
"-r",
|
"o=test"
|
};
|
argLists.add(args);
|
reasonList.add("SASL external without keystore file");
|
|
|
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 LDAPDelete tool with sets of invalid arguments.
|
*
|
* @param args The set of arguments to use for the LDAPDelete tool.
|
* @param invalidReason The reason the provided set of arguments was
|
* invalid.
|
*/
|
@Test(dataProvider = "invalidArgs")
|
public void testInvalidArguments(String[] args, String invalidReason)
|
{
|
assertFalse(LDAPDelete.mainDelete(args, false, null, null) == 0,
|
"Should have been invalid because: " + invalidReason);
|
}
|
|
|
|
/**
|
* Tests a simple LDAPv2 delete.
|
*
|
* @throws Exception If an unexpectd problem occurs.
|
*/
|
@Test
|
public void testSimpleLDAPv2Delete()
|
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"
|
};
|
|
assertEquals(LDAPDelete.mainDelete(args, false, null, System.err), 0);
|
}
|
|
|
|
/**
|
* Tests a simple LDAPv3 delete.
|
*
|
* @throws Exception If an unexpectd problem occurs.
|
*/
|
@Test
|
public void testSimpleLDAPv3Delete()
|
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"
|
};
|
|
assertEquals(LDAPDelete.mainDelete(args, false, null, System.err), 0);
|
}
|
|
|
|
/**
|
* Tests the LDAPDelete tool using SSL with blind trust.
|
*
|
* @throws Exception If an unexpectd problem occurs.
|
*/
|
@Test
|
public void testDeleteSSLBlindTrust()
|
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"
|
};
|
|
assertEquals(LDAPDelete.mainDelete(args, false, null, System.err), 0);
|
}
|
|
|
|
/**
|
* Tests the LDAPDelete tool using SSL with a trust store.
|
*
|
* @throws Exception If an unexpectd problem occurs.
|
*/
|
@Test
|
public void testDeleteSSLTrustStore()
|
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"
|
};
|
|
assertEquals(LDAPDelete.mainDelete(args, false, null, System.err), 0);
|
}
|
|
|
|
/**
|
* Tests the LDAPDelete tool using StartTLS with blind trust.
|
*
|
* @throws Exception If an unexpectd problem occurs.
|
*/
|
@Test
|
public void testDeleteStartTLSBlindTrust()
|
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"
|
};
|
|
assertEquals(LDAPDelete.mainDelete(args, false, null, System.err), 0);
|
}
|
|
|
|
/**
|
* Tests the LDAPDelete tool using StartTLS with a trust store.
|
*
|
* @throws Exception If an unexpectd problem occurs.
|
*/
|
@Test
|
public void testDeleteStartTLSTrustStore()
|
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"
|
};
|
|
assertEquals(LDAPDelete.mainDelete(args, false, null, System.err), 0);
|
}
|
|
|
|
/**
|
* Tests the LDAPDelete tool using SASL PLAIN authentication.
|
*
|
* @throws Exception If an unexpectd problem occurs.
|
*/
|
@Test
|
public void testDeletePLAIN()
|
throws Exception
|
{
|
TestCaseUtils.initializeTestBackend(true);
|
|
String[] args =
|
{
|
"-h", "127.0.0.1",
|
"-p", String.valueOf(TestCaseUtils.getServerLdapPort()),
|
"-o", "mech=PLAIN",
|
"-o", "authid=dn:cn=Directory Manager",
|
"-w", "password",
|
"--noPropertiesFile",
|
"o=test"
|
};
|
|
assertEquals(LDAPDelete.mainDelete(args, false, null, System.err), 0);
|
}
|
|
|
|
/**
|
* Tests deleting an entry that doesn't exist.
|
*
|
* @throws Exception If an unexpectd problem occurs.
|
*/
|
@Test
|
public void testDeleteNonExistent()
|
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",
|
"cn=Does Not Exist,o=test"
|
};
|
|
assertFalse(LDAPDelete.mainDelete(args, false, null, null) == 0);
|
}
|
|
|
|
/**
|
* Tests deleting with a malformed DN.
|
*
|
* @throws Exception If an unexpectd problem occurs.
|
*/
|
@Test
|
public void testDeleteMalformedDN()
|
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",
|
"malformed"
|
};
|
|
assertFalse(LDAPDelete.mainDelete(args, false, null, null) == 0);
|
}
|
|
|
|
/**
|
* Tests deleting an entry with one or more children but not including the
|
* subtree delete control.
|
*
|
* @throws Exception If an unexpectd problem occurs.
|
*/
|
@Test
|
public void testDeleteParentNoSubtreeDeleteControl()
|
throws Exception
|
{
|
TestCaseUtils.initializeTestBackend(true);
|
TestCaseUtils.addEntry(
|
"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");
|
|
|
String[] args =
|
{
|
"-h", "127.0.0.1",
|
"-p", String.valueOf(TestCaseUtils.getServerLdapPort()),
|
"-V", "3",
|
"-D", "cn=Directory Manager",
|
"-w", "password",
|
"--noPropertiesFile",
|
"o=test"
|
};
|
|
assertFalse(LDAPDelete.mainDelete(args, false, null, null) == 0);
|
}
|
|
|
|
/**
|
* Tests the LDAPDelete tool reading a valid bind password from a file.
|
*
|
* @throws Exception If an unexpectd problem occurs.
|
*/
|
@Test
|
public void testDeleteValidPasswordFile()
|
throws Exception
|
{
|
TestCaseUtils.initializeTestBackend(true);
|
|
String[] args =
|
{
|
"-h", "127.0.0.1",
|
"-p", String.valueOf(TestCaseUtils.getServerLdapPort()),
|
"-D", "cn=Directory Manager",
|
"-j", validPasswordFile,
|
"--noPropertiesFile",
|
"o=test"
|
};
|
|
assertEquals(LDAPDelete.mainDelete(args, false, null, System.err), 0);
|
}
|
|
|
|
/**
|
* Tests the LDAPDelete tool reading an invalid bind password from a file.
|
*
|
* @throws Exception If an unexpectd problem occurs.
|
*/
|
@Test
|
public void testDeleteInvalidPasswordFile()
|
throws Exception
|
{
|
TestCaseUtils.initializeTestBackend(true);
|
|
String[] args =
|
{
|
"-h", "127.0.0.1",
|
"-p", String.valueOf(TestCaseUtils.getServerLdapPort()),
|
"-D", "cn=Directory Manager",
|
"-j", invalidPasswordFile,
|
"--noPropertiesFile",
|
"o=test"
|
};
|
|
assertFalse(LDAPDelete.mainDelete(args, false, null, null) == 0);
|
}
|
|
|
|
/**
|
* Tests the LDAPDelete tool reading the bind password from a nonexistent
|
* file.
|
*
|
* @throws Exception If an unexpectd problem occurs.
|
*/
|
@Test
|
public void testDeleteNonExistentPasswordFile()
|
throws Exception
|
{
|
TestCaseUtils.initializeTestBackend(true);
|
|
String[] args =
|
{
|
"-h", "127.0.0.1",
|
"-p", String.valueOf(TestCaseUtils.getServerLdapPort()),
|
"-D", "cn=Directory Manager",
|
"-j", "does.not.exist",
|
"--noPropertiesFile",
|
"o=test"
|
};
|
|
assertFalse(LDAPDelete.mainDelete(args, false, null, null) == 0);
|
}
|
|
|
|
/**
|
* Tests the LDAPDelete tool reading the DNs to delete from a file. Some of
|
* the deletes will succeed and some will fail.
|
*
|
* @throws Exception If an unexpectd problem occurs.
|
*/
|
@Test
|
public void testDeleteDNsFromFile()
|
throws Exception
|
{
|
TestCaseUtils.initializeTestBackend(true);
|
TestCaseUtils.addEntry(
|
"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");
|
|
|
String path = TestCaseUtils.createTempFile(
|
"o=test",
|
"uid=test.user,o=test",
|
"malformed",
|
"o=suffix does not exist",
|
"uid=entry does not exist,o=test",
|
"o=test");
|
|
|
String[] args =
|
{
|
"-h", "127.0.0.1",
|
"-p", String.valueOf(TestCaseUtils.getServerLdapPort()),
|
"-D", "cn=Directory Manager",
|
"-j", validPasswordFile,
|
"-c",
|
"-f", path,
|
"--noPropertiesFile"
|
};
|
|
LDAPDelete.mainDelete(args, false, null, null);
|
}
|
|
|
|
/**
|
* Tests a subtree delete operation.
|
*
|
* @throws Exception If an unexpected problem occurs.
|
*/
|
@Test
|
public void testSubtreeDelete()
|
throws Exception
|
{
|
TestCaseUtils.initializeTestBackend(true);
|
TestCaseUtils.addEntry(
|
"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");
|
|
|
String[] args =
|
{
|
"-h", "127.0.0.1",
|
"-p", String.valueOf(TestCaseUtils.getServerLdapPort()),
|
"-D", "cn=Directory Manager",
|
"-w", "password",
|
"-x",
|
"--noPropertiesFile",
|
"o=test"
|
};
|
|
assertEquals(LDAPDelete.mainDelete(args, false, null, System.err), 0);
|
}
|
|
|
|
/**
|
* Tests a subtree delete operation using an alternate name for the control.
|
*
|
* @throws Exception If an unexpectd problem occurs.
|
*/
|
@Test
|
public void testSubtreeDeleteAltName()
|
throws Exception
|
{
|
TestCaseUtils.initializeTestBackend(true);
|
TestCaseUtils.addEntry(
|
"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");
|
|
|
String[] args =
|
{
|
"-h", "127.0.0.1",
|
"-p", String.valueOf(TestCaseUtils.getServerLdapPort()),
|
"-D", "cn=Directory Manager",
|
"-w", "password",
|
"-J", "subtreedelete:true",
|
"--noPropertiesFile",
|
"o=test"
|
};
|
|
assertEquals(LDAPDelete.mainDelete(args, false, null, System.err), 0);
|
}
|
|
|
|
/**
|
* Tests a simple delete using the client-side no-op option.
|
*
|
* @throws Exception If an unexpectd problem occurs.
|
*/
|
@Test
|
public void testDeleteClientSideNoOp()
|
throws Exception
|
{
|
TestCaseUtils.initializeTestBackend(true);
|
|
String[] args =
|
{
|
"-h", "127.0.0.1",
|
"-p", String.valueOf(TestCaseUtils.getServerLdapPort()),
|
"-D", "cn=Directory Manager",
|
"-w", "password",
|
"-n",
|
"--noPropertiesFile",
|
"o=test"
|
};
|
|
assertEquals(LDAPDelete.mainDelete(args, false, null, System.err), 0);
|
}
|
|
|
|
/**
|
* Tests a simple delete using the server-side no-op control.
|
*
|
* @throws Exception If an unexpectd problem occurs.
|
*/
|
@Test
|
public void testDeleteServerSideNoOp()
|
throws Exception
|
{
|
TestCaseUtils.initializeTestBackend(true);
|
|
String[] args =
|
{
|
"-h", "127.0.0.1",
|
"-p", String.valueOf(TestCaseUtils.getServerLdapPort()),
|
"-D", "cn=Directory Manager",
|
"-w", "password",
|
"-J", OID_LDAP_NOOP_OPENLDAP_ASSIGNED + ":true",
|
"--noPropertiesFile",
|
"o=test"
|
};
|
|
assertEquals(LDAPDelete.mainDelete(args, false, null, System.err),
|
LDAPResultCode.NO_OPERATION);
|
}
|
|
|
|
/**
|
* Tests a simple delete using the server-side no-op control with an alternate
|
* name for the no-op control.
|
*
|
* @throws Exception If an unexpectd problem occurs.
|
*/
|
@Test
|
public void testDeleteServerSideNoOpAltName()
|
throws Exception
|
{
|
TestCaseUtils.initializeTestBackend(true);
|
|
String[] args =
|
{
|
"-h", "127.0.0.1",
|
"-p", String.valueOf(TestCaseUtils.getServerLdapPort()),
|
"-D", "cn=Directory Manager",
|
"-w", "password",
|
"-J", "no-op:true",
|
"--noPropertiesFile",
|
"o=test"
|
};
|
|
assertEquals(LDAPDelete.mainDelete(args, false, null, System.err),
|
LDAPResultCode.NO_OPERATION);
|
}
|
|
|
|
/**
|
* Tests the inclusion of multiple arbitrary controls in the request to the
|
* server.
|
*
|
* @throws Exception If an unexpectd problem occurs.
|
*/
|
@Test
|
public void testMultipleRequestControls()
|
throws Exception
|
{
|
TestCaseUtils.initializeTestBackend(true);
|
|
String[] args =
|
{
|
"-h", "127.0.0.1",
|
"-p", String.valueOf(TestCaseUtils.getServerLdapPort()),
|
"-D", "cn=Directory Manager",
|
"-w", "password",
|
"-J", OID_MANAGE_DSAIT_CONTROL + ":false",
|
"-J", OID_SUBTREE_DELETE_CONTROL + ":true",
|
"--noPropertiesFile",
|
"o=test"
|
};
|
|
assertEquals(LDAPDelete.mainDelete(args, false, null, System.err), 0);
|
}
|
|
|
|
/**
|
* Tests the LDAPDelete tool with the "--help" option.
|
*/
|
@Test
|
public void testHelp()
|
{
|
String[] args = { "--help" };
|
assertEquals(LDAPDelete.mainDelete(args, false, null, null), 0);
|
|
args = new String[] { "-H" };
|
assertEquals(LDAPDelete.mainDelete(args, false, null, null), 0);
|
|
args = new String[] { "-?" };
|
assertEquals(LDAPDelete.mainDelete(args, false, null, null), 0);
|
|
}
|
}
|