Model to handle Reset Response
[ric-plt/e2mgr.git] / E2Manager / models / e2_reset_response_test.go
1 //
2 // Copyright 2022 Samsung Electronics Co.
3 //
4 // Licensed under the Apache License, Version 2.0 (the "License");
5 // you may not use this file except in compliance with the License.
6 // You may obtain a copy of the License at
7 //
8 //      http://www.apache.org/licenses/LICENSE-2.0
9 //
10 // Unless required by applicable law or agreed to in writing, software
11 // distributed under the License is distributed on an "AS IS" BASIS,
12 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 // See the License for the specific language governing permissions and
14 // limitations under the License.
15
16 //  This source code is part of the near-RT RIC (RAN Intelligent Controller)
17 //  platform project (RICP).
18
19 package models_test
20
21 import (
22         "e2mgr/models"
23         "e2mgr/utils"
24         "encoding/xml"
25         "testing"
26
27         "github.com/stretchr/testify/assert"
28 )
29
30 const (
31         ResetResponseXMLPath = "../tests/resources/reset/reset-response.xml"
32 )
33
34 func getResetResponseMessage(t *testing.T, xmlPath string) *models.E2ResetResponseMessage {
35         resetResponse := utils.ReadXmlFile(t, xmlPath)
36         resetResponseMsg := &models.E2ResetResponseMessage{}
37         err := xml.Unmarshal(utils.NormalizeXml(resetResponse), &resetResponseMsg.E2APPDU)
38         assert.Nil(t, err)
39         return resetResponseMsg
40 }
41
42 func TestParseResetResponse(t *testing.T) {
43         rr := getResetResponseMessage(t, ResetResponseXMLPath)
44         assert.NotEqual(t, nil, rr, "xml is not parsed correctly")
45         assert.Equal(t, models.ProcedureCode_id_Reset, rr.E2APPDU.SuccessfulOutcome.ProcedureCode)
46         assert.Equal(t, 1, len(rr.E2APPDU.SuccessfulOutcome.Value.ResetResponse.ProtocolIEs.ResetResponseIEs))
47
48         txid := rr.E2APPDU.SuccessfulOutcome.Value.ResetResponse.ProtocolIEs.ResetResponseIEs[0]
49
50         assert.Equal(t, models.ProtocolIE_ID_id_TransactionID, txid.ID)
51 }