mirror of https://github.com/OpenIdentityPlatform/OpenDJ.git

lutoff
26.11.2007 c377ffd9f30b2ffbc21893230d824236ef518430
Fix for issue #1814 (dsservice with startTLS doesn't work)

StartTLS works on the ldap port (not the ldaps port)
See also commit rev #2182
1 files modified
8 ■■■■ changed files
opends/tests/unit-tests-testng/src/server/org/opends/server/admin/client/cli/DsserviceTestCase.java 8 ●●●● patch | view | raw | blame | history
opends/tests/unit-tests-testng/src/server/org/opends/server/admin/client/cli/DsserviceTestCase.java
@@ -263,13 +263,13 @@
  /**
   * Tests a list-groups using StartTLS with blind trust.
   */
  @Test(enabled=false)
  @Test()
  public void testListGroupsStartTLSBlindTrust()
  {
    String[] args =
    {
      "list-groups",
      "-p", String.valueOf(TestCaseUtils.getServerLdapsPort()),
      "-p", String.valueOf(TestCaseUtils.getServerLdapPort()),
      "-w", "password",
      "-q",
      "-X"
@@ -284,7 +284,7 @@
  /**
   * Tests a list-groups using StartTLS with a trust store.
   */
  @Test(enabled=false)
  @Test()
  public void testListGroupsStartTLSTrustStore()
  {
    String trustStorePath = DirectoryServer.getServerRoot() + File.separator +
@@ -293,7 +293,7 @@
    String[] args =
    {
      "list-groups",
      "-p", String.valueOf(TestCaseUtils.getServerLdapsPort()),
      "-p", String.valueOf(TestCaseUtils.getServerLdapPort()),
      "-w", "password",
      "-q",
      "-P", trustStorePath