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
|
# ============LICENSE_START===================================================
# Copyright (C) 2020-2022 Nordix Foundation.
# ============================================================================
# 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=====================================================
import copy
import json
import os
from unittest import TestCase
from unittest.mock import patch, MagicMock
from mod import create_app, db
from mod.api.db_models import NetworkFunctionFilterModel, MeasurementGroupModel, \
SubscriptionModel, NetworkFunctionModel, NfSubRelationalModel
from mod.network_function import NetworkFunctionFilter
from mod.pmsh_utils import AppConfig
from mod.pmsh_config import AppConfig as NewAppConfig
def get_pmsh_config(file_path='data/cbs_data_1.json'):
"""
Gets PMSH config from the JSON file
Args:
file_path (String): Name of the file with path
Returns
dict: Dictionary representation of the the service configuration
"""
with open(os.path.join(os.path.dirname(__file__), file_path), 'r') as data:
return json.load(data)
def create_subscription_data(subscription_name):
"""
Creates subscription model object
Args:
subscription_name (String): Name of the Subscription
Returns
SubscriptionModel: single subscription model object
"""
nf_filter = NetworkFunctionFilterModel(subscription_name, '{^pnf.*,^vnf.*}',
'{}', '{}', '{}')
mg_first = MeasurementGroupModel(subscription_name, 'MG1', 'UNLOCKED', 15, '/pm/pm.xml',
'[{ "measurementType": "countera" }, '
'{ "measurementType": "counterb" }]',
'[{ "DN":"dna"},{"DN":"dnb"}]')
mg_second = copy.deepcopy(mg_first)
mg_second.measurement_group_name = 'MG2'
mg_second.administrative_state = 'LOCKED'
mg_list = [mg_first, mg_second]
subscription_model = SubscriptionModel(subscription_name, 'pmsh_operational_policy',
'pmsh_control_loop_name', 'LOCKED')
subscription_model.network_filter = nf_filter
subscription_model.measurement_groups = mg_list
nf1 = NfSubRelationalModel(subscription_name, "pnf_101", "LOCKED")
nf2 = NfSubRelationalModel(subscription_name, "pnf_102", "LOCKED")
subscription_model.nfs = [nf1, nf2]
return subscription_model
def create_multiple_subscription_data(subscription_names):
"""
Creates a list of subscription model objects
Args:
subscription_names (List): Name of the Subscriptions
Returns
list (SubscriptionModel): of subscription model objects
"""
subscriptions = []
for subscription_name in subscription_names:
subscriptions.append(create_subscription_data(subscription_name))
subscriptions[1].nfs = []
return subscriptions
def create_multiple_network_function_data(nf_name_list):
"""
Creates list of network function model objects
Args:
nf_name_list (list): Network function names
Returns
list: of network function model objects
"""
nf_list = []
for nf_name in nf_name_list:
nf = NetworkFunctionModel(nf_name, '10.10.10.32', '2001:0db8:0:0:0:0:1428:57ab',
'687kj45-d396-4efb-af02-6b83499b12f8',
'e80a6ae3-cafd-4d24-850d-e14c084a5ca9',
'model_name', 'pm_control', '1.0.2')
nf_list.append(nf)
return nf_list
class BaseClassSetup(TestCase):
app = None
app_context = None
@classmethod
@patch('mod.get_db_connection_url', MagicMock(return_value='sqlite://'))
@patch('mod.update_logging_config', MagicMock())
def setUpClass(cls):
os.environ['LOGGER_CONFIG'] = os.path.join(os.path.dirname(__file__), 'log_config.yaml')
os.environ['LOGS_PATH'] = '.'
cls.app = create_app()
cls.app_context = cls.app.app_context()
cls.app_context.push()
@patch('mod.pmsh_utils.AppConfig._get_pmsh_config', MagicMock(return_value=get_pmsh_config()))
def setUp(self):
os.environ['AAI_SERVICE_PORT'] = '8443'
db.create_all()
self.app_conf = AppConfig()
self.app_conf.nf_filter = NetworkFunctionFilter(**self.app_conf.subscription.nfFilter)
@patch('mod.pmsh_config.AppConfig._get_config', MagicMock(return_value=get_pmsh_config()))
def setUpAppConf(self):
self.pmsh_app_conf = NewAppConfig()
def tearDown(self):
db.drop_all()
@classmethod
def tearDownClass(cls):
db.session.remove()
|