From f73b655466092169abac34833fb628fce1fcdebe Mon Sep 17 00:00:00 2001
From: jcduff <jcduff@localhost>
Date: Thu, 23 Oct 2008 14:04:24 +0000
Subject: [PATCH] The commit will bring the following features :     - An updated version of the underlying database. BDB JE 3.3 is now used.     - Attribute API refactoring providing a better abstraction and offering improved performances.     - A new GUI called the Control-Panel to replace the Status-Panel: the specifications for this       GUI are available on OpenDS Wiki and contains a link to a mockup.        See <https://www.opends.org/wiki/page/ControlPanelUISpecification>.     - Some changes in the replication protocol to implement "Assured Replication Mode". The        specifications are on OpenDS Wiki at <https://www.opends.org/wiki/page/AssuredMode> and section 7       described some of the replication changes required to support this. Assured Replication is not finished,       but the main replication protocol changes to support it are done. As explained by Gilles on an email on       the Dev mailing list (http://markmail.org/message/46rgo3meq3vriy4a), with these changes the newer versions       of OpenDS may not be able to replicate with OpenDS 1.0 instances.     - Support for Service Tags on the platforms where the functionality is available and enabled. Specifications       are published at <https://www.opends.org/wiki/page/OpenDSServiceTagEnabled>. For more information on       Service Tags see <http://wikis.sun.com/display/ServiceTag/Sun+Service+Tag+FAQ>.     - The Admin Connector service. In order to provide agentry of the OpenDS server at any time, a new service       has been added, dedicated to the administration, configuration and monitoring of the server.       An overview of the Admin Connector service and it's use is available on the       OpenDS wiki <https://www.opends.org/wiki/page/ManagingAdministrationTrafficToTheServer>     - Updates to the various command line tools to support the Admin Connector service.     - Some internal re-architecting of the server to put the foundation of future developments such as virtual       directory services. The new NetworkGroups and WorkFlow internal services which have been specified in       <https://www.opends.org/wiki/page/BasicOperationRoutingThroughNetworkGroup> are now implemented.     - Many bug fixes...

---
 opends/tests/staf-tests/functional-tests/testcases/backends/export.xml |  299 ++++++++++++++++++++++++++++++++---------------------------
 1 files changed, 161 insertions(+), 138 deletions(-)

diff --git a/opends/tests/staf-tests/functional-tests/testcases/backends/export.xml b/opends/tests/staf-tests/functional-tests/testcases/backends/export.xml
index d098fae..5476b12 100644
--- a/opends/tests/staf-tests/functional-tests/testcases/backends/export.xml
+++ b/opends/tests/staf-tests/functional-tests/testcases/backends/export.xml
@@ -62,18 +62,18 @@
           
           <script>
             DsInstancePort = int(DIRECTORY_INSTANCE_PORT)+1
-            DsInstanceSSLPort = int(DIRECTORY_INSTANCE_SSL_PORT)+1
+            DsInstanceAdminPort = int(DIRECTORY_INSTANCE_ADMIN_PORT)+1
             DsInstanceDir = '%s/server2' % DIRECTORY_INSTANCE_DIR
           </script>
           
           <call function="'createInstance'">
