| | |
| | | <echo message=" definition is the same as the org.opends.server.debug.target.x" /> |
| | | <echo message=" property when starting OpenDS. " /> |
| | | <echo message=" Default debug target:"/> |
| | | <echo message=" org.opends.server:level=verbose,category=caught|data|database_access|message|protocol" /> |
| | | <echo message=" org.opends.server:level=warning,category=caught|data|database_access|message|protocol" /> |
| | | <echo message=""/> |
| | | <echo message=" -Dtest.packages=org.opends.server.api"/> |
| | | <echo message=" for example runs only the tests in the api package"/> |
| | |
| | | <!-- This sets org.opends.test.debug.target if and only if its's not |
| | | alreadly set. --> |
| | | <condition property="org.opends.test.debug.target" |
| | | value="org.opends.server:level=info,category=caught|data|database_access|message|protocol"> |
| | | value="org.opends.server:level=warning,category=caught|data|database_access|message|protocol"> |
| | | <not> |
| | | <isset property="org.opends.test.debug.target" /> |
| | | </not> |
| | |
| | | if (debugEnabled()) |
| | | { |
| | | debugInfo("DebugInfo" + message); |
| | | int msgID = MSGID_UNKNOWN_TYPE; |
| | | logError(ErrorLogCategory.SYNCHRONIZATION, |
| | | ErrorLogSeverity.NOTICE, |
| | | "ReplicationDomain/ " + message, msgID); |
| | | } |
| | | } |
| | | |
| | |
| | | ServerSocket socket = TestCaseUtils.bindFreePort(); |
| | | replServerPort = socket.getLocalPort(); |
| | | socket.close(); |
| | | |
| | | |
| | | // replication server |
| | | String replServerLdif = |
| | | "dn: cn=Replication Server, " + synchroPluginStringDN + "\n" |
| | |
| | | Entry resultEntry; |
| | | |
| | | // Check that the entry has been created in the directory server. |
| | | resultEntry = getEntry(personWithUUIDEntry.getDN(), 10000, true); |
| | | resultEntry = getEntry(personWithUUIDEntry.getDN(), 30000, true); |
| | | assertNotNull(resultEntry, |
| | | "The ADD replication message was not replayed"); |
| | | |