summaryrefslogtreecommitdiff
path: root/java/module.xml
Commit message (Collapse)AuthorAgeFilesLines
* QPID-2033 : Added destroy for broker process that fails to startup. Also ↵Martin Ritchie2009-08-071-0/+1
| | | | | | | | augmented QpidTestCase and build profiles to take a new broker.stopped search value. If this appears in the log output during the external broker startup and the broker does not report ready then the startup will report the line of text associated with the exception as part of the failure. Currently the stopped value is set to to 'Exception'. This means if an exception occurs during startup then test will give more detail about the cause of the failure. This is only monitored during the brokerStart() call and through the getStopLine() call on the Piper we can return the line of text that the Exception matched. Providing more details of why a broker failed to startup. This extra detail is currently added to the exception thrown when the broker fails to become ready. Added test.mport to profile for defaulting management port git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@802118 13f79535-47bb-0310-9956-ffa450edef68
* rationalized naming of exclude files to make it clear why tests are excluded ↵Rafael H. Schloming2009-07-271-2/+7
| | | | | | and where new exclusions should go; this also corrects the exclusion lists for some of the less common profiles since they now always include the 010Excludes which previously had to be manually copied to the other 010 profiles git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@798246 13f79535-47bb-0310-9956-ffa450edef68
* QPID-1986 : The modules lib variable no longer has lib prepended to them as ↵Martin Ritchie2009-07-221-1/+1
| | | | | | | | a result of the POM/library refactoring work Updated module.xml to copy the named libs to the {project}/lib dir. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@796652 13f79535-47bb-0310-9956-ffa450edef68
* added system properties for controlling the module locations used during ↵Rafael H. Schloming2009-07-171-12/+16
| | | | | | test runs; concat all the profile properties together before loading so that more can be shared between profiles; added an @SSL_PORT to the substitutions done by QpidTestCase git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@795056 13f79535-47bb-0310-9956-ffa450edef68
* added support for profile inheritence and refactored profiles to permit ↵Rafael H. Schloming2009-07-141-0/+3
| | | | | | convenient overriding of broker location and additional broker arguments git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@794037 13f79535-47bb-0310-9956-ffa450edef68
* more ant 1.6.5 workaroundsRafael H. Schloming2009-07-131-4/+4
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@793631 13f79535-47bb-0310-9956-ffa450edef68
* QPID-1927: move mbean interfaces to management-common, make broker module ↵Robert Gemmell2009-07-111-0/+3
| | | | | | | | | depend on management-common, modify build system to copy management-common.jar when required (eg for binary releases). QPID-1928: remove unused AMQException throws clause and import from ManagedQueue,UserManagement. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@793206 13f79535-47bb-0310-9956-ffa450edef68
* QPID-1797: update bundle version format and output filenames, modify ant ↵Robert Gemmell2009-07-111-4/+7
| | | | | | | | | bundle task only to run for required modules git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@793184 13f79535-47bb-0310-9956-ffa450edef68
* refrain from using anything other than filesets inside copy, this makes the ↵Rafael H. Schloming2009-07-091-6/+2
| | | | | | build backwards compatible to pre 1.7 versions of ant git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@792650 13f79535-47bb-0310-9956-ffa450edef68
* moved test profiles and related resources into test-profiles subdirectoryRafael H. Schloming2009-07-081-3/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@792157 13f79535-47bb-0310-9956-ffa450edef68
* added script for generating maven poms and moved disposable build output ↵Rafael H. Schloming2009-07-081-14/+37
| | | | | | underneath build/scratch git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@792094 13f79535-47bb-0310-9956-ffa450edef68
* Put the default test profile back to using MemoryMessageStore for now, add ↵Aidan Skinner2009-06-261-0/+1
| | | | | | java-derby and config-systests-derby.xml for testing purpouses. Allow the config file to be specified in the test profile, default to config-systests.xml. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@788680 13f79535-47bb-0310-9956-ffa450edef68
* made test ports configurable; this required adding variable expansion to ↵Rafael H. Schloming2009-06-181-2/+3
| | | | | | PropertiesFileInitialContextFactory git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@786269 13f79535-47bb-0310-9956-ffa450edef68
* moved the initial context factory define into the profile definitionRafael H. Schloming2009-06-091-2/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@783090 13f79535-47bb-0310-9956-ffa450edef68
* QPID-1817 : Update to QpidTestCase to use setUp to start the broker this ↵Martin Ritchie2009-04-161-0/+1
| | | | | | | | allows tests to update the _configFile that is being used before the broker is started. By default the etc/config-systests.xml is used. This differs from the stock config.xml only in that it disables the Managment JMX interface by default. If a test requires this functionality it can provided an edited configuration. An example of how that might be done can be seen in SyncWaitDelayTest and will additionally be provided for QPID-1813. A couple of tests were modified to remove their setUp/tearDown where the code did no additional work. This made the tests cleaner. Additionally FrameworkBaseCase never actually called super.setUp() so that was fixed. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@765602 13f79535-47bb-0310-9956-ffa450edef68
* This is related to QPID-1572.Rajith Muditha Attapattu2009-01-131-0/+3
| | | | | | | The SSL test profile runs the java client against the C++ broker using SSL connections git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@734166 13f79535-47bb-0310-9956-ffa450edef68
* Only define cobertura task definition when it's about to get used.Aidan Skinner2009-01-071-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@732390 13f79535-47bb-0310-9956-ffa450edef68
* QPID-1557: fixed the cpp.cluster test profileRafael H. Schloming2009-01-061-0/+3
| | | | | | | | | | | | | | | | | | | | | | - pulled out the XA excludes into a separate excludes file - made the cluster profile exclude the XA tests - made the build system automatically set all system properties that start with profile - added a profile.clustered property that defaults to false - made the cpp.cluster test profile set the profile.clustered property to true - modified the failover tests to exclude some erroneous asserts if the broker is clustered - modified the java client to not advertize a non-zero timeout git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@731810 13f79535-47bb-0310-9956-ffa450edef68
* QPID-1282: move dependency on build target up a few levelsAidan Skinner2008-12-121-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@726010 13f79535-47bb-0310-9956-ffa450edef68
* QPID-1282: add build dep on instrument target for coverage reportsAidan Skinner2008-12-121-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@725982 13f79535-47bb-0310-9956-ffa450edef68
* removed incubating from various shell scripts, release artifacts, and READMEsRafael H. Schloming2008-12-101-1/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@724948 13f79535-47bb-0310-9956-ffa450edef68
* QPID-1243 : Applied patch from Robert Gemmell. Took a different approach ↵Martin Ritchie2008-11-261-7/+7
| | | | | | for the linux binaries as the provided binaries requried a newer libc than I have. Also restored the qpidversion.properties file generation for this module that git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@720931 13f79535-47bb-0310-9956-ffa450edef68
* QPID-1439 : Revert change but add ability to track what test started the ↵Martin Ritchie2008-11-071-2/+0
| | | | | | broker to aid in problem diagnosis git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@712206 13f79535-47bb-0310-9956-ffa450edef68
* QPID-1439 : Updates to ensure we maintain the log files from each external ↵Martin Ritchie2008-11-071-0/+2
| | | | | | Java broker test run. The C++ log directory could do with a similar setup change. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@712110 13f79535-47bb-0310-9956-ffa450edef68
* QPID-1401: added qman servlet + updated build script for building the servlet.Arnaud Simon2008-10-281-1/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@708563 13f79535-47bb-0310-9956-ffa450edef68
* QPID-1398: use bnd tool to produce osgi bundles with 'ant bundle'Aidan Skinner2008-10-241-0/+12
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@707654 13f79535-47bb-0310-9956-ffa450edef68
* QPID-1342: fixed qpid-cli build and shell scripts; tests still don't run ↵Rafael H. Schloming2008-10-091-1/+1
| | | | | | properly by default since the expect the java broker to be running git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@703262 13f79535-47bb-0310-9956-ffa450edef68
* QPID-1282: Add targets for cobertura coverage reporting.Aidan Skinner2008-09-121-1/+74
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@694671 13f79535-47bb-0310-9956-ffa450edef68
* QPID-1257 : Add new build target 'release-bin' that will generate a broker ↵Martin Ritchie2008-09-051-0/+139
| | | | | | and client package. Documenation will be added to the wiki such that performance tests could also be packaged. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@692461 13f79535-47bb-0310-9956-ffa450edef68
* QPID-1258: Remove crufty duplicates of DISCLAIMER, LICENSE, NOTICE and ↵Aidan Skinner2008-08-221-1/+3
| | | | | | README. Update RELEASE_NOTES.txt. Ensure legal files are included in the jar and archives. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@688088 13f79535-47bb-0310-9956-ffa450edef68
* Update QpidTestCase to add /bin to the path for the external brokerMartin Ritchie2008-07-301-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@680942 13f79535-47bb-0310-9956-ffa450edef68
* QPID-1185: replaced occurrances of with , also made default.testprofile ↵Rafael H. Schloming2008-07-201-0/+1
| | | | | | always load so that all other testprofiles only need to override values that are different git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@678260 13f79535-47bb-0310-9956-ffa450edef68
* QPID-1184: redirect stdout and stderr from QpidTestCaseRafael H. Schloming2008-07-191-0/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@678211 13f79535-47bb-0310-9956-ffa450edef68
* Update to the logging to ensure QpidTestCase is always logged and ↵Martin Ritchie2008-07-161-0/+2
| | | | | | standardized the protocol output format between 0-8/0-9 and 0-10 git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@677319 13f79535-47bb-0310-9956-ffa450edef68
* QPID-1176 : Updated Tasks and gentools build to use the java.source and ↵Martin Ritchie2008-07-151-2/+9
| | | | | | java.target values. Added echo statements to show the targeted build Updated other info echo statements to be an info level so they will not print with -q. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@676884 13f79535-47bb-0310-9956-ffa450edef68
* QPID-965: made the ant build report the cummulative success/failure of the ↵Rafael H. Schloming2008-05-141-4/+24
| | | | | | test suite git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@656357 13f79535-47bb-0310-9956-ffa450edef68
* QPID-1053: updated QpidTestCase to check against broker output to ensure the ↵Rafael H. Schloming2008-05-131-0/+1
| | | | | | broker is actually listening before the test attempts to connect; the text checked for is controlled by the broker.ready system property, appropriate values have been added to the cpp profiles git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@655927 13f79535-47bb-0310-9956-ffa450edef68
* QPID-1037: Added module name prop and an exclude.modules prop + switch ↵Arnaud Simon2008-05-081-1/+6
| | | | | | systests off in cpp profiles. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@654505 13f79535-47bb-0310-9956-ffa450edef68
* QPID-1021 : Update to build system to store and clean test results per ↵Martin Ritchie2008-05-051-1/+1
| | | | | | | | module.name. Sorry errant } broke everything. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@653439 13f79535-47bb-0310-9956-ffa450edef68
* QPID-1021 : Update to build system to store and clean test results per ↵Martin Ritchie2008-05-051-1/+3
| | | | | | module.name. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@653434 13f79535-47bb-0310-9956-ffa450edef68
* QPID-998 : prevented warning about missing bin/etc directories in modules ↵Martin Ritchie2008-05-051-4/+12
| | | | | | that don't have bin or etc. git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@653427 13f79535-47bb-0310-9956-ffa450edef68
* QPID-1003: added excludes for framework test classesRafael H. Schloming2008-05-011-9/+11
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@652705 13f79535-47bb-0310-9956-ffa450edef68
* QPID-993: added an osgi manifest to broker-plugins jarRafael H. Schloming2008-05-011-10/+21
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@652672 13f79535-47bb-0310-9956-ffa450edef68
* QPID-965: added an option to turn on deprecation during compileRafael H. Schloming2008-05-011-1/+5
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@652548 13f79535-47bb-0310-9956-ffa450edef68
* This commit is for QPID-992 and QPID-993Rajith Muditha Attapattu2008-05-011-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | build.xml ========== I added the broker-plugins as a module to the ant build system. This was nessacery to get the plugins jar generated for QPID-993. In general when we add extra exchanges as plugins we want release this as a separate jar common.xml ========== Added a property build.plugins. This is used to create the plugins dir that is used for PluginTest noted in QPID-993. module.xml ========== Creats the folder identified by build.plugins copys the plugins jar to the above folder before the tests are run Added the following system properties when running tests "example.plugin.target" to build.plugins - required for QPID-993 "QPID_EXAMPLE_HOME" and "QPID_HOME" is to project.root/broker to pick up the config files in etc - required for QPID-992. build.deps ========== added common libs and felix libs for the broker-plugins module. This is for QPID-993 acl.config.xml ============== Added TempQueue as a routing key allowed for publish to amq.direct for user "server" This was done for QPID-992 git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@652409 13f79535-47bb-0310-9956-ffa450edef68
* QPID-796: Added ability to enable/disable message prefetching. Prefetching ↵Arnaud Simon2008-04-041-0/+1
| | | | | | 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/qpid@644688 13f79535-47bb-0310-9956-ffa450edef68
* QPID-884 made ant task test alton/error/failure configurable from profile fileArnaud Simon2008-04-021-1/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@643924 13f79535-47bb-0310-9956-ffa450edef68
* QPID-884 Updated ant for using a profile. I have created a default profile ↵Arnaud Simon2008-04-021-30/+14
| | | | | | 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/qpid@643894 13f79535-47bb-0310-9956-ffa450edef68
* make build.xml files backward-compatible with ant 1.6.5, by replacing ant ↵Nuno Santos2008-03-241-1/+1
| | | | | | 1.7 specific tasks/extensions git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@640503 13f79535-47bb-0310-9956-ffa450edef68
* turn off junit reloadingRafael H. Schloming2008-02-291-1/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@632214 13f79535-47bb-0310-9956-ffa450edef68