-            { 'dsHost'    : '%s' % DIRECTORY_INSTANCE_HOST,
-              'dsDir'     : DsInstanceDir,
-              'dsPort'    : DsInstancePort,
-              'dsSslPort' : DsInstanceSSLPort,
-              'dsBindDN'  : '%s' % DIRECTORY_INSTANCE_DN,
-              'dsBindPwd' : '%s' % DIRECTORY_INSTANCE_PSWD,
-              'dsBaseDN'  : '%s' % DIRECTORY_INSTANCE_SFX
+            { 'dsHost'      : '%s' % DIRECTORY_INSTANCE_HOST,
+              'dsDir'       : DsInstanceDir,
+              'dsPort'      : DsInstancePort,
+              'dsAdminPort' : DsInstanceAdminPort,
+              'dsBindDN'    : '%s' % DIRECTORY_INSTANCE_DN,
+              'dsBindPwd'   : '%s' % DIRECTORY_INSTANCE_PSWD,
+              'dsBaseDN'    : '%s' % DIRECTORY_INSTANCE_SFX
             }
           </call>
           
@@ -145,19 +145,20 @@
                 { 'expectedEntries' : ['uid=tmorris,ou=People,dc=example,dc=com',
                                        'uid=kvaughan,ou=People,dc=example,dc=com',
                                        'uid=kwinters,ou=People,dc=example,dc=com'],
-                  'dsPath'   : '%s/%s' % (DsInstanceDir, OPENDSNAME),
-                  'dsPort'   : DsInstancePort,
-                  'startDS'  : 'no'
+                  'dsPath'      : '%s/%s' % (DsInstanceDir, OPENDSNAME),
+                  'dsPort'      : DsInstancePort,
+                  'dsAdminPort' : DsInstanceAdminPort,
+                  'startDS'     : 'no'
                 }
               </call>
               
               <!-- StopDS -->
               <call function="'StopDsWithScript'">
-                { 'location'  : mylocation,
-                  'dsPath'    : '%s/%s' % (DsInstanceDir, OPENDSNAME),
-                  'dsPort'    : DsInstancePort,
-                  'dsBindDN'  : mydn,
-                  'dsBindPwd' : mypswd
+                { 'location'    : mylocation,
+                  'dsPath'      : '%s/%s' % (DsInstanceDir, OPENDSNAME),
+                  'dsAdminPort' : DsInstanceAdminPort,
+                  'dsBindDN'    : mydn,
+                  'dsBindPwd'   : mypswd
                 }
               </call>
               <call function="'testCase_Postamble'"/>
@@ -274,19 +275,20 @@
                 { 'expectedEntries' : ['uid=tmorris,ou=People,dc=example,dc=com',
                                        'uid=kvaughan,ou=People,dc=example,dc=com',
                                        'uid=kwinters,ou=People,dc=example,dc=com'],
-                  'dsPath'   : '%s/%s' % (DsInstanceDir, OPENDSNAME),
-                  'dsPort'   : DsInstancePort,
-                  'startDS'  : 'no'
+                  'dsPath'      : '%s/%s' % (DsInstanceDir, OPENDSNAME),
+                  'dsPort'      : DsInstancePort,
+                  'dsAdminPort' : DsInstanceAdminPort,
+                  'startDS'     : 'no'
                 }
               </call>
               
               <!-- StopDS -->
               <call function="'StopDsWithScript'">
-                { 'location'  : mylocation,
-                  'dsPath'    : '%s/%s' % (DsInstanceDir, OPENDSNAME),
-                  'dsPort'    : DsInstancePort,
-                  'dsBindDN'  : mydn,
-                  'dsBindPwd' : mypswd
+                { 'location'    : mylocation,
+                  'dsPath'      : '%s/%s' % (DsInstanceDir, OPENDSNAME),
+                  'dsAdminPort' : DsInstanceAdminPort,
+                  'dsBindDN'    : mydn,
+                  'dsBindPwd'   : mypswd
                 }
               </call>
               <call function="'testCase_Postamble'"/>
@@ -356,17 +358,18 @@
                                        'uid=kwinters,ou=People,dc=example,dc=com'],
                   'dsPath'          : '%s/%s' % (DsInstanceDir, OPENDSNAME),
                   'dsPort'          : DsInstancePort,
+                  'dsAdminPort'     : DsInstanceAdminPort,
                   'startDS'         : 'no'
                 }
               </call>
               
               <!-- StopDS -->
               <call function="'StopDsWithScript'">
-                { 'location'  : mylocation,
-                  'dsPath'    : '%s/%s' % (DsInstanceDir, OPENDSNAME),
-                  'dsPort'    : DsInstancePort,
-                  'dsBindDN'  : mydn,
-                  'dsBindPwd' : mypswd
+                { 'location'    : mylocation,
+                  'dsPath'      : '%s/%s' % (DsInstanceDir, OPENDSNAME),
+                  'dsAdminPort' : DsInstanceAdminPort,
+                  'dsBindDN'    : mydn,
+                  'dsBindPwd'   : mypswd
                 }
               </call>
               <call function="'testCase_Postamble'"/>
@@ -438,17 +441,18 @@
                   'expectedEntries' : ['dc=com'],
                   'dsPath'          : '%s/%s' % (DsInstanceDir, OPENDSNAME),
                   'dsPort'          : DsInstancePort,
+                  'dsAdminPort'     : DsInstanceAdminPort,
                   'startDS'         : 'no'
                 }
               </call>
               
               <!-- StopDS -->
               <call function="'StopDsWithScript'">
-                { 'location'  : mylocation,
-                  'dsPath'    : '%s/%s' % (DsInstanceDir, OPENDSNAME),
-                  'dsPort'    : DsInstancePort,
-                  'dsBindDN'  : mydn,
-                  'dsBindPwd' : mypswd
+                { 'location'    : mylocation,
+                  'dsPath'      : '%s/%s' % (DsInstanceDir, OPENDSNAME),
+                  'dsAdminPort' : DsInstanceAdminPort,
+                  'dsBindDN'    : mydn,
+                  'dsBindPwd'   : mypswd
                 }
               </call>
               <call function="'testCase_Postamble'"/>
@@ -520,17 +524,18 @@
                   'expectedEntries' : ['dc=com'],
                   'dsPath'          : '%s/%s' % (DsInstanceDir, OPENDSNAME),
                   'dsPort'          : DsInstancePort,
+                  'dsAdminPort'     : DsInstanceAdminPort,
                   'startDS'         : 'no'
                 }
               </call>
               
               <!-- StopDS -->
               <call function="'StopDsWithScript'">
-                { 'location'  : mylocation,
-                  'dsPath'    : '%s/%s' % (DsInstanceDir, OPENDSNAME),
-                  'dsPort'    : DsInstancePort,
-                  'dsBindDN'  : mydn,
-                  'dsBindPwd' : mypswd
+                { 'location'    : mylocation,
+                  'dsPath'      : '%s/%s' % (DsInstanceDir, OPENDSNAME),
+                  'dsAdminPort' : DsInstanceAdminPort,
+                  'dsBindDN'    : mydn,
+                  'dsBindPwd'   : mypswd
                 }
               </call>
               <call function="'testCase_Postamble'"/>
@@ -599,16 +604,17 @@
                   'expectedEntries' : ['dc=com','dc=example,dc=com'],
                   'dsPath'          : '%s/%s' % (DsInstanceDir, OPENDSNAME),
                   'dsPort'          : DsInstancePort,
+                  'dsAdminPort'     : DsInstanceAdminPort,
                   'startDS'         : 'no'}
               </call>
               
               <!-- StopDS -->
               <call function="'StopDsWithScript'">
-                { 'location'  : mylocation,
-                  'dsPath'    : '%s/%s' % (DsInstanceDir, OPENDSNAME),
-                  'dsPort'    : DsInstancePort,
-                  'dsBindDN'  : mydn,
-                  'dsBindPwd' : mypswd
+                { 'location'    : mylocation,
+                  'dsPath'      : '%s/%s' % (DsInstanceDir, OPENDSNAME),
+                  'dsAdminPort' : DsInstanceAdminPort,
+                  'dsBindDN'    : mydn,
+                  'dsBindPwd'   : mypswd
                 }
               </call>
               <call function="'testCase_Postamble'"/>
@@ -679,17 +685,18 @@
                   'missingEntries'  : ['ou=People,dc=example,dc=com'],
                   'dsPath'          : '%s/%s' % (DsInstanceDir, OPENDSNAME),
                   'dsPort'          : DsInstancePort,
+                  'dsAdminPort'     : DsInstanceAdminPort,
                   'startDS'         : 'no'
                 }
               </call>
               
               <!-- StopDS -->
               <call function="'StopDsWithScript'">
-                { 'location'  : mylocation,
-                  'dsPath'    : '%s/%s' % (DsInstanceDir, OPENDSNAME),
-                  'dsPort'    : DsInstancePort,
-                  'dsBindDN'  : mydn,
-                  'dsBindPwd' : mypswd
+                { 'location'    : mylocation,
+                  'dsPath'      : '%s/%s' % (DsInstanceDir, OPENDSNAME),
+                  'dsAdminPort' : DsInstanceAdminPort,
+                  'dsBindDN'    : mydn,
+                  'dsBindPwd'   : mypswd
                 }
               </call>
               <call function="'testCase_Postamble'"/>
@@ -761,17 +768,18 @@
                   'missingAttributes' : ['userpassword'],
                   'dsPath'            : '%s/%s' % (DsInstanceDir, OPENDSNAME),
                   'dsPort'            : DsInstancePort,
+                  'dsAdminPort'       : DsInstanceAdminPort,
                   'startDS'           : 'no'
                 }
               </call>
               
               <!-- StopDS -->
               <call function="'StopDsWithScript'">
-                { 'location'  : mylocation,
-                  'dsPath'    : '%s/%s' % (DsInstanceDir, OPENDSNAME),
-                  'dsPort'    : DsInstancePort,
-                  'dsBindDN'  : mydn,
-                  'dsBindPwd' : mypswd
+                { 'location'    : mylocation,
+                  'dsPath'      : '%s/%s' % (DsInstanceDir, OPENDSNAME),
+                  'dsAdminPort' : DsInstanceAdminPort,
+                  'dsBindDN'    : mydn,
+                  'dsBindPwd'   : mypswd
                 }
               </call>
               <call function="'testCase_Postamble'"/>
@@ -840,19 +848,20 @@
               <call function="'checkImport'">
                 { 'expectedEntries'   : ['uid=tmorris,ou=People,dc=example,dc=com'],
                   'missingAttributes' : ['userpassword'],
-                  'dsPath'   : '%s/%s' % (DsInstanceDir, OPENDSNAME),
-                  'dsPort'   : DsInstancePort,
-                  'startDS'  : 'no'
+                  'dsPath'      : '%s/%s' % (DsInstanceDir, OPENDSNAME),
+                  'dsPort'      : DsInstancePort,
+                  'dsAdminPort' : DsInstanceAdminPort,
+                  'startDS'     : 'no'
                 }
               </call>
               
               <!-- StopDS -->
               <call function="'StopDsWithScript'">
-                { 'location'  : mylocation,
-                  'dsPath'    : '%s/%s' % (DsInstanceDir, OPENDSNAME),
-                  'dsPort'    : DsInstancePort,
-                  'dsBindDN'  : mydn,
-                  'dsBindPwd' : mypswd
+                { 'location'    : mylocation,
+                  'dsPath'      : '%s/%s' % (DsInstanceDir, OPENDSNAME),
+                  'dsAdminPort' : DsInstanceAdminPort,
+                  'dsBindDN'    : mydn,
+                  'dsBindPwd'   : mypswd
                 }
               </call>
               <call function="'testCase_Postamble'"/>
@@ -925,17 +934,18 @@
                   'missingAttributes' : ['userpassword','mail','roomnumber'],
                   'dsPath'            : '%s/%s' % (DsInstanceDir, OPENDSNAME),
                   'dsPort'            : DsInstancePort,
+                  'dsAdminPort'       : DsInstanceAdminPort,
                   'startDS'           : 'no'
                 }
               </call>
               
               <!-- StopDS -->
               <call function="'StopDsWithScript'">
-                { 'location'  : mylocation,
-                  'dsPath'    : '%s/%s' % (DsInstanceDir, OPENDSNAME),
-                  'dsPort'    : DsInstancePort,
-                  'dsBindDN'  : mydn,
-                  'dsBindPwd' : mypswd
+                { 'location'    : mylocation,
+                  'dsPath'      : '%s/%s' % (DsInstanceDir, OPENDSNAME),
+                  'dsAdminPort' : DsInstanceAdminPort,
+                  'dsBindDN'    : mydn,
+                  'dsBindPwd'   : mypswd
                 }
               </call>
               <call function="'testCase_Postamble'"/>
@@ -1008,17 +1018,18 @@
                   'missingAttributes' : ['userpassword'],                     
                   'dsPath'            : '%s/%s' % (DsInstanceDir, OPENDSNAME),
                   'dsPort'            : DsInstancePort,
+                  'dsAdminPort'       : DsInstanceAdminPort,
                   'startDS'           : 'no'
                 }
               </call>
               
               <!-- StopDS -->
               <call function="'StopDsWithScript'">
-                { 'location'  : mylocation,
-                  'dsPath'    : '%s/%s' % (DsInstanceDir, OPENDSNAME),
-                  'dsPort'    : DsInstancePort,
-                  'dsBindDN'  : mydn,
-                  'dsBindPwd' : mypswd
+                { 'location'    : mylocation,
+                  'dsPath'      : '%s/%s' % (DsInstanceDir, OPENDSNAME),
+                  'dsAdminPort' : DsInstanceAdminPort,
+                  'dsBindDN'    : mydn,
+                  'dsBindPwd'   : mypswd
                 }
               </call>
               <call function="'testCase_Postamble'"/>
@@ -1090,17 +1101,18 @@
                                        'uid=kwinters,ou=People,dc=example,dc=com'],
                   'dsPath'          : '%s/%s' % (DsInstanceDir, OPENDSNAME),
                   'dsPort'          : DsInstancePort,
+                  'dsAdminPort'     : DsInstanceAdminPort,
                   'startDS'         : 'no'
                 }
               </call>
               
               <!-- StopDS -->
               <call function="'StopDsWithScript'">
-                { 'location'  : mylocation,
-                  'dsPath'    : '%s/%s' % (DsInstanceDir, OPENDSNAME),
-                  'dsPort'    : DsInstancePort,
-                  'dsBindDN'  : mydn,
-                  'dsBindPwd' : mypswd
+                { 'location'    : mylocation,
+                  'dsPath'      : '%s/%s' % (DsInstanceDir, OPENDSNAME),
+                  'dsAdminPort' : DsInstanceAdminPort,
+                  'dsBindDN'    : mydn,
+                  'dsBindPwd'   : mypswd
                 }
               </call>
               <call function="'testCase_Postamble'"/>
@@ -1173,16 +1185,17 @@
                                        'uid=rhunt,ou=People,dc=example,dc=com'],
                   'dsPath'          : '%s/%s' % (DsInstanceDir, OPENDSNAME),
                   'dsPort'          : DsInstancePort,
+                  'dsAdminPort'     : DsInstanceAdminPort,
                   'startDS'         : 'no'}
               </call>
               
               <!-- StopDS -->
               <call function="'StopDsWithScript'">
