-
Notifications
You must be signed in to change notification settings - Fork 19
/
applname_test.go
67 lines (54 loc) · 1.81 KB
/
applname_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
/*
* 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/mqjms"
"github.com/stretchr/testify/assert"
)
/*
* Test send and receive of a text message with no content.
*/
func TestApplName(t *testing.T) {
// Pick an application name for testing
applName := "MyApplicationName"
// Loads CF parameters from connection_info.json and applicationApiKey.json in the Downloads directory
cf, cfErr := mqjms.CreateConnectionFactoryFromDefaultJSONFiles()
assert.Nil(t, cfErr)
// Set the appl name
cf.ApplName = applName
// 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().SetTimeToLive(60000).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)
// Check that the application name was successfully stored in the message
// that we sent.
gotAppName, err := rcvMsg.GetStringProperty("JMSXAppID")
assert.Nil(t, err)
assert.Equal(t, applName, *gotAppName)
}