2 // Copyright 2019 AT&T Intellectual Property
3 // Copyright 2019 Nokia
5 // Licensed under the Apache License, Version 2.0 (the "License");
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
9 // http://www.apache.org/licenses/LICENSE-2.0
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
26 "github.com/stretchr/testify/assert"
34 msgr rmrCgo.RmrMessenger
37 func TestLogger(t *testing.T) {
39 data := map[string]interface{}{"messageType": 1001, "ranIp": "10.0.0.3", "ranPort": 879, "ranName": "test1"}
40 b := new(bytes.Buffer)
41 _ = json.NewEncoder(b).Encode(data)
42 req := tests.GetHttpRequest()
43 boo, _ := ioutil.ReadAll(req.Body)
44 log.Debugf("#rmr_c_go_api_test.TestLogger - request header: %v\n; request body: %s\n", req.Header, string(boo))
47 func TestNewMBufSuccess(t *testing.T) {
48 msg := rmrCgo.NewMBuf(tests.MessageType, len(tests.DummyPayload), "RanName", &tests.DummyPayload, &tests.DummyXAction)
50 assert.NotEmpty(t, msg.Payload)
51 assert.NotEmpty(t, msg.XAction)
52 assert.Equal(t, msg.MType, tests.MessageType)
53 assert.Equal(t, msg.Meid, "RanName")
54 assert.Equal(t, msg.Len, len(tests.DummyPayload))
57 func TestIsReadySuccess(t *testing.T) {
60 initRmr(tests.GetPort(), tests.MaxMsgSize, tests.Flags, log)
61 if msgr == nil || !msgr.IsReady() {
62 t.Errorf("#rmr_c_go_api_test.TestIsReadySuccess - The rmr router is not ready")
66 func TestSendRecvMsgSuccess(t *testing.T) {
69 initRmr(tests.GetPort(), tests.MaxMsgSize, tests.Flags, log)
70 if msgr == nil || !msgr.IsReady() {
71 t.Errorf("#rmr_c_go_api_test.TestSendRecvMsgSuccess - The rmr router is not ready")
73 msg := rmrCgo.NewMBuf(1, tests.MaxMsgSize, "test 1", &tests.DummyPayload, &tests.DummyXAction)
74 log.Debugf("#rmr_c_go_api_test.TestSendRecvMsgSuccess - Going to send the message: %#v\n", msg)
75 result, err := msgr.SendMsg(msg)
78 assert.NotNil(t, result)
80 msgR, err := msgr.RecvMsg()
83 assert.NotNil(t, msgR)
87 func TestSendMsgRmrInvalidMsgNumError(t *testing.T) {
90 initRmr(tests.GetPort(), tests.MaxMsgSize, tests.Flags, log)
91 if msgr == nil || !msgr.IsReady() {
92 t.Errorf("#rmr_c_go_api_test.TestSendMsgRmrInvalidMsgNumError - The rmr router is not ready")
95 msg := rmrCgo.NewMBuf(10, tests.MaxMsgSize, "test 1", &tests.DummyPayload, &tests.DummyXAction)
96 log.Debugf("#rmr_c_go_api_test.TestSendMsgRmrInvalidMsgNumError - Going to send the message: %#v\n", msg)
97 result, err := msgr.SendMsg(msg)
100 assert.Nil(t, result)
105 func TestSendMsgRmrInvalidPortError(t *testing.T) {
108 initRmr("tcp:"+strconv.Itoa(5555), tests.MaxMsgSize, tests.Flags, log)
109 if msgr == nil || !msgr.IsReady() {
110 t.Errorf("#rmr_c_go_api_test.TestSendMsgRmrInvalidPortError - The rmr router is not ready")
113 msg := rmrCgo.NewMBuf(1, tests.MaxMsgSize, "test 1", &tests.DummyPayload, &tests.DummyXAction)
114 log.Debugf("#rmr_c_go_api_test.TestSendMsgRmrInvalidPortError - Going to send the message: %#v\n", msg)
115 result, err := msgr.SendMsg(msg)
117 assert.NotNil(t, err)
118 assert.Nil(t, result)
123 func initRmr(port string, maxMsgSize int, flags int, log *logger.Logger) {
124 var ctx *rmrCgo.Context
125 msgr = ctx.Init(port, maxMsgSize, flags, log)
128 func initLog(t *testing.T) *logger.Logger {
129 log, err := logger.InitLogger(logger.DebugLevel)
131 t.Errorf("#rmr_c_go_api_test.initLog - failed to initialize logger, error: %s", err)