-                { 'location'  : mylocation,
-                  'dsPath'    : '%s/%s' % (DsInstanceDir, OPENDSNAME),
-                  'dsPort'    : DsInstancePort,
-                  'dsBindDN'  : mydn,
-                  'dsBindPwd' : mypswd
+                { 'location'    : mylocation,
+                  'dsPath'      : '%s/%s' % (DsInstanceDir, OPENDSNAME),
+                  'dsAdminPort' : DsInstanceAdminPort,
+                  'dsBindDN'    : mydn,
+                  'dsBindPwd'   : mypswd
                 }
               </call>
               <call function="'testCase_Postamble'"/>
@@ -1254,19 +1267,20 @@
                   'missingEntries'  : ['uid=scarter,ou=People,dc=example,dc=com',
                                        'uid=dmiller,ou=People,dc=example,dc=com',
                                        'uid=rhunt,ou=People,dc=example,dc=com'],
-                  'dsPath'   : '%s/%s' % (DsInstanceDir, OPENDSNAME),
-                  'dsPort'   : DsInstancePort,
-                  'startDS'  : 'no'
+                  'dsPath'      : '%s/%s' % (DsInstanceDir, OPENDSNAME),
+                  'dsPort'      : DsInstancePort,
+                  'dsAdminPort' : DsInstanceAdminPort,
+                  'startDS'     : 'no'
                 }
               </call>
               
               <!-- StopDS -->
               <call function="'StopDsWithScript'">
