You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by el...@apache.org on 2018/09/20 10:25:52 UTC

[directory-ldap-api] branch master updated: Added the endTransaction OSGi tests

This is an automated email from the ASF dual-hosted git repository.

elecharny pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/directory-ldap-api.git


The following commit(s) were added to refs/heads/master by this push:
     new 465e749  Added the endTransaction OSGi tests
465e749 is described below

commit 465e749b549e7fc8e0ca75c6cfdfa0be5c448a04
Author: Emmanuel Lécharny <el...@symas.com>
AuthorDate: Thu Sep 20 12:25:50 2018 +0200

    Added the endTransaction OSGi tests
---
 .../api/osgi/ApiLdapExtrasCodecApiOsgiTest.java      | 20 ++++++++++++--------
 1 file changed, 12 insertions(+), 8 deletions(-)

diff --git a/integ-osgi/src/test/java/org/apache/directory/api/osgi/ApiLdapExtrasCodecApiOsgiTest.java b/integ-osgi/src/test/java/org/apache/directory/api/osgi/ApiLdapExtrasCodecApiOsgiTest.java
index e0f7868..d7875ec 100644
--- a/integ-osgi/src/test/java/org/apache/directory/api/osgi/ApiLdapExtrasCodecApiOsgiTest.java
+++ b/integ-osgi/src/test/java/org/apache/directory/api/osgi/ApiLdapExtrasCodecApiOsgiTest.java
@@ -35,6 +35,8 @@ import org.apache.directory.api.ldap.extras.controls.syncrepl.syncState.SyncStat
 import org.apache.directory.api.ldap.extras.controls.vlv.VirtualListViewRequestImpl;
 import org.apache.directory.api.ldap.extras.controls.vlv.VirtualListViewResponseImpl
 ;
+import org.apache.directory.api.ldap.extras.extended.endTransaction.EndTransactionRequestImpl;
+import org.apache.directory.api.ldap.extras.extended.endTransaction.EndTransactionResponseImpl;
 import org.apache.directory.api.ldap.extras.extended.pwdModify.PasswordModifyRequestImpl;
 import org.apache.directory.api.ldap.extras.extended.pwdModify.PasswordModifyResponseImpl;
 import org.apache.directory.api.ldap.extras.extended.startTls.StartTlsRequestImpl;
@@ -61,24 +63,26 @@ public class ApiLdapExtrasCodecApiOsgiTest extends ApiOsgiTestBase
     {
         SynchronizationModeEnum.REFRESH_AND_PERSIST.getValue();
         new AdDirSyncImpl().getOid();
-        new AdShowDeletedImpl().getOid();
         new AdPolicyHintsImpl().getOid();
+        new AdShowDeletedImpl().getOid();
         new ChangeNotificationsImpl().getOid();
-        new PermissiveModifyImpl().getOid();
+        new EndTransactionRequestImpl();
+        new EndTransactionResponseImpl();
+        new PasswordModifyRequestImpl().getUserIdentity();
+        new PasswordModifyResponseImpl( 5 ).setResponseName( "foo" );
         new PasswordPolicyImpl().getOid();
         new PasswordPolicyResponseImpl().getGraceAuthNRemaining();
+        new PermissiveModifyImpl().getOid();
+        new StartTlsRequestImpl();
+        new StartTlsResponseImpl();
+        new StartTransactionRequestImpl();
+        new StartTransactionResponseImpl();
         new SyncDoneValueImpl().getOid();
         new SyncRequestValueImpl().getOid();
         new SyncStateValueImpl( true ).getCookie();
         new VirtualListViewRequestImpl().getOid();
         new VirtualListViewResponseImpl().getOid();
-        new PasswordModifyRequestImpl().getUserIdentity();
-        new PasswordModifyResponseImpl( 5 ).setResponseName( "foo" );
         new WhoAmIRequestImpl();
         new WhoAmIResponseImpl().setDn( new Dn( "uid=admin,ou=system" ) );
-        new StartTlsRequestImpl();
-        new StartTlsResponseImpl();
-        new StartTransactionRequestImpl();
-        new StartTransactionResponseImpl();
     }
 }