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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
|
/*
*
* 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.
*
*/
#include "qpid/broker/BrokerChannel.h"
#include "qpid/broker/BrokerMessage.h"
#include "qpid/broker/BrokerQueue.h"
#include "qpid/broker/FanOutExchange.h"
#include "qpid/broker/NullMessageStore.h"
#include "qpid_test_plugin.h"
#include <iostream>
#include <memory>
#include "qpid/framing/AMQP_HighestVersion.h"
#include "qpid/framing/AMQFrame.h"
#include "MockChannel.h"
#include "qpid/broker/Connection.h"
#include "qpid/framing/ProtocolInitiation.h"
#include <vector>
using namespace boost;
using namespace qpid::broker;
using namespace qpid::framing;
using namespace qpid::sys;
using std::string;
using std::queue;
struct MockHandler : ConnectionOutputHandler{
std::vector<AMQFrame> frames;
void send(AMQFrame& frame){ frames.push_back(frame); }
void close() {};
};
struct DeliveryRecorder : DeliveryAdapter
{
DeliveryId id;
typedef std::pair<Message::shared_ptr, DeliveryToken::shared_ptr> Delivery;
std::vector<Delivery> delivered;
DeliveryId deliver(Message::shared_ptr& msg, DeliveryToken::shared_ptr token)
{
delivered.push_back(Delivery(msg, token));
return ++id;
}
void redeliver(Message::shared_ptr& msg, DeliveryToken::shared_ptr token, DeliveryId /*tag*/)
{
delivered.push_back(Delivery(msg, token));
}
};
class BrokerChannelTest : public CppUnit::TestCase
{
CPPUNIT_TEST_SUITE(BrokerChannelTest);
CPPUNIT_TEST(testConsumerMgmt);;
CPPUNIT_TEST(testDeliveryNoAck);
CPPUNIT_TEST(testStaging);
CPPUNIT_TEST(testQueuePolicy);
CPPUNIT_TEST(testFlow);
CPPUNIT_TEST_SUITE_END();
shared_ptr<Broker> broker;
Connection connection;
MockHandler handler;
class MockMessageStore : public NullMessageStore
{
struct MethodCall
{
const string name;
PersistableMessage* msg;
const string data;//only needed for appendContent
void check(const MethodCall& other) const
{
CPPUNIT_ASSERT_EQUAL(name, other.name);
CPPUNIT_ASSERT_EQUAL(msg, other.msg);
CPPUNIT_ASSERT_EQUAL(data, other.data);
}
};
queue<MethodCall> expected;
bool expectMode;//true when setting up expected calls
void handle(const MethodCall& call)
{
if (expectMode) {
expected.push(call);
} else {
call.check(expected.front());
expected.pop();
}
}
void handle(const string& name, PersistableMessage* msg, const string& data)
{
MethodCall call = {name, msg, data};
handle(call);
}
public:
MockMessageStore() : expectMode(false) {}
void stage(PersistableMessage& msg)
{
if(!expectMode) msg.setPersistenceId(1);
MethodCall call = {"stage", &msg, ""};
handle(call);
}
void appendContent(PersistableMessage& msg, const string& data)
{
MethodCall call = {"appendContent", &msg, data};
handle(call);
}
// Don't hide overloads.
using NullMessageStore::destroy;
void destroy(PersistableMessage& msg)
{
MethodCall call = {"destroy", &msg, ""};
handle(call);
}
void expect()
{
expectMode = true;
}
void test()
{
expectMode = false;
}
void check()
{
CPPUNIT_ASSERT(expected.empty());
}
};
DeliveryRecorder recorder;
public:
BrokerChannelTest() :
broker(Broker::create()),
connection(&handler, *broker)
{
connection.initiated(ProtocolInitiation());
}
void testConsumerMgmt(){
Queue::shared_ptr queue(new Queue("my_queue"));
Channel channel(connection, recorder, 0, 0);
channel.open();
CPPUNIT_ASSERT(!channel.exists("my_consumer"));
ConnectionToken* owner = 0;
string tag("my_consumer");
DeliveryToken::shared_ptr unused;
channel.consume(unused, tag, queue, false, false, owner);
string tagA;
string tagB;
channel.consume(unused, tagA, queue, false, false, owner);
channel.consume(unused, tagB, queue, false, false, owner);
CPPUNIT_ASSERT_EQUAL((uint32_t) 3, queue->getConsumerCount());
CPPUNIT_ASSERT(channel.exists("my_consumer"));
CPPUNIT_ASSERT(channel.exists(tagA));
CPPUNIT_ASSERT(channel.exists(tagB));
channel.cancel(tagA);
CPPUNIT_ASSERT_EQUAL((uint32_t) 2, queue->getConsumerCount());
CPPUNIT_ASSERT(channel.exists("my_consumer"));
CPPUNIT_ASSERT(!channel.exists(tagA));
CPPUNIT_ASSERT(channel.exists(tagB));
channel.close();
CPPUNIT_ASSERT_EQUAL((uint32_t) 0, queue->getConsumerCount());
}
void testDeliveryNoAck(){
Channel channel(connection, recorder, 7);
Message::shared_ptr msg(createMessage("test", "my_routing_key", "my_message_id", 14));
Queue::shared_ptr queue(new Queue("my_queue"));
string tag("test");
DeliveryToken::shared_ptr token(BasicMessage::createConsumeToken("my-token"));
channel.consume(token, tag, queue, false, false, 0);
queue->deliver(msg);
sleep(2);
CPPUNIT_ASSERT_EQUAL((size_t) 1, recorder.delivered.size());
CPPUNIT_ASSERT_EQUAL(msg, recorder.delivered.front().first);
CPPUNIT_ASSERT_EQUAL(token, recorder.delivered.front().second);
}
void testStaging(){
MockMessageStore store;
connection.setFrameMax(1000);
connection.setStagingThreshold(10);
Channel channel(connection, recorder, 1, &store);
const string data[] = {"abcde", "fghij", "klmno"};
Message* msg = new BasicMessage(0, "my_exchange", "my_routing_key", false, false);
store.expect();
store.stage(*msg);
for (int i = 0; i < 3; i++) {
store.appendContent(*msg, data[i]);
}
store.destroy(*msg);
store.test();
Exchange::shared_ptr exchange =
broker->getExchanges().declare("my_exchange", "fanout").first;
Queue::shared_ptr queue(new Queue("my_queue"));
exchange->bind(queue, "", 0);
AMQHeaderBody::shared_ptr header(new AMQHeaderBody(BASIC));
uint64_t contentSize(0);
for (int i = 0; i < 3; i++) {
contentSize += data[i].size();
}
header->setContentSize(contentSize);
channel.handlePublish(msg);
channel.handleHeader(header);
for (int i = 0; i < 3; i++) {
AMQContentBody::shared_ptr body(new AMQContentBody(data[i]));
channel.handleContent(body);
}
Message::shared_ptr msg2 = queue->dequeue();
CPPUNIT_ASSERT_EQUAL(msg, msg2.get());
msg2.reset();//should trigger destroy call
store.check();
}
//NOTE: strictly speaking this should/could be part of QueueTest,
//but as it can usefully use the same utility classes as this
//class it is defined here for simpllicity
void testQueuePolicy()
{
MockMessageStore store;
{//must ensure that store is last thing deleted as it is needed by destructor of lazy loaded content
const string data1("abcd");
const string data2("efghijk");
const string data3("lmnopqrstuvwxyz");
Message::shared_ptr msg1(createMessage("e", "A", "MsgA", data1.size()));
Message::shared_ptr msg2(createMessage("e", "B", "MsgB", data2.size()));
Message::shared_ptr msg3(createMessage("e", "C", "MsgC", data3.size()));
addContent(msg1, data1);
addContent(msg2, data2);
addContent(msg3, data3);
QueuePolicy policy(2, 0);//third message should be stored on disk and lazy loaded
FieldTable settings;
policy.update(settings);
store.expect();
store.stage(*msg3);
store.destroy(*msg3);
store.test();
Queue::shared_ptr queue(new Queue("my_queue", false, &store, 0));
queue->configure(settings);//set policy
queue->deliver(msg1);
queue->deliver(msg2);
queue->deliver(msg3);
sleep(2);
Message::shared_ptr next = queue->dequeue();
CPPUNIT_ASSERT_EQUAL(msg1, next);
CPPUNIT_ASSERT_EQUAL((uint32_t) data1.size(), next->encodedContentSize());
next = queue->dequeue();
CPPUNIT_ASSERT_EQUAL(msg2, next);
CPPUNIT_ASSERT_EQUAL((uint32_t) data2.size(), next->encodedContentSize());
next = queue->dequeue();
CPPUNIT_ASSERT_EQUAL(msg3, next);
CPPUNIT_ASSERT_EQUAL((uint32_t) 0, next->encodedContentSize());
next.reset();
msg1.reset();
msg2.reset();
msg3.reset();//must clear all references to messages to allow them to be destroyed
}
store.check();
}
void testFlow(){
Channel channel(connection, recorder, 7);
channel.open();
//there will always be a connection-start frame
CPPUNIT_ASSERT_EQUAL((size_t) 1, handler.frames.size());
CPPUNIT_ASSERT_EQUAL(ChannelId(0), handler.frames[0].getChannel());
CPPUNIT_ASSERT(dynamic_cast<ConnectionStartBody*>(
handler.frames[0].getBody().get()));
const string data("abcdefghijklmn");
Message::shared_ptr msg(createMessage("test", "my_routing_key", "my_message_id", 14));
addContent(msg, data);
Queue::shared_ptr queue(new Queue("my_queue"));
string tag("test");
DeliveryToken::shared_ptr token(BasicMessage::createConsumeToken("my-token"));
channel.consume(token, tag, queue, false, false, 0);
channel.flow(false);
queue->deliver(msg);
//ensure no messages have been delivered
CPPUNIT_ASSERT_EQUAL((size_t) 0, recorder.delivered.size());
channel.flow(true);
sleep(2);
//ensure no messages have been delivered
CPPUNIT_ASSERT_EQUAL((size_t) 1, recorder.delivered.size());
CPPUNIT_ASSERT_EQUAL(msg, recorder.delivered.front().first);
CPPUNIT_ASSERT_EQUAL(token, recorder.delivered.front().second);
}
Message* createMessage(const string& exchange, const string& routingKey, const string& messageId, uint64_t contentSize)
{
BasicMessage* msg = new BasicMessage(
0, exchange, routingKey, false, false);
AMQHeaderBody::shared_ptr header(new AMQHeaderBody(BASIC));
header->setContentSize(contentSize);
msg->setHeader(header);
msg->getHeaderProperties()->setMessageId(messageId);
return msg;
}
void addContent(Message::shared_ptr msg, const string& data)
{
AMQContentBody::shared_ptr body(new AMQContentBody(data));
msg->addContent(body);
}
};
// Make this test suite a plugin.
CPPUNIT_PLUGIN_IMPLEMENT();
CPPUNIT_TEST_SUITE_REGISTRATION(BrokerChannelTest);
|