-                { 'location'  : mylocation,
-                  'dsPath'    : '%s/%s' % (DsInstanceDir, OPENDSNAME),
-                  'dsPort'    : DsInstancePort,
-                  'dsBindDN'  : mydn,
-                  'dsBindPwd' : mypswd
+                { 'location'    : mylocation,
+                  'dsPath'      : '%s/%s' % (DsInstanceDir, OPENDSNAME),
+                  'dsAdminPort' : DsInstanceAdminPort,
+                  'dsBindDN'    : mydn,
+                  'dsBindPwd'   : mypswd
                 }
               </call>
               <call function="'testCase_Postamble'"/>
@@ -1339,17 +1353,18 @@
                                        'uid=rhunt,ou=People,dc=example,dc=com'],
                   'dsPath'          : '%s/%s' % (DsInstanceDir, OPENDSNAME),
                   'dsPort'          : DsInstancePort,
+                  'dsAdminPort'     : DsInstanceAdminPort,
                   'startDS'         : 'no'
                 }
               </call>
               
               <!-- StopDS -->
               <call function="'StopDsWithScript'">
-                { 'location'  : mylocation,
-                  'dsPath'    : '%s/%s' % (DsInstanceDir, OPENDSNAME),
-                  'dsPort'    : DsInstancePort,
-                  'dsBindDN'  : mydn,
-                  'dsBindPwd' : mypswd
+                { 'location'    : mylocation,
+                  'dsPath'      : '%s/%s' % (DsInstanceDir, OPENDSNAME),
+                  'dsAdminPort' : DsInstanceAdminPort,
+                  'dsBindDN'    : mydn,
+                  'dsBindPwd'   : mypswd
                 }
               </call>
               <call function="'testCase_Postamble'"/>
@@ -1417,18 +1432,19 @@
                   'missingEntries'  : ['uid=scarter,ou=People,dc=example,dc=com',
                                        'uid=dmiller,ou=People,dc=example,dc=com',
                                        'uid=rhunt,ou=People,dc=example,dc=com'],
-                  'dsPath'   : '%s/%s' % (DsInstanceDir, OPENDSNAME),
-                  'dsPort'   : DsInstancePort,
-                  'startDS'  : 'no'}
+                  'dsPath'      : '%s/%s' % (DsInstanceDir, OPENDSNAME),
+                  'dsPort'      : DsInstancePort,
+                  'dsAdminPort' : DsInstanceAdminPort,
+                  'startDS'     : 'no'}
               </call>
               
               <!-- StopDS -->
               <call function="'StopDsWithScript'">
