summaryrefslogtreecommitdiff
path: root/qpid/java/010ExcludeList
Commit message (Collapse)AuthorAgeFilesLines
* Merge from trunk tag to-cmake-25mar09 (r758432)Stephen D. Huston2009-03-251-0/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/branches/cmake@758465 13f79535-47bb-0310-9956-ffa450edef68
* Enable org.apache.qpid.test.unit.ack.AcknowledgeTest since this should (and ↵Aidan Skinner2009-02-121-1/+0
| | | | | | does) work with the 0-10 broker. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@743697 13f79535-47bb-0310-9956-ffa450edef68
* QPID-1573: Change AMQQueueDeferredOrderingTest, ↵Aidan Skinner2009-01-141-0/+4
| | | | | | | | | ReturnUnroutableMandatoryMessageTest, DispatcherTest, PriorityTest and TimeToLiveTest to extend QpidTestCase Add ReturnUnroutableMandatoryMessageTest, PriorityTest and TimeToLiveTest to the 010ExcludeList git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@734379 13f79535-47bb-0310-9956-ffa450edef68
* QPID-1339:Rafael H. Schloming2008-10-271-15/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Modified QpidTestCase to start/stop multiple brokers for failover testing. - Modified QpidTestCase to substitute port variables into broker start/stop commands. - Modified test profiles to use the new port variables. - Modified QpidTestCase to permit multiple exclude files. - Modified test profiles to make use of a common exclude list: ExcludeList - Added ConnectionTest.testResumeEmptyReplayBuffer. - Made default exception handling for Connection and Session log the exception. - Added SenderExcetion to specifically signal problems with transmitting connection data. - Modified Session to catch and deal with connection send failures for sessions with positive expiry. - Modified FailoverBaseCase to work for non VM brokers. - Made FailoverTest fail if failover times out. - Modified JMS implementation to make use of the recently added low level session resume. - Unexcluded failover tests from 0-10 test profiles. - Excluded MultipleJCAProviderRegistrationTest due to its testing strategy resulting in spurious failure when running as part of the larger test suite. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@708093 13f79535-47bb-0310-9956-ffa450edef68
* QPID-1119 : Exclude the Delay test from testing as until QPID-1262 is resolvedMartin Ritchie2008-09-021-0/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@691261 13f79535-47bb-0310-9956-ffa450edef68
* excluded more InVM tests from the cpp profilesRafael H. Schloming2008-08-291-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@690338 13f79535-47bb-0310-9956-ffa450edef68
* QPID-1119 : Excluded the InVM test from the external broker runs.Martin Ritchie2008-08-221-0/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@688117 13f79535-47bb-0310-9956-ffa450edef68
* QPID-1225 : Remove SimpleACLTest from the test runs as the issues has been ↵Martin Ritchie2008-08-211-0/+3
| | | | | | identified. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@687688 13f79535-47bb-0310-9956-ffa450edef68
* Turn off TopicSessionTest#testNonMatchingMessagesDoNotFillQueue since c++ ↵Aidan Skinner2008-07-311-1/+2
| | | | | | broker doesn't do server side selectors git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@681318 13f79535-47bb-0310-9956-ffa450edef68
* qpid-1157: added jms tck scripts + README file + config file for setting ↵Arnaud Simon2008-07-231-0/+3
| | | | | | email related properties git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@679105 13f79535-47bb-0310-9956-ffa450edef68
* Converted client.failover.FailoverTest so it can utilise the standard ↵Martin Ritchie2008-07-161-0/+1
| | | | | | mechanism for failover testing, as the local CruiseControl had testP2PFailoveWithMessagesLeft fail with extra messages being left on broker. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@677259 13f79535-47bb-0310-9956-ffa450edef68
* QPID-940,QPID-594,QPID-805,QPID-826 : Updated the client exception handling ↵Martin Ritchie2008-07-151-2/+2
| | | | | | | | | | | | | | | | | | | | | | so that exceptions are not lost. In performing the changes I noted that the AMQStateManager is only used for connection creation in the 08/09 codepath. Now this may be due to the fact that we don't currently need to wait on any other states. We need to improve our testing of error conditions for all protcol versions. Changes Summary: The MethodHandlers had their AMQStateManager parameters swapped for AMQSession as that is what they all cared about. The BlockingMethodFrameListener was used as a basis to create a generic BlockingWaiter which is now used by StateWaiter, There is probably scope to refactor the AMQStateManager and the parts of the AMQProtocolHandler that deal with the _frameListeners into a generic class but that can be looked at as part of a wider client refactor. Additionally tests were updated such as SimpleACLTest and ConnectionTest as they were expecting JMSExceptions from the constructor but the JMS API does not demand that and AMQExceptions are now correctly being thrown. The SimpleACLTest also required a change to AMQSession. The test calls send which will cause the connection to be closed asynchrously due to a permission violation. As this exception is not expected and is asynchorous to the client code it cannot be directly thrown. The solution is to record this exception in the AMQStateManager, it can tell that there are no waiters for the exception so it can record the value.(Potential exists to alert if the exception is overwritten but I don't think this is required right now) When the AMQSession checks that the connection is closed it is then possible to check if the current State is CLOSED and if we have an exception sitting in the AMQStateManager. If all these are true we can attach the AMQStateManager exception to the IllegalState Exception that is normally thrown when the Session is closed. This maintains JMS Compliance and allows us to discover the cause of the failure, SimpleACLTest was updated by removing the IllegalState catch section that was causing the test to silently fail. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@676978 13f79535-47bb-0310-9956-ffa450edef68
* Disable certain ConnectionTest tests since the 010 broker doesn't currently ↵Aidan Skinner2008-07-071-0/+3
| | | | | | implement that behaiour git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@674541 13f79535-47bb-0310-9956-ffa450edef68
* QPID-940 : Forgot to exclude the test from the test runMartin Ritchie2008-07-041-0/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@674097 13f79535-47bb-0310-9956-ffa450edef68
* QPID-1079: Remove all classes that were no longer referenced + updated ↵Arnaud Simon2008-07-041-0/+1
| | | | | | FlowControlTest for using QpidTestCase git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@674055 13f79535-47bb-0310-9956-ffa450edef68
* QPID-950 : Broker refactoring, copied / merged from branchRobert Godfrey2008-06-191-1/+5
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@669431 13f79535-47bb-0310-9956-ffa450edef68
* QPID-1094 and QPID-1095: Updated XaResource for handling wrong flag value, ↵Arnaud Simon2008-05-281-2/+2
| | | | | | updated xa tests for using correct flag values, excluded forget test as the current 0.10 broker does not implement forget. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@660973 13f79535-47bb-0310-9956-ffa450edef68
* QPID-1094: Implement XA resource exception handling and add corresponding testsArnaud Simon2008-05-281-1/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@660911 13f79535-47bb-0310-9956-ffa450edef68
* QPID-1079: Updated ...test.client tests for using QpidTestCase + move ↵Arnaud Simon2008-05-221-1/+15
| | | | | | QpidTestCase in main so it is visible form systests git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@659163 13f79535-47bb-0310-9956-ffa450edef68
* QPID-1079: Updated ...test.client tests for using QpidTestCaseArnaud Simon2008-05-221-0/+13
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@659083 13f79535-47bb-0310-9956-ffa450edef68
* fixed a typo in 010ExcludeListRafael H. Schloming2008-05-151-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@656690 13f79535-47bb-0310-9956-ffa450edef68
* QPID-1004: Disable this test as it is not finished and TTL is already testedArnaud Simon2008-05-081-2/+4
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@654457 13f79535-47bb-0310-9956-ffa450edef68
* Added the following tests to 0-10 exclude lists as these tests are for the ↵Rajith Muditha Attapattu2008-05-011-0/+3
| | | | | | | | | | | | | | java broker. However when the java broker gets to 0-10 we should also have exclude lists per broker as well. For the time being this is fine. org.apache.qpid.server.security.acl.SimpleACLTest org.apache.qpid.server.plugins.PluginTest git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@652411 13f79535-47bb-0310-9956-ffa450edef68
* QPID-884 Added cpp profile that does not use a store. Also updated profile ↵Arnaud Simon2008-04-171-2/+7
| | | | | | for taking auth into account and updated broker.clean as per QPID-904 git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@649099 13f79535-47bb-0310-9956-ffa450edef68
* QPID-796: Added ability to enable/disable message prefetching. Prefetching ↵Arnaud Simon2008-04-041-2/+3
| | | | | | is controlled through the property max_prefetch, it is turned off when max_prefetch =0. (this is 0.10 code path change) git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@644688 13f79535-47bb-0310-9956-ffa450edef68
* QPID-884 Updated ant for using a profile. I have created a default profile ↵Arnaud Simon2008-04-021-0/+9
that runs the tests against an 0.8 in VM broker and cpp-async and cpp-sync that respectively runs the test against an 0.10 cpp broker with async store and with sync store. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@643894 13f79535-47bb-0310-9956-ffa450edef68