1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
|
// -
// ========================LICENSE_START=================================
// Copyright (C) 2024-2025: Deutsche Telekom
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// SPDX-License-Identifier: Apache-2.0
// ========================LICENSE_END===================================
//
package model
import (
"encoding/json"
"errors"
"github.com/stretchr/testify/assert"
"testing"
)
func (p *PdpStatus) Validate() error {
if p.PdpType == "" {
return errors.New("PdpType is required")
}
// Check if State is set to a valid non-zero value
if p.State != Passive && p.State != Safe && p.State != Test && p.State != Active && p.State != Terminated {
return errors.New("State is required and must be a valid PdpState")
}
// Check if Healthy is set to a valid non-zero value
if p.Healthy != Healthy && p.Healthy != NotHealthy && p.Healthy != TestInProgress && p.Healthy != Unknown {
return errors.New("Healthy status is required and must be a valid PdpHealthStatus")
}
if p.Name == "" {
return errors.New("Name is required")
}
if p.RequestID == "" {
return errors.New("RequestID is required")
}
if p.PdpGroup == "" {
return errors.New("PdpGroup is required")
}
if p.TimestampMs == "" {
return errors.New("TimestampMs is required")
}
return nil
}
// TestPdpStatusSerialization_Positive tests the successful serialization of PdpStatus.
func TestPdpStatusSerialization_Success(t *testing.T) {
pdpStatus := PdpStatus{
MessageType: PDP_STATUS,
PdpType: "examplePdpType",
State: Active,
Healthy: Healthy,
Description: "PDP is healthy",
PdpResponse: nil, // Set to nil for simplicity
Policies: []ToscaConceptIdentifier{},
Name: "ExamplePDP",
RequestID: "12345",
PdpGroup: "Group1",
PdpSubgroup: nil,
TimestampMs: "1633017600000",
}
_, err := json.Marshal(pdpStatus)
if err != nil {
t.Errorf("Expected no error while marshaling valid PdpStatus, got: %v", err)
}
}
// TestPdpStatusSerialization_Negative tests the serialization of PdpStatus with invalid fields.
func TestPdpStatusValidation_Failure(t *testing.T) {
// Example of invalid state and health strings that will fail conversion
state, err := ConvertStringToEnumState("INVALID_STATE")
if err == nil {
t.Fatal("Expected error for invalid state")
}
// Example with missing fields or invalid enums
pdpStatus := PdpStatus{
PdpType: "",
State: state,
Name: "",
RequestID: "",
PdpGroup: "",
TimestampMs: "",
}
err = pdpStatus.Validate()
if err == nil {
t.Error("Expected an error while validating invalid PdpStatus, but got none")
}
}
func (p *PdpUpdate) Validate() error {
if p.Source == "" {
return errors.New("Source is required")
}
if p.PdpHeartbeatIntervalMs <= 0 {
return errors.New("PdpHeartbeatIntervalMs must be a positive integer")
}
if p.MessageType == "" {
return errors.New("MessageType is required")
}
if len(p.PoliciesToBeDeployed) == 0 {
return errors.New("PoliciesToBeDeployed is required and must contain at least one policy")
}
if p.Name == "" {
return errors.New("Name is required")
}
if p.TimestampMs <= 0 {
return errors.New("TimestampMs is required and must be a positive integer")
}
if p.PdpGroup == "" {
return errors.New("PdpGroup is required")
}
if p.PdpSubgroup == "" {
return errors.New("PdpSubgroup is required")
}
if p.RequestId == "" {
return errors.New("RequestId is required")
}
return nil
}
// TestPdpUpdateSerialization_Positive tests the successful serialization of PdpUpdate.
func TestPdpUpdateSerialization_Success(t *testing.T) {
policies := []ToscaPolicy{
{
Type: "onap.policies.native.opa",
TypeVersion: "1.0",
Properties: PolicyProperties{
Data: map[string]string{
"key1": "value1",
"key2": "value2",
},
Policy: map[string]string{
"policyKey1": "policyValue1",
},
},
Name: "MySecurityPolicy",
Version: "1.0.0",
Metadata: Metadata{
PolicyID: "policy-id-001",
PolicyVersion: "1.0",
},
},
{
Type: "onap.policies.native.opa",
TypeVersion: "1.0",
Properties: PolicyProperties{
Data: map[string]string{
"threshold": "75",
"duration": "30",
},
Policy: map[string]string{
"policyKey2": "policyValue2",
},
},
Name: "MyPerformancePolicy",
Version: "1.0.0",
Metadata: Metadata{
PolicyID: "policy-id-002",
PolicyVersion: "1.0",
},
},
}
pdpUpdate := PdpUpdate{
Source: "source1",
PdpHeartbeatIntervalMs: 5000,
MessageType: "PDP_UPDATE",
PoliciesToBeDeployed: policies,
Name: "ExamplePDP",
TimestampMs: 1633017600000,
PdpGroup: "Group1",
PdpSubgroup: "SubGroup1",
RequestId: "54321",
}
_, err := json.Marshal(pdpUpdate)
if err != nil {
t.Errorf("Expected no error while marshaling valid PdpUpdate, got: %v", err)
}
}
// TestPdpUpdateSerialization_Negative tests the serialization of PdpUpdate with invalid fields.
func TestPdpUpdateSerialization_Failure(t *testing.T) {
pdpUpdate := PdpUpdate{
Source: "",
PdpHeartbeatIntervalMs: 5000,
MessageType: "",
PoliciesToBeDeployed: nil,
Name: "",
TimestampMs: 0,
PdpGroup: "",
PdpSubgroup: "",
RequestId: "",
}
err := pdpUpdate.Validate()
if err == nil {
t.Error("Expected an error while validating invalid PdpStatus, but got none")
}
}
func (p *PdpStateChange) Validate() error {
if p.Source == "" {
return errors.New("Source is required")
}
if p.State == "" {
return errors.New("State is required")
}
if p.MessageType == "" {
return errors.New("MessageType is required")
}
if p.Name == "" {
return errors.New("Name is required")
}
if p.TimestampMs <= 0 {
return errors.New("TimestampMs is required and must be a positive integer")
}
if p.PdpGroup == "" {
return errors.New("PdpGroup is required")
}
if p.PdpSubgroup == "" {
return errors.New("PdpSubgroup is required")
}
if p.RequestId == "" {
return errors.New("RequestId is required")
}
return nil
}
// TestPdpStateChangeSerialization_Positive tests the successful serialization of PdpStateChange.
func TestPdpStateChangeSerialization_Success(t *testing.T) {
pdpStateChange := PdpStateChange{
Source: "source1",
State: "active",
MessageType: "PDP_STATE_CHANGE",
Name: "ExamplePDP",
TimestampMs: 1633017600000,
PdpGroup: "Group1",
PdpSubgroup: "SubGroup1",
RequestId: "98765",
}
_, err := json.Marshal(pdpStateChange)
if err != nil {
t.Errorf("Expected no error while marshaling valid PdpStateChange, got: %v", err)
}
}
// TestPdpStateChangeSerialization_Negative tests the serialization of PdpStateChange with invalid fields.
func TestPdpStateChangeSerialization_Failure(t *testing.T) {
pdpStateChange := PdpStateChange{
Source: "",
State: "",
MessageType: "",
Name: "",
TimestampMs: 0,
PdpGroup: "",
PdpSubgroup: "",
RequestId: "",
}
err := pdpStateChange.Validate()
if err == nil {
t.Error("Expected an error while validating invalid PdpStatus, but got none")
}
}
func TestPdpStateEnum(t *testing.T) {
// Using enums instead of string constants
state, err := ConvertStringToEnumState("ACTIVE")
assert.Nil(t, err)
assert.Equal(t, Active, state)
}
func TestPdpHealthStatusEnum(t *testing.T) {
// Using enums instead of string constants
healthStatus := Healthy // Use the enum directly
assert.Equal(t, Healthy, healthStatus)
}
// TestPdpMessageType_String_Success validates the string representation of valid PdpMessageType values.
func TestPdpMessageType_String_Success(t *testing.T) {
tests := []struct {
msgType PdpMessageType
expected string
}{
{PDP_STATUS, "PDP_STATUS"},
{PDP_UPDATE, "PDP_UPDATE"},
{PDP_STATE_CHANGE, "PDP_STATE_CHANGE"},
{PDP_HEALTH_CHECK, "PDP_HEALTH_CHECK"},
{PDP_TOPIC_CHECK, "PDP_TOPIC_CHECK"},
}
for _, test := range tests {
if got := test.msgType.String(); got != test.expected {
t.Errorf("PdpMessageType.String() = %v, want %v", got, test.expected)
assert.Equal(t, test.expected, got, "PdpMessageType.String() = %v, want %v", got, test.expected)
}
}
}
// TestPdpMessageType_String_Failure tests string representation for an invalid PdpMessageType value.
func TestPdpMessageType_String_Failure(t *testing.T) {
invalidType := PdpMessageType(100)
expected := "Unknown PdpMessageType: 100"
if got := invalidType.String(); got != expected {
t.Errorf("PdpMessageType.String() = %v, want %v", got, expected)
assert.Equal(t, expected, got, "PdpMessageType.String() should match the expected value")
}
}
|