-                { 'location'  : mylocation,
-                  'dsPath'    : '%s/%s' % (DsInstanceDir, OPENDSNAME),
-                  'dsPort'    : DsInstancePort,
-                  'dsBindDN'  : mydn,
-                  'dsBindPwd' : mypswd}
+                { 'location'    : mylocation,
+                  'dsPath'      : '%s/%s' % (DsInstanceDir, OPENDSNAME),
+                  'dsAdminPort' : DsInstanceAdminPort,
+                  'dsBindDN'    : mydn,
+                  'dsBindPwd'   : mypswd}
               </call>
               <call function="'testCase_Postamble'"/>
             </sequence>
@@ -1497,17 +1513,18 @@
                                        'uid=kwinters,ou=People,dc=example,dc=com'],
                   'dsPath'          : '%s/%s' % (DsInstanceDir, OPENDSNAME),
                   'dsPort'          : DsInstancePort,
+                  'dsAdminPort'     : DsInstanceAdminPort,
                   'startDS'         : 'no'
                 }
               </call>
               
               <!-- StopDS -->
               <call function="'StopDsWithScript'">
-                { 'location'  : mylocation,
-                  'dsPath'    : '%s/%s' % (DsInstanceDir, OPENDSNAME),
-                  'dsPort'    : DsInstancePort,
-                  'dsBindDN'  : mydn,
-                  'dsBindPwd' : mypswd}
+                { 'location'    : mylocation,
+                  'dsPath'      : '%s/%s' % (DsInstanceDir, OPENDSNAME),
+                  'dsAdminPort' : DsInstanceAdminPort,
+                  'dsBindDN'    : mydn,
+                  'dsBindPwd'   : mypswd}
               </call>
               <call function="'testCase_Postamble'"/>
             </sequence>
