summaryrefslogtreecommitdiff
path: root/qpid/extras/dispatch/tests
Commit message (Collapse)AuthorAgeFilesLines
* QPID-5257 - Removed dispatch code from its old locationTed Ross2013-10-2422-3473/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1535460 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5216 - Removed "area" from the configuration as it is not currently ↵Ted Ross2013-10-226-15/+10
| | | | | | implemented git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1534726 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5216 - Cleaned up the format of a router-id in the message annotations.Ted Ross2013-10-222-10/+35
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1534710 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5216Ted Ross2013-10-151-2/+2
| | | | | | | | | | | - Removed unneeded python router code - Added propagation of subscribed global addresses - Broke out address statistics to include to/from-container counts - Trace no longer optional, broke down and added loop prevention - Don't allow endpoint subscriptions to subscribe to local-class addresses git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1532528 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5216 - Fixed a bug in the composition of nested composite fields.Ted Ross2013-10-151-0/+100
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1532451 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5216Ted Ross2013-10-112-22/+15
| | | | | | | | - Fixed bug that blocked routing of messages inbound from a client link - Changed trace to accept any initial header value git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1531328 13f79535-47bb-0310-9956-ffa450edef68
* NO-JIRA - Added missing change from last commit.Ted Ross2013-10-101-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1531089 13f79535-47bb-0310-9956-ffa450edef68
* NO-JIRA - Moved the test configurations into topology-specific foldersTed Ross2013-10-107-0/+12
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1531088 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5221 - Added a configurable role for connections that constrains their use.Ted Ross2013-10-105-0/+7
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1531084 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5220 - Added configuration support for three operational modes of the ↵Ted Ross2013-10-095-0/+30
| | | | | | router. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1530798 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5216Ted Ross2013-10-093-0/+176
| | | | | | | | | - Fixed a number of issues found during a three-node test - Reduced the amount of log output at the DEBUG level - Added configuration files for the three-node test (linear A-B-C topology) git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1530631 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5216 - Fixed a couple of bugs in the bitmask module.Ted Ross2013-10-091-0/+33
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1530481 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5218 - Fixed crash caused by fanned-out non-presettled messages.Ted Ross2013-10-081-0/+59
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1530415 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5217 - Brought message and buffer create/destroy functions into ↵Ted Ross2013-10-081-9/+9
| | | | | | | | | compliance with the standard create and destroy convention. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1530376 13f79535-47bb-0310-9956-ffa450edef68
* QPID-4967 - work in progress on multi-router networksTed Ross2013-10-041-1/+93
| | | | | | | | | | - Added computation of valid origins for destinations - Modified the forwarding algorithm to ensure that only one copy of a message is sent on a given inter-router link - Added test coverage for valid origins git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1529242 13f79535-47bb-0310-9956-ffa450edef68
* QPID-4967 - Work in progress on multi-router networksTed Ross2013-10-045-60/+183
| | | | | | | | | | | | | | | | | - Added a feature to the hash table to allow referenced objects to hold a direct linkage back to the hash structure for fast deletion and access to the key. This allows the key to be stored in only one place and allows items to be removed without requiring a hash lookup on the key. - Completed the integration of the Python router and the C data structures that track remote routers (neighbor and multi-hop). - Allow multiple addresses in the ioAdapter from Python. - Added a separate address for the hello messages because the messaging pattern is different for these messages. - Added some content to the TODO file. - Added test configurations for a two-router network. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1529163 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5173Ted Ross2013-09-261-372/+524
| | | | | | | | | | | | | QPID-5045 QPID-5181 - Major refactor of the routing data structure in preparation for multi-router operation. - Fixed the CMake bug in QPID-5173 - Added Dynamic assignment of routable addresses for outbound links (QPID-5181) - Changed the indentation of the Python code from 2 spaces to 4 spaces. - Reduced the default log level to make the console less chatty. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1526694 13f79535-47bb-0310-9956-ffa450edef68
* NO-JIRA - Added tests for field composition, fixed exposed bug in nested ↵Ted Ross2013-09-063-0/+195
| | | | | | composites. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1520706 13f79535-47bb-0310-9956-ffa450edef68
* NO-JIRA - Added a new test for tracked-and-undeliverable messages.Ted Ross2013-09-061-4/+23
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1520587 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5068 - Beefed up the the annotation test and fixed an additional ↵Ted Ross2013-09-051-2/+61
| | | | | | exposed bug. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1520435 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5068 - Added a delivery-annotation test and fixed the exposed bug.Ted Ross2013-09-051-0/+53
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1520427 13f79535-47bb-0310-9956-ffa450edef68
* NO-JIRA - Updated for compatibility with changes in Proton 0.5Ted Ross2013-09-032-15/+14
| | | | | | | | - Proton Python interface was changed to make timeouts expressed as seconds (floating point). - Two references to the moved python modules were fixed. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1519811 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5045 - Added tests for message REJECT and for the three-ack delivery ↵Ted Ross2013-08-081-11/+83
| | | | | | pattern. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1511797 13f79535-47bb-0310-9956-ffa450edef68
* QPID-5045 - Added system tests for the routing scenarios, fixed discovered ↵Ted Ross2013-08-083-0/+250
| | | | | | defects. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1511737 13f79535-47bb-0310-9956-ffa450edef68
* QPID-4967 - Updates to the routerTed Ross2013-08-011-0/+7
| | | | | | | | - The router module now tracks other router nodes (neighbors and non-neighbors) - Tracked nodes are communicated to the router_node.c fast-path git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1509415 13f79535-47bb-0310-9956-ffa450edef68
* NO-JIRA - Fixed bug in parse-error handling.Ted Ross2013-07-151-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1503204 13f79535-47bb-0310-9956-ffa450edef68
* QPID-4968 - Added an IO adapter for python modules to send and receive messagesTed Ross2013-07-081-8/+1
| | | | | | | | | | QPID-4967 - Integrated the python router into the main program - Updated the log module: added the full complement of severity levels - Added stub versions of the dispatch python adapters so the python components can be tested in a standalone environment. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1500977 13f79535-47bb-0310-9956-ffa450edef68
* NO-JIRA - Updated printf format codes to be portable.Ted Ross2013-07-051-4/+5
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1500016 13f79535-47bb-0310-9956-ffa450edef68
* QPID-4974 - Additional tests added.Ted Ross2013-07-031-19/+108
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1499373 13f79535-47bb-0310-9956-ffa450edef68
* QPID-4974 - Added parsing tests (and fixes for bugs they found).Ted Ross2013-07-023-0/+79
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1499133 13f79535-47bb-0310-9956-ffa450edef68
* QPID-4967 - Added the Python routing engine and integrated its tests into ctestTed Ross2013-06-282-0/+411
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1497770 13f79535-47bb-0310-9956-ffa450edef68
* QPID_4913 - Work in progressTed Ross2013-06-114-6/+41
| | | | | | | | | | - Added configuration handling of listeners (basic, still needs ssl, sasl, etc.) - Updated the server tests to use the configuration file rather than hard-coded settings. - Fixed a bug in the CMake file regarding the use of the PYTHON include path. - Made changes to accomodate older compilers. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1491805 13f79535-47bb-0310-9956-ffa450edef68
* NO-JIRA - Fixed a defect introduced in the last commit.Ted Ross2013-05-311-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1488215 13f79535-47bb-0310-9956-ffa450edef68
* NO-JIRA - Replace use of "pipe2" with "pipe" because pipe2 is not available ↵Ted Ross2013-05-301-1/+11
| | | | | | on RHEL5. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1488018 13f79535-47bb-0310-9956-ffa450edef68
* NO_JIRA - Work-in-progress for Dispatch agent and field-accessTed Ross2013-05-201-0/+4
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1484572 13f79535-47bb-0310-9956-ffa450edef68
* NO-JIRA - Additional DevelopmentTed Ross2013-05-024-20/+88
| | | | | | | | | | - Added buffer of saved log messages for remote retrieval. - Added __FILE__ and __LINE__ annotations to logs. - Refactored dx_message_check() so it can be called multiple times with different depths. - Separated the buffer-size-specific tests into a separate unit test executable. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1478538 13f79535-47bb-0310-9956-ffa450edef68
* QPID-4788 - Fixed linked-list corruption when an immediate timer is ↵Ted Ross2013-04-292-0/+66
| | | | | | re-scheduled. Added test. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1477300 13f79535-47bb-0310-9956-ffa450edef68
* NO-JIRA - Development update to Dispatch RouterTed Ross2013-04-264-8/+160
| | | | | | | | | | | - Began refactoring of the routing table to support in-process destinations and multi-hop paths. - Added API for the internal management agent. Began integrating the agent with the router module for communication. - Added field parsing to handle topological addresses. - Added tests. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1476280 13f79535-47bb-0310-9956-ffa450edef68
* QPID-4612 - Major cleanup in the API.Ted Ross2013-03-072-50/+38
| | | | | | | | | Removed the singleton patterns. Added a single header file for all of Dispatch. Doxygen comments still need to be updated. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1453628 13f79535-47bb-0310-9956-ffa450edef68
* QPID-4614Ted Ross2013-03-013-14/+64
| | | | | | | | Added CTest hooks to the dispatch build. The unit tests are run with different buffer sizes (including one-octet buffers). git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1451444 13f79535-47bb-0310-9956-ffa450edef68
* QPID-4613 - Added field accessors for length and copied content to dx_message_t.Ted Ross2013-02-281-0/+10
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1451398 13f79535-47bb-0310-9956-ffa450edef68
* NO-JIRA - Added non-blocking server-start for when the application want to ↵Ted Ross2013-02-281-2/+15
| | | | | | | | | keep its own main thread. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1451069 13f79535-47bb-0310-9956-ffa450edef68
* QPID-4538 - Renamed Qpid Nexus to Qpid DispatchTed Ross2013-02-218-0/+1053
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1448649 13f79535-47bb-0310-9956-ffa450edef68