-
Notifications
You must be signed in to change notification settings - Fork 19
/
largemessage_test.go
315 lines (249 loc) · 9.39 KB
/
largemessage_test.go
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
/*
* 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.
// Since the buffer size is configured using the ConnectionFactoy we will
// create a second connection in order to successfully retrieve the message.
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()
}
rcvMsg2, errRcv2 := consumer2.ReceiveNoWait()
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.
// Since the buffer size is configured using the ConnectionFactoy we will
// create a second connection in order to successfully retrieve the message.
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()
}
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.
// Since the buffer size is configured using the ConnectionFactoy we will
// create a second connection in order to successfully retrieve the message.
cf.ReceiveBufferSize = len(bytesOver32kb) + 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()
}
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.
// Since the buffer size is configured using the ConnectionFactoy we will
// create a second connection in order to successfully retrieve the message.
cf.ReceiveBufferSize = len(bytesOver32kb) + 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()
}
rcvBytes2, errRcv2 := consumer2.ReceiveBytesBodyNoWait()
assert.Nil(t, errRcv2)
assert.Equal(t, &bytesOver32kb, rcvBytes2)
}
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
}