@@ -1578,17 +1595,18 @@
                                        'uid=kwinters,ou=People,dc=example,dc=com'],
                   'dsPath'          : '%s/%s' % (DsInstanceDir, OPENDSNAME),
                   'dsPort'          : DsInstancePort,
+                  'dsAdminPort'     : DsInstanceAdminPort,
                   'startDS'         : 'no'
                 }
               </call>
               
               <!-- StopDS -->
               <call function="'StopDsWithScript'">
-                { 'location'  : mylocation,
-                  'dsPath'    : '%s/%s' % (DsInstanceDir, OPENDSNAME),
-                  'dsPort'    : DsInstancePort,
-                  'dsBindDN'  : mydn,
-                  'dsBindPwd' : mypswd
+                { 'location'    : mylocation,
+                  'dsPath'      : '%s/%s' % (DsInstanceDir, OPENDSNAME),
+                  'dsAdminPort' : DsInstanceAdminPort,
+                  'dsBindDN'    : mydn,
+                  'dsBindPwd'   : mypswd
                 }
               </call>
               <call function="'testCase_Postamble'"/>
@@ -1660,17 +1678,18 @@
                                        'uid=kwinters,ou=People,dc=example,dc=com'],
                   'dsPath'          : '%s/%s' % (DsInstanceDir, OPENDSNAME),
                   'dsPort'          : DsInstancePort,
