-
Notifications
You must be signed in to change notification settings - Fork 19
/
priority_test.go
217 lines (176 loc) · 6.97 KB
/
priority_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
/*
* Copyright (c) IBM Corporation 2022
*
* 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 retrieval of special header properties
*/
func TestPrioritySetGet(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 := "PriorityMsg"
txtMsg := context.CreateTextMessage()
txtMsg.SetText(msgBody)
// Set up objects for send/receive
queue := context.CreateQueue("DEV.QUEUE.1")
consumer, errCons := context.CreateConsumer(queue)
if consumer != nil {
defer consumer.Close()
}
assert.Nil(t, errCons)
// Now send the message and get it back again, to check that it roundtripped.
ttlMillis := 20000
producer := context.CreateProducer().SetTimeToLive(ttlMillis)
// Check the default priority.
assert.Equal(t, jms20subset.Priority_DEFAULT, producer.GetPriority())
errSend := producer.Send(queue, txtMsg)
assert.Nil(t, errSend)
rcvMsg, errRvc := consumer.ReceiveNoWait()
assert.Nil(t, errRvc)
assert.NotNil(t, rcvMsg)
switch msg := rcvMsg.(type) {
case jms20subset.TextMessage:
assert.Equal(t, msgBody, *msg.GetText())
default:
assert.Fail(t, "Got something other than a text message")
}
// Check the Priority
gotPropValue := rcvMsg.GetJMSPriority()
assert.Equal(t, jms20subset.Priority_DEFAULT, gotPropValue)
// -------
// Go again with a different priority.
newMsgPriority := 2
producer = producer.SetPriority(newMsgPriority)
producer = producer.SetDeliveryMode(jms20subset.DeliveryMode_PERSISTENT)
assert.Equal(t, newMsgPriority, producer.GetPriority())
errSend = producer.Send(queue, txtMsg)
assert.Nil(t, errSend)
rcvMsg, errRvc = consumer.ReceiveNoWait()
assert.Nil(t, errRvc)
assert.NotNil(t, rcvMsg)
switch msg := rcvMsg.(type) {
case jms20subset.TextMessage:
assert.Equal(t, msgBody, *msg.GetText())
default:
assert.Fail(t, "Got something other than a text message")
}
// Check the Priority
gotPropValue = rcvMsg.GetJMSPriority()
assert.Equal(t, newMsgPriority, gotPropValue)
assert.Equal(t, jms20subset.DeliveryMode_PERSISTENT, rcvMsg.GetJMSDeliveryMode())
// -------
// Go again with a different priority.
newMsgPriority2 := 7
producer = producer.SetPriority(newMsgPriority2)
producer = producer.SetDeliveryMode(jms20subset.DeliveryMode_NON_PERSISTENT)
assert.Equal(t, newMsgPriority2, producer.GetPriority())
errSend = producer.Send(queue, txtMsg)
assert.Nil(t, errSend)
rcvMsg, errRvc = consumer.ReceiveNoWait()
assert.Nil(t, errRvc)
assert.NotNil(t, rcvMsg)
switch msg := rcvMsg.(type) {
case jms20subset.TextMessage:
assert.Equal(t, msgBody, *msg.GetText())
default:
assert.Fail(t, "Got something other than a text message")
}
// Check the Priority
gotPropValue = rcvMsg.GetJMSPriority()
assert.Equal(t, newMsgPriority2, gotPropValue)
assert.Equal(t, jms20subset.DeliveryMode_NON_PERSISTENT, rcvMsg.GetJMSDeliveryMode())
}
/*
* Test the functional behaviour of messages sent with different priorities,
* where the expectation is that they should be returned from the queue in priority
* order (with FIFO within a priority group), and not FIFO across the entire queue.
*/
func TestPriorityOrdering(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()
}
// Set up objects for send/receive
queue := context.CreateQueue("DEV.QUEUE.1")
consumer, errCons := context.CreateConsumer(queue)
if consumer != nil {
defer consumer.Close()
}
assert.Nil(t, errCons)
// Send a sequence of messages with different priorities.
id_msg1_pri5 := sendMessageWithPriority(t, context, queue, 5)
id_msg2_pri2 := sendMessageWithPriority(t, context, queue, 2)
id_msg3_pri8 := sendMessageWithPriority(t, context, queue, 8)
id_msg4_pri2 := sendMessageWithPriority(t, context, queue, 2)
id_msg5_pri4 := sendMessageWithPriority(t, context, queue, 4)
id_msg6_pri5 := sendMessageWithPriority(t, context, queue, 5)
id_msg7_pri2 := sendMessageWithPriority(t, context, queue, 2)
id_msg8_pri2 := sendMessageWithPriority(t, context, queue, 2)
id_msg9_pri4 := sendMessageWithPriority(t, context, queue, 4)
id_msg10_pri1 := sendMessageWithPriority(t, context, queue, 1)
// We expect them to be returned in priority group order (highest first),
// with FIFO within the priority group.
//
// This behaviour relies on MsgDeliverySequence for the queue
// being set to MQMDS_PRIORITY (which is the default).
receiveMessageAndCheck(t, consumer, id_msg3_pri8, 8)
receiveMessageAndCheck(t, consumer, id_msg1_pri5, 5)
receiveMessageAndCheck(t, consumer, id_msg6_pri5, 5)
receiveMessageAndCheck(t, consumer, id_msg5_pri4, 4)
receiveMessageAndCheck(t, consumer, id_msg9_pri4, 4)
receiveMessageAndCheck(t, consumer, id_msg2_pri2, 2)
receiveMessageAndCheck(t, consumer, id_msg4_pri2, 2)
receiveMessageAndCheck(t, consumer, id_msg7_pri2, 2)
receiveMessageAndCheck(t, consumer, id_msg8_pri2, 2)
receiveMessageAndCheck(t, consumer, id_msg10_pri1, 1)
}
// Send a message with the specified priority.
// Return the generated MessageID.
func sendMessageWithPriority(t *testing.T, context jms20subset.JMSContext, queue jms20subset.Queue, priority int) string {
ttlMillis := 20000
producer := context.CreateProducer().SetTimeToLive(ttlMillis)
producer = producer.SetPriority(priority)
// Create a TextMessage and check that we can populate it
msgBody := "PriorityOrderingMsg"
txtMsg := context.CreateTextMessage()
txtMsg.SetText(msgBody)
errSend := producer.Send(queue, txtMsg)
assert.Nil(t, errSend)
return txtMsg.GetJMSMessageID()
}
// Try to receive a message from the queue and check that it matches
// the expected attributes
func receiveMessageAndCheck(t *testing.T, consumer jms20subset.JMSConsumer, expectedMsgID string, expectedPriority int) {
rcvMsg, errRvc := consumer.ReceiveNoWait()
assert.Nil(t, errRvc)
assert.NotNil(t, rcvMsg)
assert.Equal(t, expectedPriority, rcvMsg.GetJMSPriority())
assert.Equal(t, expectedMsgID, rcvMsg.GetJMSMessageID())
}