[RICPLT-2157] Restructure handlers and converters.......
[ric-plt/e2mgr.git] / E2Manager / handlers / httpmsghandlers / endc_setup_request_handler_test.go
1 //
2 // Copyright 2019 AT&T Intellectual Property
3 // Copyright 2019 Nokia
4 //
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
8 //
9 //      http://www.apache.org/licenses/LICENSE-2.0
10 //
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.
16 //
17
18 package httpmsghandlers
19
20 import (
21         "e2mgr/logger"
22         "e2mgr/mocks"
23         "e2mgr/models"
24         "e2mgr/rNibWriter"
25         "e2mgr/sessions"
26         "github.com/stretchr/testify/assert"
27         "sync"
28         "testing"
29         "time"
30 )
31
32 func TestNewEndcSetupRequestHandler(t *testing.T) {
33
34         rnibWriterProvider := func() rNibWriter.RNibWriter {
35                 return &mocks.RnibWriterMock{}
36         }
37
38         h := NewEndcSetupRequestHandler(rnibWriterProvider)
39         assert.NotNil(t, h)
40 }
41
42 func TestCreateEndcX2SetupMessageSuccess(t *testing.T) {
43         log, err := logger.InitLogger(logger.InfoLevel)
44         if err != nil {
45                 t.Errorf("#setup_request_handler_test.TestCreateMessageSuccess - failed to initialize logger, error: %s", err)
46         }
47         messageChannel := make(chan *models.E2RequestMessage)
48         assert.NotPanics(t, func() { createEndcX2SetupMsg(log, messageChannel) })
49         assert.NotEmpty(t, <-messageChannel)
50 }
51
52 func createEndcX2SetupMsg(log *logger.Logger, messageChannel chan *models.E2RequestMessage) {
53         h := EndcSetupRequestHandler{}
54         E2Sessions := make(sessions.E2Sessions)
55         var wg sync.WaitGroup
56         var rd models.RequestDetails
57         go h.CreateMessage(log, &rd, messageChannel, E2Sessions, time.Now(), wg)
58         wg.Wait()
59 }