+                  'dsAdminPort'     : DsInstanceAdminPort,
                   'startDS'         : 'no'
                 }
               </call>
               
               <!-- StopDS -->
               <call function="'StopDsWithScript'">
-                { 'location'  : mylocation,
-                  'dsPath'    : '%s/%s' % (DsInstanceDir, OPENDSNAME),
-                  'dsPort'    : DsInstancePort,
-                  'dsBindDN'  : mydn,
-                  'dsBindPwd' : mypswd
+                { 'location'    : mylocation,
+                  'dsPath'      : '%s/%s' % (DsInstanceDir, OPENDSNAME),
+                  'dsAdminPort' : DsInstanceAdminPort,
+                  'dsBindDN'    : mydn,
+                  'dsBindPwd'   : mypswd
                 }
               </call>
               <call function="'testCase_Postamble'"/>
@@ -1742,17 +1761,18 @@
                                        'uid=kwinters,ou=People,dc=example,dc=com'],
                   'dsPath'          : '%s/%s' % (DsInstanceDir, OPENDSNAME),
                   'dsPort'          : DsInstancePort,
+                  'dsAdminPort'     : DsInstanceAdminPort,
                   'startDS'         : 'no'
                 }
               </call>
               
               <!-- StopDS -->
               <call function="'StopDsWithScript'">
