RICPLT-3016 Remove indication codes from e2ap
[ric-plt/submgr.git] / e2ap / pkg / e2ap / e2ap_tests / msg.go
1 /*
2 ==================================================================================
3   Copyright (c) 2019 AT&T Intellectual Property.
4   Copyright (c) 2019 Nokia
5
6    Licensed under the Apache License, Version 2.0 (the "License");
7    you may not use this file except in compliance with the License.
8    You may obtain a copy of the License at
9
10        http://www.apache.org/licenses/LICENSE-2.0
11
12    Unless required by applicable law or agreed to in writing, software
13    distributed under the License is distributed on an "AS IS" BASIS,
14    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15    See the License for the specific language governing permissions and
16    limitations under the License.
17 ==================================================================================
18 */
19
20 package e2ap_tests
21
22 import (
23         "encoding/hex"
24         "fmt"
25         "gerrit.o-ran-sc.org/r/ric-plt/e2ap/pkg/e2ap"
26         "gerrit.o-ran-sc.org/r/ric-plt/e2ap/pkg/packer"
27         "github.com/google/go-cmp/cmp"
28         "log"
29         "os"
30         "testing"
31 )
32
33 //-----------------------------------------------------------------------------
34 //
35 //-----------------------------------------------------------------------------
36
37 var testLogger *log.Logger
38
39 func init() {
40         testLogger = log.New(os.Stdout, "TEST: ", log.LstdFlags)
41 }
42
43 type ApTests struct {
44         name string
45         desc string
46 }
47
48 func (testctxt *ApTests) Name() string { return testctxt.name }
49
50 func (testctxt *ApTests) Desc() string { return testctxt.desc }
51
52 func (testctxt *ApTests) SetDesc(desc string) { testctxt.desc = desc }
53
54 func (testctxt *ApTests) String() string { return testctxt.name + string("-") + testctxt.desc }
55
56 func (testctxt *ApTests) testPrint(pattern string, args ...interface{}) {
57         testLogger.Printf("(%s): %s", testctxt.String(), fmt.Sprintf(pattern, args...))
58 }
59
60 func (testctxt *ApTests) testError(t *testing.T, pattern string, args ...interface{}) {
61         testLogger.Printf("(%s): %s", testctxt.String(), fmt.Sprintf(pattern, args...))
62         t.Errorf("(%s): %s", testctxt.String(), fmt.Sprintf(pattern, args...))
63 }
64
65 func (testctxt *ApTests) testValueEquality(t *testing.T, msg string, a interface{}, b interface{}) {
66         if !cmp.Equal(a, b) {
67                 testLogger.Printf("(%s) %s Difference: %s", testctxt.String(), msg, cmp.Diff(a, b))
68                 t.Errorf("(%s) %s Difference: %s", testctxt.String(), msg, cmp.Diff(a, b))
69         }
70 }
71
72 //-----------------------------------------------------------------------------
73 //
74 //-----------------------------------------------------------------------------
75
76 type E2ApTests struct {
77         ApTests
78         packerif e2ap.E2APPackerIf
79 }
80
81 func (testCtxt *E2ApTests) toPackedData(t *testing.T, buffer string) *packer.PackedData {
82         msg, err := hex.DecodeString(buffer)
83         if err != nil {
84                 testCtxt.testError(t, "Hex DecodeString Failed: %s [%s]", err.Error(), buffer)
85                 return nil
86         }
87         packedData := &packer.PackedData{}
88         packedData.Buf = msg
89         return packedData
90 }
91
92 func NewE2ApTests(name string, packerif e2ap.E2APPackerIf) *E2ApTests {
93         testCtxt := &E2ApTests{}
94         testCtxt.packerif = packerif
95         testCtxt.name = name
96         return testCtxt
97 }
98
99 //-----------------------------------------------------------------------------
100 //
101 //-----------------------------------------------------------------------------
102
103 func RunTests(t *testing.T, e2aptestctxt *E2ApTests) {
104         t.Run(e2aptestctxt.Name(), func(t *testing.T) { e2aptestctxt.E2ApTestMsgSubscriptionRequest(t) })
105         t.Run(e2aptestctxt.Name(), func(t *testing.T) { e2aptestctxt.E2ApTestMsgSubscriptionResponse(t) })
106         t.Run(e2aptestctxt.Name(), func(t *testing.T) { e2aptestctxt.E2ApTestMsgSubscriptionFailure(t) })
107         t.Run(e2aptestctxt.Name(), func(t *testing.T) {
108                 e2aptestctxt.E2ApTestMsgSubscriptionDeleteRequest(t)
109         })
110         t.Run(e2aptestctxt.Name(), func(t *testing.T) {
111                 e2aptestctxt.E2ApTestMsgSubscriptionDeleteResponse(t)
112         })
113         t.Run(e2aptestctxt.Name(), func(t *testing.T) {
114                 e2aptestctxt.E2ApTestMsgSubscriptionDeleteFailure(t)
115         })
116         t.Run(e2aptestctxt.Name(), func(t *testing.T) { e2aptestctxt.E2ApTestMsgSubscriptionRequestBuffers(t) })
117         t.Run(e2aptestctxt.Name(), func(t *testing.T) { e2aptestctxt.E2ApTestMsgSubscriptionResponseBuffers(t) })
118         t.Run(e2aptestctxt.Name(), func(t *testing.T) { e2aptestctxt.E2ApTestMsgSubscriptionFailureBuffers(t) })
119         t.Run(e2aptestctxt.Name(), func(t *testing.T) { e2aptestctxt.E2ApTestMsgSubscriptionDeleteRequestBuffers(t) })
120         t.Run(e2aptestctxt.Name(), func(t *testing.T) { e2aptestctxt.E2ApTestMsgSubscriptionDeleteResponseBuffers(t) })
121         t.Run(e2aptestctxt.Name(), func(t *testing.T) { e2aptestctxt.E2ApTestMsgSubscriptionDeleteFailureBuffers(t) })
122 }