Improve unit test coverage
[ric-plt/e2mgr.git] / E2Manager / models / update_enb_request_test.go
1 //
2 // Copyright 2020 AT&T Intellectual Property
3 // Copyright 2020 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 //  This source code is part of the near-RT RIC (RAN Intelligent Controller)
18 //  platform project (RICP).
19
20 package models_test
21
22 import (
23         "e2mgr/models"
24         "encoding/json"
25         "gerrit.o-ran-sc.org/r/ric-plt/nodeb-rnib.git/entities"
26         "github.com/stretchr/testify/assert"
27         "testing"
28 )
29
30 var testUpdateEnb = map[string]interface{}{
31         "enb": map[string]interface{}{
32                 "enbType": 1,
33                 "servedCells": []interface{}{
34                         map[string]interface{}{
35                                 "cellId": "whatever",
36                                 "choiceEutraMode": map[string]interface{}{
37                                         "fdd": map[string]interface{}{},
38                                 },
39                                 "eutraMode": 1,
40                                 "pci":       1,
41                                 "tac":       "whatever3",
42                                 "broadcastPlmns": []interface{}{
43                                         "whatever",
44                                 },
45                         },
46                 },
47         },
48 }
49
50 func TestUpdateEnbRequestUnmarshalJsonSuccess(t *testing.T) {
51         updateEnbRequest := models.UpdateEnbRequest{}
52         buf, err := json.Marshal(testUpdateEnb)
53         assert.Nil(t, err)
54
55         err = updateEnbRequest.UnmarshalJSON(buf)
56         assert.Nil(t, err)
57         assert.Equal(t, entities.EnbType_MACRO_ENB, updateEnbRequest.Enb.EnbType)
58         assert.Equal(t, uint32(1), updateEnbRequest.Enb.ServedCells[0].Pci)
59         assert.Equal(t, "whatever", updateEnbRequest.Enb.ServedCells[0].CellId)
60         assert.Equal(t, "whatever3", updateEnbRequest.Enb.ServedCells[0].Tac)
61         assert.Equal(t, "whatever", updateEnbRequest.Enb.ServedCells[0].BroadcastPlmns[0])
62         assert.Equal(t, entities.Eutra_FDD, updateEnbRequest.Enb.ServedCells[0].EutraMode)
63 }
64
65 func TestUpdateEnbRequestJsonUnmarshalError(t *testing.T) {
66         updateEnbRequest := models.UpdateEnbRequest{}
67         // Invalid json: attribute name without quotes (should be "cause":).
68         err := updateEnbRequest.UnmarshalJSON([]byte("{ranName:\"test\""))
69         assert.NotNil(t, err)
70 }