-                { 'location'  : mylocation,
-                  'dsPath'    : '%s/%s' % (DsInstanceDir, OPENDSNAME),
-                  'dsPort'    : DsInstancePort,
-                  'dsBindDN'  : mydn,
-                  'dsBindPwd' : mypswd
+                { 'location'    : mylocation,
+                  'dsPath'      : '%s/%s' % (DsInstanceDir, OPENDSNAME),
+                  'dsAdminPort' : DsInstanceAdminPort,
+                  'dsBindDN'    : mydn,
+                  'dsBindPwd'   : mypswd
                 }
               </call>
               
@@ -1824,17 +1844,18 @@
                                        'uid=kwinters,ou=People,dc=example,dc=com'],
                   'dsPath'          : '%s/%s' % (DsInstanceDir, OPENDSNAME),
                   'dsPort'          : DsInstancePort,
+                  'dsAdminPort'     : DsInstanceAdminPort,
                   'startDS'         : 'no'
                 }
               </call>
               
               <!-- StopDS -->
               <call function="'StopDsWithScript'">
-                { 'location'  : mylocation,
-                  'dsPath'    : '%s/%s' % (DsInstanceDir, OPENDSNAME),
-                  'dsPort'    : DsInstancePort,
-                  'dsBindDN'  : mydn,
-                  'dsBindPwd' : mypswd
+                { 'location'    : mylocation,
+                  'dsPath'      : '%s/%s' % (DsInstanceDir, OPENDSNAME),
+                  'dsAdminPort' : DsInstanceAdminPort,
+                  'dsBindDN'    : mydn,
+                  'dsBindPwd'   : mypswd
                 }
               </call>
               <call function="'testCase_Postamble'"/>
@@ -1901,16 +1922,17 @@
                                        'uid=kwinters,ou=People,dc=example,dc=com'],
                   'dsPath'          : '%s/%s' % (DsInstanceDir, OPENDSNAME),
                   'dsPort'          : DsInstancePort,
+                  'dsAdminPort'     : DsInstanceAdminPort,
                   'startDS'         : 'no'
                 }
               </call>
               <!-- StopDS -->
               <call function="'StopDsWithScript'">
-                { 'location'  : mylocation,
-                  'dsPath'    : '%s/%s' % (DsInstanceDir, OPENDSNAME),
-                  'dsPort'    : DsInstancePort,
-                  'dsBindDN'  : mydn,
-                  'dsBindPwd' : mypswd
+                { 'location'    : mylocation,
+                  'dsPath'      : '%s/%s' % (DsInstanceDir, OPENDSNAME),
+                  'dsAdminPort' : DsInstanceAdminPort,
+                  'dsBindDN'    : mydn,
+                  'dsBindPwd'   : mypswd
                 }
               </call>
               <call function="'testCase_Postamble'"/>
@@ -1987,16 +2009,17 @@
                                        'uid=kwinters,ou=People,dc=example,dc=com'],
                   'dsPath'          : '%s/%s' % (DsInstanceDir, OPENDSNAME),
                   'dsPort'          : DsInstancePort,
+                  'dsAdminPort'     : DsInstanceAdminPort,
                   'startDS'         : 'no'
                 }
               </call>
               <!-- StopDS -->
               <call function="'StopDsWithScript'">
-                { 'location'  : mylocation,
-                  'dsPath'    : '%s/%s' % (DsInstanceDir, OPENDSNAME),
-                  'dsPort'    : DsInstancePort,
-                  'dsBindDN'  : mydn,
-                  'dsBindPwd' : mypswd
+                { 'location'    : mylocation,
+                  'dsPath'      : '%s/%s' % (DsInstanceDir, OPENDSNAME),
+                  'dsAdminPort' : DsInstanceAdminPort,
+                  'dsBindDN'    : mydn,
+                  'dsBindPwd'   : mypswd
                 }
               </call>
               <call function="'testCase_Postamble'"/>

--
Gitblit v1.10.0