-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathlargemessage_test.go
More file actions
521 lines (415 loc) · 16.8 KB
/
largemessage_test.go
File metadata and controls
521 lines (415 loc) · 16.8 KB
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
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
/*
* Copyright (c) IBM Corporation 2019
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* SPDX-License-Identifier: EPL-2.0
*/
package main
import (
"strconv"
"testing"
"time"
"github.com/ibm-messaging/mq-golang-jms20/jms20subset"
"github.com/ibm-messaging/mq-golang-jms20/mqjms"
"github.com/stretchr/testify/assert"
)
/*
* Test the send/receive of a large Text message, over the default 32KB size.
*/
func TestLargeTextMessage(t *testing.T) {
// Loads CF parameters from connection_info.json and applicationApiKey.json in the Downloads directory
cf, cfErr := mqjms.CreateConnectionFactoryFromDefaultJSONFiles()
assert.Nil(t, cfErr)
// Creates a connection to the queue manager, using defer to close it automatically
// at the end of the function (if it was created successfully)
context, ctxErr := cf.CreateContext()
assert.Nil(t, ctxErr)
if context != nil {
defer context.Close()
}
// Get a long text string over 32kb in length
txtOver32kb := getStringOver32kb()
// Create a TextMessage with it
msg := context.CreateTextMessageWithString(txtOver32kb)
// Now send the message and get it back again.
queue := context.CreateQueue("DEV.QUEUE.1")
errSend := context.CreateProducer().SetTimeToLive(30000).Send(queue, msg)
assert.Nil(t, errSend)
consumer, errCons := context.CreateConsumer(queue)
assert.Nil(t, errCons)
if consumer != nil {
defer consumer.Close()
}
// This will fail because the default buffer size when receiving a
// message is 32kb.
_, errRcv := consumer.ReceiveNoWait()
assert.NotNil(t, errRcv)
assert.Equal(t, "MQRC_TRUNCATED_MSG_FAILED", errRcv.GetReason())
assert.Equal(t, "2080", errRcv.GetErrorCode())
// The message is still left on the queue since it failed to be received successfully.
// Use a special attribute of the returned exception to look up what the actual length of the
// message is, so that we can correctly increase the buffer size in order to receive the message.
switch jmsExc := errRcv.(type) {
case jms20subset.JMSExceptionImpl:
realMessageLength := jmsExc.GetMessageLength()
assert.Equal(t, len(txtOver32kb), realMessageLength) // check it matches the original (long) length
// Since the buffer size is configured using the ConnectionFactory we will
// create a second connection in order to successfully retrieve the message.
cf.ReceiveBufferSize = realMessageLength
default:
assert.Fail(t, "Got something other than a JMSExceptionImpl")
}
context2, ctxErr2 := cf.CreateContext()
assert.Nil(t, ctxErr2)
if context2 != nil {
defer context2.Close()
}
consumer2, errCons2 := context2.CreateConsumer(queue)
assert.Nil(t, errCons2)
if consumer2 != nil {
defer consumer2.Close()
}
rcvMsg2, errRcv2 := consumer2.ReceiveNoWait() // receive the message using the correct (larger) buffer size
assert.Nil(t, errRcv2)
assert.NotNil(t, rcvMsg2)
switch msg2 := rcvMsg2.(type) {
case jms20subset.TextMessage:
assert.Equal(t, &txtOver32kb, msg2.GetText())
default:
assert.Fail(t, "Got something other than a text message")
}
}
/*
* Test the send/receive of a large Text message, over the default 32KB size.
*/
func TestLargeReceiveStringBodyTextMessage(t *testing.T) {
// Loads CF parameters from connection_info.json and applicationApiKey.json in the Downloads directory
cf, cfErr := mqjms.CreateConnectionFactoryFromDefaultJSONFiles()
assert.Nil(t, cfErr)
// Creates a connection to the queue manager, using defer to close it automatically
// at the end of the function (if it was created successfully)
context, ctxErr := cf.CreateContext()
assert.Nil(t, ctxErr)
if context != nil {
defer context.Close()
}
// Get a long text string over 32kb in length
txtOver32kb := getStringOver32kb()
// Create a TextMessage with it
msg := context.CreateTextMessageWithString(txtOver32kb)
// Now send the message and get it back again.
queue := context.CreateQueue("DEV.QUEUE.1")
errSend := context.CreateProducer().SetTimeToLive(30000).Send(queue, msg)
assert.Nil(t, errSend)
consumer, errCons := context.CreateConsumer(queue)
assert.Nil(t, errCons)
if consumer != nil {
defer consumer.Close()
}
// This will fail because the default buffer size when receiving a
// message is 32kb.
_, errRcv := consumer.ReceiveStringBodyNoWait()
assert.NotNil(t, errRcv)
assert.Equal(t, "MQRC_TRUNCATED_MSG_FAILED", errRcv.GetReason())
assert.Equal(t, "2080", errRcv.GetErrorCode())
// The message is still left on the queue since it failed to be received successfully.
// Use a special attribute of the returned exception to look up what the actual length of the
// message is, so that we can correctly increase the buffer size in order to receive the message.
switch jmsExc := errRcv.(type) {
case jms20subset.JMSExceptionImpl:
realMessageLength := jmsExc.GetMessageLength()
assert.Equal(t, len(txtOver32kb), realMessageLength) // check it matches the original (long) length
// Since the buffer size is configured using the ConnectionFactory we will
// create a second connection in order to successfully retrieve the message.
cf.ReceiveBufferSize = realMessageLength
default:
assert.Fail(t, "Got something other than a JMSExceptionImpl")
}
context2, ctxErr2 := cf.CreateContext()
assert.Nil(t, ctxErr2)
if context2 != nil {
defer context2.Close()
}
consumer2, errCons2 := context2.CreateConsumer(queue)
assert.Nil(t, errCons2)
if consumer2 != nil {
defer consumer2.Close()
}
rcvStr, errRcv2 := consumer2.ReceiveStringBodyNoWait()
assert.Nil(t, errRcv2)
assert.Equal(t, &txtOver32kb, rcvStr)
}
/*
* Test the send/receive of a large Bytes message, over the default 32KB size.
*/
func TestLargeBytesMessage(t *testing.T) {
// Loads CF parameters from connection_info.json and applicationApiKey.json in the Downloads directory
cf, cfErr := mqjms.CreateConnectionFactoryFromDefaultJSONFiles()
assert.Nil(t, cfErr)
// Creates a connection to the queue manager, using defer to close it automatically
// at the end of the function (if it was created successfully)
context, ctxErr := cf.CreateContext()
assert.Nil(t, ctxErr)
if context != nil {
defer context.Close()
}
// Get a long text string over 32kb in length
txtOver32kb := getStringOver32kb()
bytesOver32kb := []byte(txtOver32kb)
// Create a TextMessage with it
msg := context.CreateBytesMessageWithBytes(bytesOver32kb)
// Now send the message and get it back again.
queue := context.CreateQueue("DEV.QUEUE.1")
errSend := context.CreateProducer().SetTimeToLive(30000).Send(queue, msg)
assert.Nil(t, errSend)
consumer, errCons := context.CreateConsumer(queue)
assert.Nil(t, errCons)
if consumer != nil {
defer consumer.Close()
}
// This will fail because the default buffer size when receiving a
// message is 32kb.
_, errRcv := consumer.ReceiveNoWait()
assert.NotNil(t, errRcv)
assert.Equal(t, "MQRC_TRUNCATED_MSG_FAILED", errRcv.GetReason())
assert.Equal(t, "2080", errRcv.GetErrorCode())
// The message is still left on the queue since it failed to be received successfully.
// Use a special attribute of the returned exception to look up what the actual length of the
// message is, so that we can correctly increase the buffer size in order to receive the message.
switch jmsExc := errRcv.(type) {
case jms20subset.JMSExceptionImpl:
realMessageLength := jmsExc.GetMessageLength()
assert.Equal(t, len(txtOver32kb), realMessageLength) // check it matches the original (long) length
// Since the buffer size is configured using the ConnectionFactory we will
// create a second connection in order to successfully retrieve the message.
cf.ReceiveBufferSize = realMessageLength
default:
assert.Fail(t, "Got something other than a JMSExceptionImpl")
}
context2, ctxErr2 := cf.CreateContext()
assert.Nil(t, ctxErr2)
if context2 != nil {
defer context2.Close()
}
consumer2, errCons2 := context2.CreateConsumer(queue)
assert.Nil(t, errCons2)
if consumer2 != nil {
defer consumer2.Close()
}
rcvMsg2, errRcv2 := consumer2.ReceiveNoWait()
assert.Nil(t, errRcv2)
assert.NotNil(t, rcvMsg2)
switch msg2 := rcvMsg2.(type) {
case jms20subset.BytesMessage:
assert.Equal(t, &bytesOver32kb, msg2.ReadBytes())
default:
assert.Fail(t, "Got something other than a text message")
}
}
/*
* Test the send/receive of a large Bytes message, over the default 32KB size.
*/
func TestLargeReceiveBytesBodyBytesMessage(t *testing.T) {
// Loads CF parameters from connection_info.json and applicationApiKey.json in the Downloads directory
cf, cfErr := mqjms.CreateConnectionFactoryFromDefaultJSONFiles()
assert.Nil(t, cfErr)
// Creates a connection to the queue manager, using defer to close it automatically
// at the end of the function (if it was created successfully)
context, ctxErr := cf.CreateContext()
assert.Nil(t, ctxErr)
if context != nil {
defer context.Close()
}
// Get a long text string over 32kb in length
txtOver32kb := getStringOver32kb()
bytesOver32kb := []byte(txtOver32kb)
// Create a TextMessage with it
msg := context.CreateBytesMessageWithBytes(bytesOver32kb)
// Now send the message and get it back again.
queue := context.CreateQueue("DEV.QUEUE.1")
errSend := context.CreateProducer().SetTimeToLive(30000).Send(queue, msg)
assert.Nil(t, errSend)
consumer, errCons := context.CreateConsumer(queue)
assert.Nil(t, errCons)
if consumer != nil {
defer consumer.Close()
}
// This will fail because the default buffer size when receiving a
// message is 32kb.
_, errRcv := consumer.ReceiveBytesBodyNoWait()
assert.NotNil(t, errRcv)
assert.Equal(t, "MQRC_TRUNCATED_MSG_FAILED", errRcv.GetReason())
assert.Equal(t, "2080", errRcv.GetErrorCode())
// The message is still left on the queue since it failed to be received successfully.
// Use a special attribute of the returned exception to look up what the actual length of the
// message is, so that we can correctly increase the buffer size in order to receive the message.
switch jmsExc := errRcv.(type) {
case jms20subset.JMSExceptionImpl:
realMessageLength := jmsExc.GetMessageLength()
assert.Equal(t, len(txtOver32kb), realMessageLength) // check it matches the original (long) length
// Since the buffer size is configured using the ConnectionFactory we will
// create a second connection in order to successfully retrieve the message.
cf.ReceiveBufferSize = realMessageLength
default:
assert.Fail(t, "Got something other than a JMSExceptionImpl")
}
context2, ctxErr2 := cf.CreateContext()
assert.Nil(t, ctxErr2)
if context2 != nil {
defer context2.Close()
}
consumer2, errCons2 := context2.CreateConsumer(queue)
assert.Nil(t, errCons2)
if consumer2 != nil {
defer consumer2.Close()
}
rcvBytes2, errRcv2 := consumer2.ReceiveBytesBodyNoWait()
assert.Nil(t, errRcv2)
assert.Equal(t, &bytesOver32kb, rcvBytes2)
}
/*
* Test receiving a truncated text message, where the body of the message is larger than the receive buffer.
*/
func TestTruncatedTextMessage(t *testing.T) {
// Loads CF parameters from connection_info.json and applicationApiKey.json in the Downloads directory
cf, cfErr := mqjms.CreateConnectionFactoryFromDefaultJSONFiles()
cf.ReceiveBufferSize = 1024
cf.AcceptTruncatedMessage = true
assert.Nil(t, cfErr)
// Creates a connection to the queue manager, using defer to close it automatically
// at the end of the function (if it was created successfully)
context, ctxErr := cf.CreateContext()
assert.Nil(t, ctxErr)
if context != nil {
defer context.Close()
}
// Get a long text string over 32kb in length
txtOver32kb := getStringOver32kb()
// Create a TextMessage with it
msg := context.CreateTextMessageWithString(txtOver32kb)
// Now send the message and get it back again.
queue := context.CreateQueue("DEV.QUEUE.1")
errSend := context.CreateProducer().SetTimeToLive(5000).Send(queue, msg)
assert.Nil(t, errSend)
consumer, errCons := context.CreateConsumer(queue) // with 1kb buffer size as applied at the beginning of this test
assert.Nil(t, errCons)
if consumer != nil {
defer consumer.Close()
}
// Since we have set the flag to allow a truncated message to be returned, this will pass
// but will only return the first 1024 bytes (cf.ReceiveBufferSize) of the message.
truncMsg, errRcv := consumer.ReceiveNoWait()
assert.NotNil(t, errRcv)
assert.Equal(t, "MQRC_TRUNCATED_MSG_ACCEPTED", errRcv.GetReason())
assert.Equal(t, "2079", errRcv.GetErrorCode())
assert.NotNil(t, truncMsg) // We have received the message, but it is truncated.
switch txtTruncMsg := truncMsg.(type) {
case jms20subset.TextMessage:
receivedTxt := txtTruncMsg.GetText()
assert.Equal(t, cf.ReceiveBufferSize, len(*receivedTxt))
default:
assert.Fail(t, "Got something other than a text message")
}
// Use a special attribute of the returned exception to look up what the actual length of the
// message is, so that we can tidy up the message (read successfully) in the event the previous
// step failed.
switch jmsExc := errRcv.(type) {
case jms20subset.JMSExceptionImpl:
realMessageLength := jmsExc.GetMessageLength()
assert.Equal(t, len(txtOver32kb), realMessageLength) // check it matches the original (long) length
// Since the buffer size is configured using the ConnectionFactory we will
// create a second connection in order to successfully retrieve the message.
cf.ReceiveBufferSize = realMessageLength
default:
assert.Fail(t, "Got something other than a JMSExceptionImpl")
}
context2, ctxErr2 := cf.CreateContext()
assert.Nil(t, ctxErr2)
if context2 != nil {
defer context2.Close()
}
consumer2, errCons2 := context2.CreateConsumer(queue)
assert.Nil(t, errCons2)
if consumer2 != nil {
defer consumer2.Close()
}
// If the first part of this text was successful then there should be no message to receive.
tidyMsg, tidyErr := consumer2.ReceiveNoWait()
assert.Nil(t, tidyErr)
assert.Nil(t, tidyMsg)
}
/*
* Test receiving a truncated bytes message, where the body of the message is larger than the receive buffer.
*/
func TestTruncatedBytesMessage(t *testing.T) {
// Loads CF parameters from connection_info.json and applicationApiKey.json in the Downloads directory
cf, cfErr := mqjms.CreateConnectionFactoryFromDefaultJSONFiles()
cf.ReceiveBufferSize = 1024
cf.AcceptTruncatedMessage = true
assert.Nil(t, cfErr)
// Creates a connection to the queue manager, using defer to close it automatically
// at the end of the function (if it was created successfully)
context, ctxErr := cf.CreateContext()
assert.Nil(t, ctxErr)
if context != nil {
defer context.Close()
}
// Get a long text string over 32kb in length
txtOver32kb := getStringOver32kb()
bytesOver32kb := []byte(txtOver32kb)
// Create a TextMessage with it
msg := context.CreateBytesMessageWithBytes(bytesOver32kb)
// Now send the message and get it back again.
queue := context.CreateQueue("DEV.QUEUE.1")
errSend := context.CreateProducer().SetTimeToLive(5000).Send(queue, msg)
assert.Nil(t, errSend)
consumer, errCons := context.CreateConsumer(queue) // with 1kb buffer size as applied at the beginning of this test
assert.Nil(t, errCons)
if consumer != nil {
defer consumer.Close()
}
// Since we have set the flag to allow a truncated message to be returned, this will pass
// but will only return the first 1024 bytes (cf.ReceiveBufferSize) of the message.
truncMsg, errRcv := consumer.ReceiveNoWait()
assert.NotNil(t, errRcv)
assert.Equal(t, "MQRC_TRUNCATED_MSG_ACCEPTED", errRcv.GetReason())
assert.Equal(t, "2079", errRcv.GetErrorCode())
assert.NotNil(t, truncMsg) // We have received the message, but it is truncated.
switch bytesTruncMsg := truncMsg.(type) {
case jms20subset.BytesMessage:
receivedBytes := bytesTruncMsg.ReadBytes()
assert.Equal(t, cf.ReceiveBufferSize, len(*receivedBytes))
default:
assert.Fail(t, "Got something other than a bytes message")
}
// Make sure we tidy up in case the previous part of the test failed.
cf.ReceiveBufferSize = len(txtOver32kb) + 50
context2, ctxErr2 := cf.CreateContext()
assert.Nil(t, ctxErr2)
if context2 != nil {
defer context2.Close()
}
consumer2, errCons2 := context2.CreateConsumer(queue)
assert.Nil(t, errCons2)
if consumer2 != nil {
defer consumer2.Close()
}
// Attempt to receive a message, and don't worry whether it does or not.
consumer2.ReceiveNoWait()
}
func getStringOver32kb() string {
// Build a text string which is over 32KB (in a not very efficient way!)
// First snippet is 100 chars long.
txt100chars := "The quick brown fox jumped over the lazy dog into the flowing river that rushed over the cliff edge."
txt1300chars := strconv.FormatInt(time.Now().UnixNano(), 10) + txt100chars + txt100chars + txt100chars + txt100chars + txt100chars +
txt100chars + txt100chars + txt100chars + txt100chars + txt100chars +
txt100chars + txt100chars + txt100chars
txtOver32kb := txt1300chars
for len(txtOver32kb) < 32*1024 {
txtOver32kb += txt1300chars
}
return txtOver32kb
}