Merge "Added ranfunctionOid for E2APv1.1 for e2setup req."
[ric-plt/e2mgr.git] / E2Manager / models / add_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 testAddEnb = map[string]interface{}{
31         "ranName": "test",
32         "globalNbId": map[string]interface{}{
33                 "plmnId": "whatever",
34                 "nbId":   "whatever2",
35         },
36         "enb": map[string]interface{}{
37                 "enbType": 1,
38                 "servedCells": []interface{}{
39                         map[string]interface{}{
40                                 "cellId": "whatever",
41                                 "choiceEutraMode": map[string]interface{}{
42                                         "fdd": map[string]interface{}{},
43                                 },
44                                 "eutraMode": 1,
45                                 "pci":       1,
46                                 "tac":       "whatever3",
47                                 "broadcastPlmns": []interface{}{
48                                         "whatever",
49                                 },
50                         },
51                 },
52         },
53 }
54
55 func TestAddEnbRequestSuccess(t *testing.T) {
56         addEnbRequest := models.AddEnbRequest{}
57         buf, err := json.Marshal(testAddEnb)
58         assert.Nil(t, err)
59
60         err = addEnbRequest.UnmarshalJSON(buf)
61         assert.Nil(t, err)
62         assert.Equal(t, "test", addEnbRequest.RanName)
63         assert.Equal(t, "whatever", addEnbRequest.GlobalNbId.PlmnId)
64         assert.Equal(t, "whatever2", addEnbRequest.GlobalNbId.NbId)
65         assert.Equal(t, entities.EnbType_MACRO_ENB, addEnbRequest.Enb.EnbType)
66         assert.Equal(t, uint32(1), addEnbRequest.Enb.ServedCells[0].Pci)
67         assert.Equal(t, "whatever", addEnbRequest.Enb.ServedCells[0].CellId)
68         assert.Equal(t, "whatever3", addEnbRequest.Enb.ServedCells[0].Tac)
69         assert.Equal(t, "whatever", addEnbRequest.Enb.ServedCells[0].BroadcastPlmns[0])
70         assert.Equal(t, entities.Eutra_FDD, addEnbRequest.Enb.ServedCells[0].EutraMode)
71 }
72
73 func TestAddEnbRequestJsonUnmarshalError(t *testing.T) {
74         addEnbRequest := models.AddEnbRequest{}
75
76         // Invalid json: attribute name without quotes (should be "cause":).
77         err := addEnbRequest.UnmarshalJSON([]byte("{ranName:\"test\""))
78         assert.NotNil(t, err)
79 }