diff options
| author | Rupert Smith <rupertlssmith@apache.org> | 2007-06-19 15:34:07 +0000 |
|---|---|---|
| committer | Rupert Smith <rupertlssmith@apache.org> | 2007-06-19 15:34:07 +0000 |
| commit | e9bbdbf7d622fd97a91b06b04ae2e8f33ce94ba4 (patch) | |
| tree | d01bcddcf4879e85bd65cb5d4e1fc33d7b5d5247 /dotnet/Qpid.Client.Tests/interop/InteropClientTestCase.cs | |
| parent | 89238b6c323ec9d5164fe630ac66b4b5ab2cfdcd (diff) | |
| download | qpid-python-e9bbdbf7d622fd97a91b06b04ae2e8f33ce94ba4.tar.gz | |
Merged revisions 544508 via svnmerge from
https://svn.apache.org/repos/asf/incubator/qpid/branches/M2
........
r544508 | rupertlssmith | 2007-06-05 16:02:09 +0100 (Tue, 05 Jun 2007) | 1 line
Interop tests ported to .Net
........
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@548768 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'dotnet/Qpid.Client.Tests/interop/InteropClientTestCase.cs')
| -rw-r--r-- | dotnet/Qpid.Client.Tests/interop/InteropClientTestCase.cs | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/dotnet/Qpid.Client.Tests/interop/InteropClientTestCase.cs b/dotnet/Qpid.Client.Tests/interop/InteropClientTestCase.cs new file mode 100644 index 0000000000..8e93bd8fa6 --- /dev/null +++ b/dotnet/Qpid.Client.Tests/interop/InteropClientTestCase.cs @@ -0,0 +1,68 @@ +using System;
+using System.Collections.Generic;
+using System.Text;
+using Qpid.Messaging;
+
+namespace Qpid.Client.Tests.interop
+{
+ /// <summary> Defines the possible test case roles that an interop test case can take on. </summary>
+ public enum Roles { SENDER, RECEIVER };
+
+ /// <summary>
+ /// InteropClientTestCase provides an interface that classes implementing test cases from the interop testing spec
+ /// (http://cwiki.apache.org/confluence/display/qpid/Interop+Testing+Specification) should implement.
+ ///
+ /// <p><table id="crc"><caption>CRC Card</caption>
+ /// <tr><th> Responsibilities
+ /// <tr><td> Supply the name of the test case that this implements.
+ /// <tr><td> Accept/Reject invites based on test parameters.
+ /// <tr><td> Adapt to assigned roles.
+ /// <tr><td> Perform test case actions.
+ /// <tr><td> Generate test reports.
+ /// </table>
+ /// </summary>
+ interface InteropClientTestCase
+ {
+ /// <summary>
+ /// Should provide the name of the test case that this class implements. The exact names are defined in the
+ /// interop testing spec.
+ /// </summary>
+ ///
+ /// <returns> The name of the test case that this implements. </returns>
+ string GetName();
+
+ /// <summary>
+ /// Determines whether the test invite that matched this test case is acceptable.
+ /// </summary>
+ ///
+ /// <param name="inviteMessage"> The invitation to accept or reject. </param>
+ ///
+ /// <returns> <tt>true</tt> to accept the invitation, <tt>false</tt> to reject it. </returns>
+ ///
+ /// @throws JMSException Any JMSException resulting from reading the message are allowed to fall through.
+ bool AcceptInvite(IMessage inviteMessage);
+
+ /// <summary>
+ /// Assigns the role to be played by this test case. The test parameters are fully specified in the
+ /// assignment message. When this method return the test case will be ready to execute.
+ /// </summary>
+ ///
+ /// <param name="role"> The role to be played; sender or receiver. </param>
+ /// <param name="assignRoleMessage"> The role assingment message, contains the full test parameters. </param>
+ void AssignRole(Roles role, IMessage assignRoleMessage);
+
+ /// <summary>
+ /// Performs the test case actions.
+ /// </summary>
+ void Start();
+
+ /// <summary>
+ /// Gets a report on the actions performed by the test case in its assigned role.
+ /// </summary>
+ ///
+ /// <param name="session"> The session to create the report message in. </param>
+ ///
+ /// <returns> The report message. </returns>
+ IMessage GetReport(IChannel channel);
+ }
+}
|
