summaryrefslogtreecommitdiff
path: root/dotnet/Qpid.Integration.Tests/testcases/ClientAckTests.cs
blob: 64b5e6c31a62dd2e9beeab00561f0df9dc1dde63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
/*
 *
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance
 * with the License.  You may obtain a copy of the License at
 * 
 *   http://www.apache.org/licenses/LICENSE-2.0
 * 
 * Unless required by applicable law or agreed to in writing,
 * software distributed under the License is distributed on an
 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 * KIND, either express or implied.  See the License for the
 * specific language governing permissions and limitations
 * under the License.
 *
 */

using System;
using System.Threading;
using log4net;
using NUnit.Framework;
using Apache.Qpid.Messaging;
using Apache.Qpid.Client.Qms;
using Apache.Qpid.Client;

namespace Apache.Qpid.Integration.Tests.testcases
{
	/// <summary>
	/// Checks that byte messages can be produced and received properly.
	/// </summary>
	[TestFixture, Category("Integration")]
	public class ClientAckTests : BaseMessagingTestFixture
	{
		private static ILog log = LogManager.GetLogger(typeof(ClientAckTests));
		private static string TEST_ROUTING_KEY = "MESSAGE_ACK_TEST_QUEUE";
		private IMessage msgA;
		private IMessage msgB;
		private IMessage msgC;
		
		[SetUp]
        public override void Init()
        {
            base.Init();

            // Create one producer and one consumer, p2p, tx, consumer with queue bound to producers routing key.
            SetUpEndPoint(0, true, false, TEST_ROUTING_KEY + testId, AcknowledgeMode.ClientAcknowledge, false, ExchangeNameDefaults.DIRECT, 
                          true, false, null);
            SetUpEndPoint(1, false, true, TEST_ROUTING_KEY + testId, AcknowledgeMode.ClientAcknowledge, false, ExchangeNameDefaults.DIRECT, 
                          true, true, testId.ToString());
            // Send 3 messages and get them back
            SendMessages(3, testProducer[0]);
        	msgA = testConsumer[1].Receive();
        	msgB = testConsumer[1].Receive();
        	msgC = testConsumer[1].Receive();
        }
		
		[TearDown]
        public override void Shutdown()
        {
            try
            {
                // Clean up after the test.
                CloseEndPoint(0);
                CloseEndPoint(1);
            } 
            finally 
            {
                base.Shutdown();
            }
        }
        
        [Test]
        /// <summary> Send 3 messages, get them back and each one rolling acks up. </summary>
        public void TestAckingABCAll()
        {
        	msgA.Acknowledge();
        	msgB.Acknowledge();
        	msgC.Acknowledge();
        	
        	CloseEndPoint(1);
        	SetUpEndPoint(1, false, true, TEST_ROUTING_KEY + testId, AcknowledgeMode.ClientAcknowledge, false, ExchangeNameDefaults.DIRECT, 
                          true, true, testId.ToString());
        	ConsumeNMessagesOnly(0, "wibble", testConsumer[1]);
        }
        
        [Test]
        /// <summary> Send 3 messages, get them back and ack each one individually </summary>
        public void TestAckingABCIndividual()
        {
        	msgA.Acknowledge(false);
        	msgB.Acknowledge(false);
        	msgC.Acknowledge(false);

        	CloseEndPoint(1);
        	SetUpEndPoint(1, false, true, TEST_ROUTING_KEY + testId, AcknowledgeMode.ClientAcknowledge, false, ExchangeNameDefaults.DIRECT, 
                          true, true, testId.ToString());
        	ConsumeNMessagesOnly(0, "wibble", testConsumer[1]);
        }
        
        [Test]
        /// <summary> Send 3 messages, get them back and the middle one only rolling acks up. </summary>
        public void TestAckingBOnlyAll()
        {
        	msgB.Acknowledge();
        	
        	CloseEndPoint(1);
        	SetUpEndPoint(1, false, true, TEST_ROUTING_KEY + testId, AcknowledgeMode.ClientAcknowledge, false, ExchangeNameDefaults.DIRECT, 
                          true, true, testId.ToString());
        	log.Debug("Checking we get the last message back");
        	ConsumeNMessagesOnly(1, "Test message 2", testConsumer[1]);
        }

        [Test]
        /// <summary> Send 3 messages, get them back and ack the middle one only individually. </summary>
        public void TestAckingBOnlyIndividual()
        {
        	msgB.Acknowledge(false);
        	CloseEndPoint(1);
			SetUpEndPoint(1, false, true, TEST_ROUTING_KEY + testId, AcknowledgeMode.ClientAcknowledge, false, ExchangeNameDefaults.DIRECT, 
                          true, true, testId.ToString());        	
        	ConsumeNMessages(1, "Test message 0", testConsumer[1]);
        	ConsumeNMessagesOnly(1, "Test message 2", testConsumer[1]);
        }

        [Test]
        /// <summary> Send 3 messages, get them back and ack the last one, rolling acks up. </summary>
        public void TestAckingCOnlyAll()
        {
        	msgC.Acknowledge();
        	
        	CloseEndPoint(1);
			SetUpEndPoint(1, false, true, TEST_ROUTING_KEY + testId, AcknowledgeMode.ClientAcknowledge, false, ExchangeNameDefaults.DIRECT, 
                          true, true, testId.ToString());        	
        	ConsumeNMessagesOnly(0, "wibble", testConsumer[1]);
        }

        [Test]
        /// <summary> Send 3 messages, get them back and ack the last oneindivdually. </summary>
        public void TestAckingCOnlyIndividual()
        {
        	msgC.Acknowledge(false);
        	
        	CloseEndPoint(1);
			SetUpEndPoint(1, false, true, TEST_ROUTING_KEY + testId, AcknowledgeMode.ClientAcknowledge, false, ExchangeNameDefaults.DIRECT, 
                          true, true, testId.ToString());        	
        	ConsumeNMessages(1, "Test message 0", testConsumer[1]);
        	ConsumeNMessagesOnly(1, "Test message 1", testConsumer[1]);
        }

        [Test]
        /// <summary> Send 3 messages, get them back and the first two indivdually. </summary>
        public void TestAckingAtoBIndivdual()
        {
        	msgA.Acknowledge(false);
        	msgB.Acknowledge(false);
        	CloseEndPoint(1);
			SetUpEndPoint(1, false, true, TEST_ROUTING_KEY + testId, AcknowledgeMode.ClientAcknowledge, false, ExchangeNameDefaults.DIRECT, 
                          true, true, testId.ToString());   
        	ConsumeNMessagesOnly(1, "Test message 2", testConsumer[1]);
        }
        
        [Test]
        /// <summary> Send 3 messages, get them back and ack the first and last one indivdually. </summary>
        public void TestAckingAandCIndivdual()
        {
        	msgA.Acknowledge(false);
        	msgC.Acknowledge(false);
        	CloseEndPoint(1);
        	SetUpEndPoint(1, false, true, TEST_ROUTING_KEY + testId, AcknowledgeMode.ClientAcknowledge, false, ExchangeNameDefaults.DIRECT, 
        	              true, true, testId.ToString());
        	//((AmqChannel)testChannel[2]).Suspend(false);
        	ConsumeNMessagesOnly(1, "Test message 1", testConsumer[1]);
        }
	}
}