-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathtextmessage_test.go
204 lines (166 loc) · 5.91 KB
/
textmessage_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
/*
* 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 (
"testing"
"github.com/ibm-messaging/mq-golang-jms20/jms20subset"
"github.com/ibm-messaging/mq-golang-jms20/mqjms"
"github.com/stretchr/testify/assert"
)
/*
* Test the creation of a text message and setting the text content.
*/
func TestTextMessageBody(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()
}
// Create a TextMessage and check that we can populate it
msgBody := "RequestMsg"
sentMsg := context.CreateTextMessage()
sentMsg.SetText(msgBody)
assert.Equal(t, msgBody, *sentMsg.GetText())
}
/*
* Test send and receive of a text message with no content.
*/
func TestTextMessageNilBody(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()
}
// Create a TextMessage, and check it has nil content.
msg := context.CreateTextMessage()
assert.Nil(t, msg.GetText())
// Now send the message and get it back again, to check that it roundtripped.
queue := context.CreateQueue("DEV.QUEUE.1")
errSend := context.CreateProducer().Send(queue, msg)
assert.Nil(t, errSend)
consumer, errCons := context.CreateConsumer(queue)
if consumer != nil {
defer consumer.Close()
}
assert.Nil(t, errCons)
rcvMsg, errRvc := consumer.ReceiveNoWait()
assert.Nil(t, errRvc)
assert.NotNil(t, rcvMsg)
switch msg := rcvMsg.(type) {
case jms20subset.TextMessage:
assert.Nil(t, msg.GetText())
default:
assert.Fail(t, "Got something other than a text message")
}
}
/*
* Test the behaviour for send/receive of a text message with an empty string
* body. It's difficult to distinguish nil and empty string so we are expecting
* that the received message will contain a nil body.
*/
func TestTextMessageEmptyBody(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()
}
// Create a TextMessage
msg := context.CreateTextMessageWithString("")
assert.Equal(t, "", *msg.GetText())
// Now send the message and get it back again.
queue := context.CreateQueue("DEV.QUEUE.1")
errSend := context.CreateProducer().Send(queue, msg)
assert.Nil(t, errSend)
consumer, errCons := context.CreateConsumer(queue)
assert.Nil(t, errCons)
if consumer != nil {
defer consumer.Close()
}
rcvMsg, errRvc := consumer.ReceiveNoWait()
assert.Nil(t, errRvc)
assert.NotNil(t, rcvMsg)
switch msg := rcvMsg.(type) {
case jms20subset.TextMessage:
// It's difficult to distinguish between empty string and no string (nil)
// so we settle for giving back a nil, so that messages containing empty
// string are equivalent to messages containing no string at all.
assert.Nil(t, msg.GetText())
default:
assert.Fail(t, "Got something other than a text message")
}
}
/*
* Test the behaviour for send/receive of a text message with a body that starts
* and ends with spaces. Reported issue that the trailing spaces are trimmed from
* the returned message.
*/
func TestTextMessageWithSpaces(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()
}
// Create a TextMessage
msgText := " This is some text with spaces before and after "
msg := context.CreateTextMessageWithString(msgText)
// Now send the message and get it back again.
queue := context.CreateQueue("DEV.QUEUE.1")
producer := context.CreateProducer().SetTimeToLive(5000)
errSend := producer.Send(queue, msg)
assert.Nil(t, errSend)
consumer, errCons := context.CreateConsumer(queue)
assert.Nil(t, errCons)
if consumer != nil {
defer consumer.Close()
}
rcvMsg, errRvc := consumer.ReceiveNoWait()
assert.Nil(t, errRvc)
assert.NotNil(t, rcvMsg)
switch msg := rcvMsg.(type) {
case jms20subset.TextMessage:
assert.Equal(t, msgText, *msg.GetText())
default:
assert.Fail(t, "Got something other than a text message")
}
// Create a TextMessage consisting of all spaces.
msgText2 := " "
msg2 := context.CreateTextMessageWithString(msgText2)
errSend = producer.Send(queue, msg2)
assert.Nil(t, errSend)
rcvMsg2, errRvc2 := consumer.ReceiveNoWait()
assert.Nil(t, errRvc2)
assert.NotNil(t, rcvMsg2)
switch msg := rcvMsg2.(type) {
case jms20subset.TextMessage:
assert.Equal(t, msgText2, *msg.GetText())
default:
assert.Fail(t, "Got something other than a text message")
}
}