16 Oct, 2006
5 commits
-
git-svn-id: https://svn.forgerock.org/opendj/trunk@586 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
git-svn-id: https://svn.forgerock.org/opendj/trunk@585 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
The test creates a number of modification on the LDAP server and checks that the correct number of modify Messages are received by another thread that has subscribed to the changelog service using the changelogbroker API. It is possible to use several threads to create the modifications. This test can take some time and is therefore tagegd as a slow test and will only be run when the testall ant target is invoked. git-svn-id: https://svn.forgerock.org/opendj/trunk@584 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
git-svn-id: https://svn.forgerock.org/opendj/trunk@583 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
…tests build environment properties git-svn-id: https://svn.forgerock.org/opendj/trunk@582 41b1ffd8-f28e-4786-ab96-9950f0a78031
15 Oct, 2006
1 commit
-
added code coverage for the integration tests added the ability to merge the code coverage results from unit tests and integration tests into a global report (in build/coverage/reports/global) added a dependency on package Adapated the unit tests form the main build.xml file to match the suite-specific coverage reports model git-svn-id: https://svn.forgerock.org/opendj/trunk@581 41b1ffd8-f28e-4786-ab96-9950f0a78031
14 Oct, 2006
1 commit
-
This is more in-line with the rest of the code conventions that we use, and it makes it easier to include the config package in what we consider to be our public API. OpenDS Issue Number: 805 git-svn-id: https://svn.forgerock.org/opendj/trunk@580 41b1ffd8-f28e-4786-ab96-9950f0a78031
13 Oct, 2006
12 commits
-
Test Name will now be prefaced with the Suite Name. Example: "Security: JKS: [test name]" Same for the messages that are generated. git-svn-id: https://svn.forgerock.org/opendj/trunk@579 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
… file called security.xml. Modified SSL and startTLS xml test cases to use these library files. git-svn-id: https://svn.forgerock.org/opendj/trunk@578 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
git-svn-id: https://svn.forgerock.org/opendj/trunk@577 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
git-svn-id: https://svn.forgerock.org/opendj/trunk@576 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
git-svn-id: https://svn.forgerock.org/opendj/trunk@575 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
git-svn-id: https://svn.forgerock.org/opendj/trunk@574 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
git-svn-id: https://svn.forgerock.org/opendj/trunk@573 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
git-svn-id: https://svn.forgerock.org/opendj/trunk@572 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
problem with the template file. A test case has also been provided to cover this condition. This fix and test case was contributed by Benjamin Damm (java.net username bdamm) of Brighton Consulting. OpenDS Issue Number: 616 git-svn-id: https://svn.forgerock.org/opendj/trunk@571 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
git-svn-id: https://svn.forgerock.org/opendj/trunk@570 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
git-svn-id: https://svn.forgerock.org/opendj/trunk@569 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
git-svn-id: https://svn.forgerock.org/opendj/trunk@568 41b1ffd8-f28e-4786-ab96-9950f0a78031
12 Oct, 2006
8 commits
-
… memory backend. There are now multiple test cases using the same JE backend, so add TestCaseUtils#clearJEBackend in those test cases to clear any existing data in the JE backend. git-svn-id: https://svn.forgerock.org/opendj/trunk@567 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
git-svn-id: https://svn.forgerock.org/opendj/trunk@566 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
git-svn-id: https://svn.forgerock.org/opendj/trunk@565 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
Issue 785: attribute options not returned by search of attribute types only Issue 786: SearchOperation#returnEntry does not always make a copy of the attributes I have added some new methods so that a common code path can be followed whether the search returns attribute values or not. Attribute: public Attribute duplicate(boolean omitValues) Entry: public List<Attribute> duplicateUserAttribute( AttributeType attributeType, Set<String> options, boolean omitValues) public List<Attribute> duplicateOperationalAttribute( AttributeType attributeType, Set<String> options, boolean omitValues) git-svn-id: https://svn.forgerock.org/opendj/trunk@564 41b1ffd8-f28e-4786-ab96-9950f0a78031 -
git-svn-id: https://svn.forgerock.org/opendj/trunk@563 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
attempting to terminate a client connection from within an operation plugin. The issue arose when the attempt to terminate the connection tried to cancel the operation that initiated the disconnect, which made it necessary to wait for a 5-second timeout before continuing. This solution also creates a new PluginOperation interface that is the superclass for the PreParseOperation, PreOperationOperation, PostOperationOperation, and PostResponseOperation interfaces. OpenDS Issue Number: 784 git-svn-id: https://svn.forgerock.org/opendj/trunk@562 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
Validator.ensureNotNull method for arguments that are not allowed to be null, and also update the javadoc for the corresponding @param tags to indicate this. Also, update the ModifyDNChangeRecordEntry class to rearrange the order of the constructor arguments to be more consistent with the rest of the codebase, as well as the standard definitions in LDAP and LDIF. Reviewed by davidely. git-svn-id: https://svn.forgerock.org/opendj/trunk@561 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
draft-joslin-config-schema. git-svn-id: https://svn.forgerock.org/opendj/trunk@560 41b1ffd8-f28e-4786-ab96-9950f0a78031
11 Oct, 2006
6 commits
-
git-svn-id: https://svn.forgerock.org/opendj/trunk@559 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
Removed file that should have been deleted and was not. git-svn-id: https://svn.forgerock.org/opendj/trunk@558 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
git-svn-id: https://svn.forgerock.org/opendj/trunk@557 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
git-svn-id: https://svn.forgerock.org/opendj/trunk@556 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
--This line, and th se below, will be ignored-- M UpdateMessage.java git-svn-id: https://svn.forgerock.org/opendj/trunk@555 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
- draft-ietf-sasl-rfc2831bis - draft-joslin-config-schema - draft-wahl-ldap-p3p git-svn-id: https://svn.forgerock.org/opendj/trunk@554 41b1ffd8-f28e-4786-ab96-9950f0a78031
10 Oct, 2006
6 commits
-
issue 776: Overflow of large values for time limit. issue 781: search result entries have their object class in the wrong field. Initial unit tests for SearchOperation. git-svn-id: https://svn.forgerock.org/opendj/trunk@553 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
git-svn-id: https://svn.forgerock.org/opendj/trunk@552 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
git-svn-id: https://svn.forgerock.org/opendj/trunk@551 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
instance for each of them that may be used if all processing completed successfully. Update all uses of the plugin result objects to use this SUCCESS instance where applicable. OpenDS Issue Number: 774 git-svn-id: https://svn.forgerock.org/opendj/trunk@550 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
when - replaying a modify operation on an entry that has already been deleted (778) - replaying a modify DN operation to rename an entry below a parent that does not exist anymore. (775) Fix the conflict resolution code in cases where it is necessary to generate a conflicting DN following a modify DN operation because the new DN has already been used by another added or renamed entry. (779) Fix a race condition in UpdateOperationTest that can make the test fail on some platforms Add some tests for modify DN naming conflicts reviewed by Daniel git-svn-id: https://svn.forgerock.org/opendj/trunk@549 41b1ffd8-f28e-4786-ab96-9950f0a78031
-
…anks to Neil and Andy for the reviews. git-svn-id: https://svn.forgerock.org/opendj/trunk@548 41b1ffd8-f28e-4786-ab96-9950f0a78031
09 Oct, 2006
1 commit
-
using the defined print stream for error messages. git-svn-id: https://svn.forgerock.org/opendj/trunk@547 41b1ffd8-f28e-4786-ab96-9950f0a78031