summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* QPID-616. Corrected pending message count and pending data size calculations ↵Rupert Smith2007-10-021-41/+58
| | | | | | for pubsub testing. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@581207 13f79535-47bb-0310-9956-ffa450edef68
* QPID-614 : Applied patch supplied by Aidan SkinnerRobert Godfrey2007-10-021-28/+51
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@581189 13f79535-47bb-0310-9956-ffa450edef68
* Updated poms to use 0.6-SNAPSHOT version of junit-toolkit and plugin ↵Rupert Smith2007-10-022-3/+3
| | | | | | consistently. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@581171 13f79535-47bb-0310-9956-ffa450edef68
* Added missing dependencies to makefile.Rupert Smith2007-10-011-1/+7
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@581002 13f79535-47bb-0310-9956-ffa450edef68
* QPID-611 QPID-620. DurableSubscriptionTest was failing due to a race ↵Martin Ritchie2007-10-016-31/+64
| | | | | | condition when using NO_ACK. This is due to the Queue Total Size being updated after the send, but after the send and NO_ACK the msg data is purged and so there is no size to retrieve. Changed all references to msg.dequeue to queue.dequeue where appropriate so we can use that single point in the future for updating the Queue Total Size. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@580993 13f79535-47bb-0310-9956-ffa450edef68
* QPID-595 CommitRollbackTest Patch provided by Aidan Skinner to address ↵Martin Ritchie2007-10-011-4/+3
| | | | | | intermittent test failure. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@580992 13f79535-47bb-0310-9956-ffa450edef68
* QPID-618, QPID-619, patch supplied by Aidan Skinner, test timeout increased.Rupert Smith2007-10-011-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@580985 13f79535-47bb-0310-9956-ffa450edef68
* Updated for changes to the junit-toolkit, new xml test listener moved into ↵Rupert Smith2007-09-281-102/+1
| | | | | | the toolkit. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@580351 13f79535-47bb-0310-9956-ffa450edef68
* QPID-611 : Queue Total size calculations can cause NPE on broker. Patch ↵Martin Ritchie2007-09-281-1/+1
| | | | | | supplied by Aidan Skinner git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@580265 13f79535-47bb-0310-9956-ffa450edef68
* QPID-597 : TopicSessionTest Failure, Patch supplied by Aidan Skinner.Martin Ritchie2007-09-281-8/+15
| | | | | | ResetMessageListenerTest.java was changing the prefetch method via a system property that propogated to all tests. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@580258 13f79535-47bb-0310-9956-ffa450edef68
* Interop test case 5 fix.Rupert Smith2007-09-273-3/+10
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@580081 13f79535-47bb-0310-9956-ffa450edef68
* Added test cases 4 and 5, from the updated interop spec.Rupert Smith2007-09-272-8/+41
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@580066 13f79535-47bb-0310-9956-ffa450edef68
* Added test cases 4 and 5, from the updated interop spec.Rupert Smith2007-09-275-4/+846
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@580061 13f79535-47bb-0310-9956-ffa450edef68
* Removed accidentally checked in .o file.Rupert Smith2007-09-271-0/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@580041 13f79535-47bb-0310-9956-ffa450edef68
* Added test cases 4 and 5, for message size tests.Rupert Smith2007-09-2711-24/+617
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@580040 13f79535-47bb-0310-9956-ffa450edef68
* QPID-596 : ConnectionStartTest was broken. I've fixed it but here is the ↵Martin Ritchie2007-09-271-19/+34
| | | | | | | | | | | | | | | | | | | | | | | problem for those like me that like to know why: Previously: The setUp method created a producer connection and then sent a message - This will result in that message being bounced as there is no consumer. The first test should fail but the test was wrong, which caused it to pass. There was an assert that was expecting the receive a message yet the test was recieve() == null !!!! The second test worked because the broker was not killed between tests This left the queue created so on the second run the message was delivered causing the test to succeed. Now: Fixed the InVM broker setup/teardown so the client is created first and the broker removed at the end of the test. Also updated the asserts to be more explicit rather than having the == null or !=null put that as assertNull/NotNull. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@580022 13f79535-47bb-0310-9956-ffa450edef68
* Update for three tests that don't remove their VMBrokerMartin Ritchie2007-09-263-0/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@579709 13f79535-47bb-0310-9956-ffa450edef68
* Added timeout to perftests, wait limit set to higher value to stop threads ↵Rupert Smith2007-09-261-2/+2
| | | | | | thashing. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@579614 13f79535-47bb-0310-9956-ffa450edef68
* Added timeout to perftests, to fail tests if message loss causes test to jam.Rupert Smith2007-09-261-21/+23
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@579602 13f79535-47bb-0310-9956-ffa450edef68
* Updated the version of slf4j-simple to be one that would work. Changing the ↵Martin Ritchie2007-09-261-1/+1
| | | | | | systests/pom.xml to depend on this rather than the slf4j-log4j will cause maven to provide more details in the tests. All info and above is logged. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@579578 13f79535-47bb-0310-9956-ffa450edef68
* Updated TransportConnection to synchronize around the creation/destruction ↵Martin Ritchie2007-09-262-65/+80
| | | | | | | | | | of VM Brokers. I had observed a ConcurrentModificationException in the KillAllVMBrokers(). This isn't good this suggests that the tests are overlapping. This fix won't address that problem but will stop any CModifications occuring. If there is test setup/teardown overlapping we should now see tests failing because the VM broker isn't there. Potentially addresses VM issues in QPID-596 git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@579577 13f79535-47bb-0310-9956-ffa450edef68
* QPID-610 : Fix for ManagementConcole NO_ACK & Msg Expire leaks. Updated ↵Martin Ritchie2007-09-266-57/+222
| | | | | | | | | | AMQQueueMBeanTest to verify the contents of the MessageStore after clearing. All the MC features only dequeued the message and didn't correctly decrementReference. The MessageReturnTest was failing due to the TimeToLive test causing messages to be left on the store. The expired messages were not having the reference decremented. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@579574 13f79535-47bb-0310-9956-ffa450edef68
* QPID-610 : Fix for Get NO_ACK leak. The Java Client doesn't use get so ↵Martin Ritchie2007-09-252-7/+49
| | | | | | | | | augmented the python test_get to send persistent messages and used debugger to verify that messages were correctly removed. Verified that prior to this commit they would remain in the store. We need a management exchange to fully validate this with a python tests. NOTE: The setting of "delivery mode" property on M2.1 is not the same as on trunk where _ is use such as "delivery_mode". There is also no error that you have sent an incorrect property. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@579229 13f79535-47bb-0310-9956-ffa450edef68
* Update to start M2.1 python test broker on port 2100 (management 2101) and ↵Martin Ritchie2007-09-254-5/+10
| | | | | | for the tests to use that broker. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@579198 13f79535-47bb-0310-9956-ffa450edef68
* QPID-610 : Fix for Returned Messages leak. Augmented ↵Martin Ritchie2007-09-253-2/+317
| | | | | | | | TestableMemoryMessageStore to allow it to query the MemoryMessageStore in use by the broker. New MessageReturnTest to verify no leak after messages have been returned. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@579147 13f79535-47bb-0310-9956-ffa450edef68
* QPID-604 Commited patch provided by Aidan Skinner, to prevent NPE in FieldTable.Martin Ritchie2007-09-251-1/+4
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@579115 13f79535-47bb-0310-9956-ffa450edef68
* QPID-612 : Use same scheme for every creation of temporary queue namesRobert Godfrey2007-09-244-134/+6
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@578845 13f79535-47bb-0310-9956-ffa450edef68
* Updated Example and management pom files to refer to M2.1 rather than M2Martin Ritchie2007-09-242-4/+4
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@578828 13f79535-47bb-0310-9956-ffa450edef68
* Merged revisions ↵Rupert Smith2007-09-244-64/+92
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 575663-575687,575689-576860,576862-577192,577194-577315,577317-577659,577661-578047,578049-578060,578062-578604 via svnmerge from https://svn.apache.org/repos/asf/incubator/qpid/branches/M2 ........ r575663 | rgodfrey | 2007-09-14 13:43:13 +0100 (Fri, 14 Sep 2007) | 1 line QPID-600 : Deadlock on connection.close ........ r577931 | rgreig | 2007-09-20 22:26:37 +0100 (Thu, 20 Sep 2007) | 1 line Adding timeouts to two wait() calls to prevent hanging ........ r578258 | rgreig | 2007-09-21 21:31:18 +0100 (Fri, 21 Sep 2007) | 1 line QPID-607: dispatcher threads now poll so that the can die when the connection is closed. ........ r578475 | rgreig | 2007-09-22 20:01:59 +0100 (Sat, 22 Sep 2007) | 1 line QPID-608 Fix the test by adding in creation of the VM broker ........ r578509 | rgreig | 2007-09-22 23:05:30 +0100 (Sat, 22 Sep 2007) | 1 line QPID-609 : dispatcher thread was being restarted by the code that closed the consumer due to the receipt of a basic.cancel frame. Move the dispatcher shutdown to the end of the consumer close process. Also rename the dispatcher _closed field since it clashes with a field in the container class. ........ r578604 | rgreig | 2007-09-23 22:29:33 +0100 (Sun, 23 Sep 2007) | 4 lines QPID-589: avoid the deadlock between the session close and the BasicCancelOkHandler by not sending a BasicCancel when the session is being closed. ........ git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@578745 13f79535-47bb-0310-9956-ffa450edef68
* Initialized merge tracking via "svnmerge" with revisions ↵Rupert Smith2007-09-240-0/+0
| | | | | | | | | "1-568187,574873,574876,575253,575688,576861,577193,577316,577660,578048,578061" from https://svn.apache.org/repos/asf/incubator/qpid/branches/M2 git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@578735 13f79535-47bb-0310-9956-ffa450edef68
* Removed change tracking, to re-init.Rupert Smith2007-09-240-0/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@578733 13f79535-47bb-0310-9956-ffa450edef68
* QPID-606: synchronize retrieval of application registry to avoid race ↵Robert Greig2007-09-211-17/+20
| | | | | | | | | conditions. This was particularly affecting systests which use the in-VM broker. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@578058 13f79535-47bb-0310-9956-ffa450edef68
* Attempt to fix hanging builds due to client testsRobert Greig2007-09-201-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@577941 13f79535-47bb-0310-9956-ffa450edef68
* Updated poms to refer to M2.1 rather than M2Robert Greig2007-09-2010-22/+22
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@577773 13f79535-47bb-0310-9956-ffa450edef68
* QPID-531 : NO_ACK fix. Added a decrementReference in SubscriptionImpl after ↵Martin Ritchie2007-09-142-1/+25
| | | | | | | | | the message has been sent. This was previously done inside dequeueMessage() but when the reference counting was reworked earlier in the year it was moved out of that method.. but all the uses of dequeueMessage were not evaluated. The existing AckTest didon't detect this error as it only occurs with persistent messages which the client sends by default. The AckTest however only tests transient messages. Updated Test for NO_ACK raised JIRA QPID-602 to cover updating the rest of the AckTests (Updated log to show correct JIRA QPID-531 not QPID-573) git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@575811 13f79535-47bb-0310-9956-ffa450edef68
* Merged revision 572751 from the trunk, this fixes QPID-573.Rafael H. Schloming2007-09-142-28/+37
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@575788 13f79535-47bb-0310-9956-ffa450edef68
* QPID-572 Corrected patch for ConcurrentSelectorDeliveryManager that resolves ↵Martin Ritchie2007-09-141-1/+1
| | | | | | the ordering problem. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@575738 13f79535-47bb-0310-9956-ffa450edef68
* QPID-572 Applied test patch supplied by Aidan Skinner along with change to ↵Martin Ritchie2007-09-122-1/+159
| | | | | | ConcurrentSelectorDeliveryManager that resolves the ordering problem. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@574902 13f79535-47bb-0310-9956-ffa450edef68
* Applied fix (submitted as patch to qpid-dev by Nuno Santos): include headers ↵Gordon Sim2007-09-121-0/+1
| | | | | | used in posix wrappers. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@574874 13f79535-47bb-0310-9956-ffa450edef68
* QPID-591 Fixed to use dirname and avoid working directory issues.Robert Greig2007-09-112-7/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@574585 13f79535-47bb-0310-9956-ffa450edef68
* QPID-590 : Provide test case and resolution to prevent deadlock occurring on ↵Martin Ritchie2007-09-113-277/+490
| | | | | | the client when two threads work on the AMQSession object. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@574555 13f79535-47bb-0310-9956-ffa450edef68
* QPID-582 Fixing build on Java 6Robert Greig2007-09-111-3/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@574504 13f79535-47bb-0310-9956-ffa450edef68
* QPID-584 : Client exceptions are now presented via any set Exception Listener Martin Ritchie2007-09-103-1/+20
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@574266 13f79535-47bb-0310-9956-ffa450edef68
* QPID-585 : Created a new StateManager for each subsequent ↵Martin Ritchie2007-09-102-1/+10
| | | | | | makeBrokerConnection call during the initial connection. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@574237 13f79535-47bb-0310-9956-ffa450edef68
* QPID-582 Fixing the scripts to run the old topic testRobert Greig2007-09-092-2/+22
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@574078 13f79535-47bb-0310-9956-ffa450edef68
* QPID-583 Added old topic test which had been removed in the past.Robert Greig2007-09-077-0/+787
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@573740 13f79535-47bb-0310-9956-ffa450edef68
* QPID-582 Fix for compilation issue under Java 6.Robert Greig2007-09-071-2/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@573737 13f79535-47bb-0310-9956-ffa450edef68
* Fixes for QPID-581 & QPID-563Gordon Sim2007-09-074-7/+4
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@573516 13f79535-47bb-0310-9956-ffa450edef68
* Renamed remotelyMartin Ritchie2007-09-070-0/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.1@573502 13f79535-47bb-0310-9956-ffa450edef68
* Merged changes to perftest code from M2 branch.Rupert Smith2007-08-239-582/+497
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/branches/M2.0.1@568924 13f79535-47bb-0310-9956-ffa450edef68