The Test Specification will detail a 1:1 mapping from specification to test case.
Each test specification in the list will include:
These details will then be used as the basis of each test that is created allowing for better maintainability in the test code.
This section enumerates the various operational tests described in the Test Plan identified from the Functional Specification. This text should form the basis of the Technical Documentation for the specified test class.
The Broker test suite validates that the follow log messages as specified in the Functional Specification.
BRK-1001 : Startup : Version: <Version> Build: <Build> BRK-1002 : Starting : Listening on <Transport> port <Port> BRK-1003 : Shuting down : <Transport> port <Port> BRK-1004 : Ready BRK-1005 : Stopped BRK-1006 : Using configuration : <path> BRK-1007 : Using logging configuration : <path> |
These messages should only occur during startup. The tests need to verify the order of messages. In the case of the BRK-1002 and BRK-1003 the respective ports should only be available between the two log messages.
Description: On startup the broker must report the active configuration file. The logging system must output this so that we can know what configuration is being used for this broker instance.
Input:
The value of -c specified on the command line.
Output:
<date> MESSAGE BRK-1006 : Using configuration : <config file> |
Constraints:
This MUST BE the first BRK log message.
Validation Steps:
Description:
On startup the broker must report correctly report the log4j file in use. This is important as it can help diagnose why logging messages are not being reported. The broker must also be capable of correctly recognising the command line property to specify the custom logging configuration.
Input:
The value of -l specified on the command line.
Output:
<date> MESSAGE BRK-1007 : Using logging configuration : <log4j file> |
Validation Steps:
Description:
On startup the broker must report correctly report the log4j file in use. This is important as it can help diagnose why logging messages are not being reported.
Input:
No custom -l value should be provided on the command line so that the default value is correctly reported.
Output:
<date> MESSAGE BRK-1007 : Using logging configuration : <$QPID_HOME>/etc/log4j.xml |
Validation Steps:
Description: On startup the broker reports the broker version number and svn build revision. This information is retrieved from the resource 'qpidversion.properties' which is located via the classloader.
Input: The 'qpidversion.properties' file located on the classpath.
Output:
<date> MESSAGE BRK-1001 : Startup : qpid Version: 0.6 Build: 767150 |
Validation Steps:
Description:
On startup the broker may listen on a number of ports and protocols. Each of these must be reported as they are made available.
Input:
The default configuration with no SSL
Output:
<date> MESSAGE BRK-1002 : Starting : Listening on TCP port 5672 |
Constraints:
Additional broker configuration will occur between the Startup(BRK-1001) and Starting(BRK-1002) messages depending on what VirtualHosts are configured.
Validation Steps:
Description:
On startup the broker may listen on a number of ports and protocols. Each of these must be reported as they are made available.
Input:
The default configuration with SSL enabled
Output:
<date> MESSAGE BRK-1002 : Starting : Listening on TCP port 5672 <date> MESSAGE BRK-1002 : Starting : Listening on TCP/SSL port 8672 |
Constraints:
Additional broker configuration will occur between the Startup(BRK-1001) and Starting(BRK-1002) messages depending on what VirtualHosts are configured.
Validation Steps:
Description:
The final message the broker will print when it has performed all initialisation and listener startups will be to log the BRK-1004 Ready message
Input:
No input, all successful broker startups will show BRK-1004 messages.
Output:
2009-07-09 15:50:20 +0100 MESSAGE BRK-1004 : Ready |
Validation Steps:
Description:
On startup the broker may listen on a number of ports and protocols. Each of these must then report a shutting down message as they stop listening.
Input:
The default configuration with no SSL
Output:
<date> MESSAGE BRK-1003 : Shutting down : TCP port 5672 |
Validation Steps:
Description:
On startup the broker may listen on a number of ports and protocols. Each of these must then report a shutting down message as they stop listening.
Input:
The default configuration with SSL enabled
Output:
<date> MESSAGE BRK-1003 : Shutting down : TCP port 5672 <date> MESSAGE BRK-1003 : Shutting down : TCP/SSL port 8672 |
Validation Steps:
Description:
Input:
No input, all clean broker shutdowns will show BRK-1005 messages.
Output:
<date> MESSAGE BRK-1005 : Stopped |
Constraints:
This is the LAST message the broker will log.
Validation Steps:
The Management Console test suite validates that the follow log messages as specified in the Functional Specification.
This suite of tests validate that the management console messages occur correctly and according to the following format:
MNG-1001 : Startup MNG-1002 : Starting : <service> : Listening on port <Port> MNG-1003 : Shutting down : <service> : port <Port> MNG-1004 : Ready MNG-1005 : Stopped MNG-1006 : Using SSL Keystore : <path> |
Description:
Using the startup configuration validate that the management startup message is logged correctly.
Input:
Standard configuration with management enabled
Output:
<date> MNG-1001 : Startup |
Constraints:
This is the FIRST message logged by MNG
Validation Steps:
Description:
Verify that when management is disabled in the configuration file the startup message is not logged.
Input:
Standard configuration with management disabled
Output:
NO MNG messages
Validation Steps:
Description:
Using the default configuration validate that the RMI Registry socket is correctly reported as being opened
Input:
The default configuration file
Output:
<date> MESSAGE MNG-1002 : Starting : RMI Registry : Listening on port 8999 |
Constraints:
The RMI ConnectorServer and Registry log messages do not have a prescribed order
Validation Steps:
Description:
Using the default configuration validate that the RMI Registry socket is correctly reported when overridden via the command line.
Input:
The default configuration file and a custom -m value
Output:
<date> MESSAGE MNG-1002 : Starting : RMI Registgry : Listening on port <port> |
Constraints:
The RMI ConnectorServer and Registry log messages do not have a prescribed order
Validation Steps:
Description:
Using the default configuration validate that the RMI ConnectorServer socket is correctly reported as being opened
Input:
The default configuration file
Output:
<date> MESSAGE MNG-1002 : Starting : RMI ConnectorServer : Listening on port 9099 |
Constraints:
The RMI ConnectorServer and Registry log messages do not have a prescribed order
Validation Steps:
Description:
Using the default configuration validate that the RMI Registry socket is correctly reported when overridden via the command line.
Input:
The default configuration file and a custom -m value
Output:
<date> MESSAGE MNG-1002 : Starting : RMI ConnectorServer : Listening on port <port> |
Constraints:
The RMI ConnectorServer and Registry log messages do not have a prescribed order
Validation Steps:
Description:
Using the default configuration with SSL enabled for the management port the SSL Keystore path should be reported via MNG-1006
Input:
Management SSL enabled default configuration.
Output:
<date> MESSAGE MNG-1006 : Using SSL Keystore : test_resources/ssl/keystore.jks |
Validation Steps:
Description:
Using the default configuration the final stage of management startup is to report a MNG-1004 Ready message.
Input:
Default broker configuration.
Output:
<date> MESSAGE MNG-1004 : Ready |
Validation Steps:
Description:
Using the default configuration the management RMI Registry will start and so on shutdown it will log that it is shutting down.
Input:
The default configuration file.
Output:
<date> MNG-1003 : Shutting down : RMI Registry : Listening on port 8999 |
Validation Steps:
Description:
Using the default configuration the management RMI ConnectorServer will start and so on shutdown it will log that it is shutting down.
Input:
The default configuration file.
Output:
<date> MNG-1003 : Shutting down : RMI ConnectorServer : Listening on port 9099 |
Validation Steps:
Description:
On final shutdown the management console will report that it has stopped. All MNG logging must be complete before this message is logged.
Input:
The default configuration file.
Output:
<date> MNG-1005 : Stopped |
Validation Steps:
The virtualhost test suite validates that the follow log messages as specified in the Functional Specification.
This suite of tests validate that the management console messages occur correctly and according to the following format:
VHT-1001 : Created : <name> VHT-1002 : Work directory : <path> VHT-1003 : Closed |
Description:
Testing can be performed using the default configuration. The goal is to validate that for each virtualhost defined in the configuration file a VHT-1001 Created message is provided.
Input:
The default configuration file
Output:
<date> VHT-1001 : Created : <name> |
Validation Steps:
Description:
Testing can be performed using the default configuration. During broker shutdown a VHT-1002 Closed message will be printed for each of the configured virtualhosts. For every virtualhost that was started a close must be logged. After the close message has been printed no further logging will be performed by this virtualhost.
Input:
The default configuration file
Output:
<date> VHT-1002 : Closed |
Validation Steps:
The MessageStore test suite validates that the follow log messages as specified in the Functional Specification.
This suite of tests validate that the MessageStore messages occur correctly and according to the following format:
MST-1001 : Created : <name> MST-1002 : Store location : <path> MST-1003 : Closed MST-1004 : Recovery Start [: <queue.name>] MST-1005 : Recovered <count> messages for queue <queue.name> MST-1006 : Recovery Complete [: <queue.name>] |
Description:
During Virtualhost startup a MessageStore will be created. The first MST message that must be logged is the MST-1001 MessageStore creation.
Input:
Default configuration
Output:
<date> MST-1001 : Created : <name> |
Validation Steps:
Description:
Persistent MessageStores will require space on disk to persist the data. This value will be logged on startup after the MessageStore has been created.
Input:
Default configuration
Output:
<date> MST-1002 : Store location : <path> |
Validation Steps:
Description:
During shutdown the MessageStore will also cleanly close. When this has completed a MST-1003 closed message will be logged. No further messages from this MessageStore will be logged after this message
Input:
Default configuration
Output:
<date> MST-1003 : Closed |
Validation Steps:
Description:
Persistent message stores may have state on disk that they must recover during startup. As the MessageStore starts up it will report that it is about to start the recovery process by logging MST-1004. This message will always be logged for persistent MessageStores. If there is no data to recover then there will be no subsequent recovery messages.
Input:
Default persistent configuration
Output:
<date> MST-1004 : Recovery Start |
Validation Steps:
Description:
A persistent MessageStore may have data to recover from disk. The message store will use MST-1004 to report the start of recovery for a specific queue that it has previously persisted.
Input:
Default persistent configuration
Output:
<date> MST-1004 : Recovery Start : <queue.name> |
Validation Steps:
Description:
A persistent queue must be persisted so that on recovery it can be restored independently of any messages that may be stored on it. This test verifies that the MessageStore will log that it has recovered 0 messages for persistent queues that do not have any messages.
Input:
<date> MST-1005 : Recovered 0 messages for queue <queue.name> |
Description:
On recovery all the persistent messages that are stored on disk must be returned to the queue. MST-1005 will report the number of messages that have been recovered from disk.
Input:
<date> MST-1005 : Recovered <count> messages for queue <queue.name> |
Description:
On recovery all the persistent messages that are stored on disk must be returned to the queue. MST-1005 will report the number of messages that have been recovered from disk.
Input:
<date> MST-1005 : Recovered 1 message for queue <queue.name> |
Description:
After the queue has been recovered the store will log that recovery has been completed. The MessageStore must not report further status about the recovery of this queue after this message. In addition every MST-1004 queue recovery start message must be matched with a MST-1006 recovery complete.
Input:
Default persistent configuration
Output:
<date> MST-1006 : Recovery Complete : <queue.name> |
Validation Steps:
Description:
Once all persistent queues have been recovered and the MessageStore has completed all recovery it must logged that the recovery process has completed.
Input:
Default persistent configuration
Output:
<date> MST-1006 : Recovery Complete |
Validation Steps:
The Connection test suite validates that the follow log messages as specified in the Functional Specification.
This suite of tests validate that the Connection messages occur correctly and according to the following format:
CON-1001 : Open : Client ID <id> : Protocol Version : <version> CON-1002 : Close |
Description:
When a new connection is made to the broker this must be logged.
Input:
<date> CON-1001 : Open : Client ID <id> : Protocol Version : <version> |
Description:
When a connected client closes the connection this will be logged as a CON-1002 message.
Input:
<date> CON-1002 : Close |
Description:
When a connected client has its connection closed via the Management Console this will be logged as a CON-1002 message.
Input:
<date> CON-1002 : Close |
The Channel test suite validates that the follow log messages as specified in the Functional Specification.
This suite of tests validate that the Channel messages occur correctly and according to the following format:
CHN-1001 : Create : Prefetch <count> CHN-1002 : Flow <value> CHN-1003 : Close |
Description:
When a new Channel (JMS Session) is created this will be logged as a CHN-1001 Create message. The messages will contain the prefetch details about this new Channel.
Input:
<date> CHN-1001 : Create : Prefetch <count> |
Description:
The Java Broker implements consumer flow control for all ack modes except No-Ack. When the client fills the prefetch then a CHN-1002 Flow Stopped messasge will be issued in the log.
Input:
<date> CHN-1002 : Flow Stopped |
Description:
The Java Broker implements consumer flow control for all ack modes except No-Ack. When the client fills the prefetch. As soon as the client starts to consume the messages (and ack them) the broker will resume the flow issuing a CHN-1002 Flow Started message to the log
Input:
<date> CHN-1002 : Flow Started |
Description:
When the client gracefully closes the Connection then a CHN-1003 Close message will be issued. This must be the last message logged for this Channel.
Input:
<date> CHN-1003 : Close |
Description:
When the client requests that the Channel (JMS Session) be closed then a CHN-1003 Close message will be issued. This must be the last message logged for this Channel.
Input:
<date> CHN-1003 : Close |
Description:
If a Connection becomes interrupted and then a CHN-1003 Close message will still be issued to signify that the Channel has been closed. This must be the last message logged for this Channel.
Input:
<date> CHN-1003 : Close |
The Queue test suite validates that the follow log messages as specified in the Functional Specification.
This suite of tests validate that the Queue messages occur correctly and according to the following format:
QUE-1001 : Create : [AutoDelete] [Durable|Transient] [Priority:<levels>] [Owner:<name>] QUE-1002 : Deleted |
Description:
When a simple persistent queue is created then a QUE-1001 create message is expected to be logged.
Input:
<date> QUE-1001 : Create : Persistent Owner:<name> |
Description:
When an autodelete persistent queue is created then a QUE-1001 create message is expected to be logged.
Input:
<date> QUE-1001 : Create : AutoDelete Persistent Owner:<name> |
Description:
When a persistent queue is created with a priority level then a QUE-1001 create message is expected to be logged.
Input:
<date> QUE-1001 : Create : Persistent Priority:<levels> Owner:<name> |
Description:
When an autodelete persistent queue is created with a priority level then a QUE-1001 create message is expected to be logged.
Input:
<date> QUE-1001 : Create : AutoDelete Persistent Priority:<levels> Owner:<name> |
Description:
When a simple transient queue is created then a QUE-1001 create message is expected to be logged.
Input:
<date> QUE-1001 : Create : Transient Owner:<name> |
Description:
When an autodelete transient queue is created then a QUE-1001 create message is expected to be logged.
Input:
<date> QUE-1001 : Create : AutoDelete Transient Owner:<name> |
Description:
When a transient queue is created with a priority level then a QUE-1001 create message is expected to be logged.
Input:
<date> QUE-1001 : Create : Transient Priority:<levels> Owner:<name> |
Description:
When an autodelete transient queue is created with a priority level then a QUE-1001 create message is expected to be logged.
Input:
<date> QUE-1001 : Create : AutoDelete Transient Priority:<levels> Owner:<name> |
Description:
Queue creation is possible from the Management Console. When a queue is created in this way then a QUE-1001 create message is expected to be logged.
Input:
<date> QUE-1001 : Create : Transient Owner:<name> |
Description:
An explict QueueDelete request must result in a QUE-1002 Deleted message being logged. This can be done via an explict AMQP QueueDelete method.
Input:
<date> QUE-1002 : Deleted |
Description:
When a Client requests a temporary queue then this is represented in the Java Broker as an autodelete exclusive queue. When the client disconnects the queue will automatically deleted. This can be seen as a QUE-1002 Deleted message will be logged.
Input:
<date> QUE-1002 : Deleted |
Description:
The ManagementConsole can be used to delete a queue. When this is done a QUE-1002 Deleted message must be logged.
Input:
<date> QUE-1002 : Deleted |
The Exchange test suite validates that the follow log messages as specified in the Functional Specification.
This suite of tests validate that the Exchange messages occur correctly and according to the following format:
EXH-1001 : Create : [Durable] Type:<value> Name:<value> EXH-1002 : Deleted |
Description:
When a durable exchange is created an EXH-1001 message is logged with the Durable tag. This will be the first message from this exchange.
Input:
<date> EXH-1001 : Create : Durable Type:<value> Name:<value> |
Description:
When an exchange is created an EXH-1001 message is logged. This will be the first message from this exchange.
Input:
<date> EXH-1001 : Create : Type:<value> Name:<value> |
Description:
An Exchange can be deleted through an AMQP ExchangeDelete method. When this is successful an EXH-1002 Delete message will be logged. This will be the last message from this exchange.
Input:
<date> EXH-1002 : Deleted |
The Binding test suite validates that the follow log messages as specified in the Functional Specification.
This suite of tests validate that the Binding messages occur correctly and according to the following format:
BND-1001 : Create [: Arguments : <key=value>] BND-1002 : Deleted |
Description:
The binding of a Queue and an Exchange is done via a Binding. When this Binding is created a BND-1001 Create message will be logged.
Input:
<date> BND-1001 : Create |
Description:
A Binding can be made with a set of arguments. When this occurs we logged the key,value pairs as part of the Binding log message. When the subscriber with a JMS Selector consumes from an exclusive queue such as a topic. The binding is made with the JMS Selector as an argument.
Input:
<date> BND-1001 : Create : Arguments : <key=value> |
Description:
The binding of a Queue and an Exchange is done via a Binding. When this Binding is created via the Management Console a BND-1001 Create message will be logged.
Input:
<date> BND-1001 : Create |
Description:
Bindings can be deleted so that a queue can be rebound with a different set of values.
Input:
<date> BND-1002 : Deleted |
Description:
Bindings can be deleted so that a queue can be rebound with a different set of values. This can be performed via the Management Console
Input:
<date> BND-1002 : Deleted |
The Subscription test suite validates that the follow log messages as specified in the Functional Specification.
This suite of tests validate that the Subscription messages occur correctly and according to the following format:
SUB-1001 : Create : [Durable] [Arguments : <key=value>] SUB-1002 : Close |
Description:
When a Subscription is created it will be logged. This test validates that Subscribing to a transient queue is correctly logged.
Input:
<date> SUB-1001 : Create |
Description:
The creation of a Durable Subscription, such as a JMS DurableTopicSubscriber will result in an extra Durable tag being included in the Create log message
Input:
<date> SUB-1001 : Create : Durable |
Description:
The creation of a Subscriber with a JMS Selector will result in the Argument field being populated. These argument key/value pairs are then shown in the log message.
Input:
<date> SUB-1001 : Create : Arguments : <key=value> |
Description:
The final combination of SUB-1001 Create messages involves the creation of a Durable Subscription that also contains a set of Arguments, such as those provided via a JMS Selector.
Input:
<date> SUB-1001 : Create : Durable Arguments : <key=value> |
Description:
The creation of a QueueBrowser will provides a number arguments and so should form part of the SUB-1001 Create message.
Input:
<date> SUB-1001 : Create : Arguments : <key=value> |
Description:
When a Subscription is closed it will log this so that it can be correlated with the Create.
Input:
<date> SUB-1002 : Close |
In addition to the performance test suite an additional performance test needs to be written that can be run with this new logging enabled and disabled so that an attempt at quantifying any impact can be made.
The test should perform the following actions:
This will ensure that we hit as many of the new logging routines as possible.
If this test should also be run prior to any code changes so that our current performance can be recorded.
Testing of this nature is dependant on a lot of items that are out of the tests control such as:
As a result the test cannot be guaranteed to produce the same results each time. To mitigate this risk running the test in a loop an reporting an average value of 10-20 runs should provide a more stable response.
Leaving the broker startup/shutdown out of the test loop will help improve the tests performance and repeatability.