-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathmessagegroup_test.go
152 lines (129 loc) · 5.03 KB
/
messagegroup_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
/*
* 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/mqjms"
"github.com/stretchr/testify/assert"
)
/*
* Test the behaviour of message groups.
*
* JMSXGroupID
* JMSXGroupSeq
* JMS_IBM_Last_Msg_In_Group
*
* https://www.ibm.com/docs/en/ibm-mq/9.2?topic=ordering-grouping-logical-messages
*/
func TestMessageGroup(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)
// Since we need more work to support the "set" operations (see big comment below)
// lets just do a short test of the "get" behaviour.
txtMsg1 := context.CreateTextMessage()
// Force the population of the MQMD field.
myFormat := "MYFMT"
txtMsg1.SetStringProperty("JMS_IBM_Format", &myFormat)
groupId, err := txtMsg1.GetStringProperty("JMSXGroupID")
assert.Nil(t, err)
assert.Nil(t, groupId)
groupSeq, err := txtMsg1.GetIntProperty("JMSXGroupSeq")
assert.Nil(t, err)
assert.Equal(t, 1, groupSeq)
gotLastMsg, err := txtMsg1.GetBooleanProperty("JMS_IBM_Last_Msg_In_Group")
assert.Equal(t, false, gotLastMsg)
myGroup := "hello"
err = txtMsg1.SetStringProperty("JMSXGroupID", &myGroup)
assert.NotNil(t, err)
assert.Equal(t, "Not yet implemented", err.GetLinkedError().Error())
err = txtMsg1.SetIntProperty("JMSXGroupSeq", 2)
assert.NotNil(t, err)
assert.Equal(t, "Not yet implemented", err.GetLinkedError().Error())
err = txtMsg1.SetBooleanProperty("JMS_IBM_Last_Msg_In_Group", true)
assert.NotNil(t, err)
assert.Equal(t, "Not yet implemented", err.GetLinkedError().Error())
/*
* Setting these properties requires an MQMD V2 header and is also
* not supported for PUT1 operations so there is some more extensive
* implementation work required in order to enable the "set" scenarios
* for these Group properties.
// Create a TextMessage and check that we can populate it
txtMsg1 := context.CreateTextMessage()
txtMsg1.SetText(msgBody)
txtMsg1.SetStringProperty("JMSXGroupID", &groupID)
txtMsg1.SetIntProperty("JMSXGroupSeq", 1)
errSend := producer.Send(queue, txtMsg1)
assert.Nil(t, errSend)
txtMsg2 := context.CreateTextMessage()
txtMsg2.SetText(msgBody)
txtMsg2.SetStringProperty("JMSXGroupID", &groupID)
txtMsg2.SetIntProperty("JMSXGroupSeq", 2)
errSend = producer.Send(queue, txtMsg2)
assert.Nil(t, errSend)
txtMsg3 := context.CreateTextMessage()
txtMsg3.SetText(msgBody)
txtMsg3.SetStringProperty("JMSXGroupID", &groupID)
txtMsg3.SetIntProperty("JMSXGroupSeq", 3)
txtMsg3.SetBooleanProperty("JMS_IBM_Last_Msg_In_Group", true)
errSend = producer.Send(queue, txtMsg3)
assert.Nil(t, errSend)
// Check the first message.
rcvMsg, errRvc := consumer.ReceiveNoWait()
assert.Nil(t, errRvc)
assert.NotNil(t, rcvMsg)
assert.Equal(t, txtMsg1.GetJMSMessageID(), rcvMsg.GetJMSMessageID())
gotGroupIDValue, gotErr := rcvMsg.GetStringProperty("JMSXGroupID")
assert.Nil(t, gotErr)
assert.Equal(t, groupID, *gotGroupIDValue)
gotSeqValue, gotErr := rcvMsg.GetIntProperty("JMSXGroupSeq")
assert.Equal(t, 1, gotSeqValue)
gotLastMsgValue, gotErr := rcvMsg.GetBooleanProperty("JMS_IBM_Last_Msg_In_Group")
assert.Equal(t, false, gotLastMsgValue)
// Check the second message.
rcvMsg, errRvc = consumer.ReceiveNoWait()
assert.Nil(t, errRvc)
assert.NotNil(t, rcvMsg)
assert.Equal(t, txtMsg2.GetJMSMessageID(), rcvMsg.GetJMSMessageID())
gotGroupIDValue, gotErr = rcvMsg.GetStringProperty("JMSXGroupID")
assert.Nil(t, gotErr)
assert.Equal(t, groupID, *gotGroupIDValue)
gotSeqValue, gotErr = rcvMsg.GetIntProperty("JMSXGroupSeq")
assert.Equal(t, 2, gotSeqValue)
gotLastMsgValue, gotErr = rcvMsg.GetBooleanProperty("JMS_IBM_Last_Msg_In_Group")
assert.Equal(t, false, gotLastMsgValue)
// Check the third message.
rcvMsg, errRvc = consumer.ReceiveNoWait()
assert.Nil(t, errRvc)
assert.NotNil(t, rcvMsg)
assert.Equal(t, txtMsg3.GetJMSMessageID(), rcvMsg.GetJMSMessageID())
gotGroupIDValue, gotErr = rcvMsg.GetStringProperty("JMSXGroupID")
assert.Nil(t, gotErr)
assert.Equal(t, groupID, *gotGroupIDValue)
gotSeqValue, gotErr = rcvMsg.GetIntProperty("JMSXGroupSeq")
assert.Equal(t, 3, gotSeqValue)
gotLastMsgValue, gotErr = rcvMsg.GetBooleanProperty("JMS_IBM_Last_Msg_In_Group")
assert.Equal(t, true, gotLastMsgValue)
*/
}