2bc413c2d64d4cce652fb5071ef3915179cdcac2
[osm/LCM.git] / osm_lcm / tests / test_ns.py
1 #
2 # Licensed under the Apache License, Version 2.0 (the "License"); you may
3 # not use this file except in compliance with the License. You may obtain
4 # a copy of the License at
5 #
6 # http://www.apache.org/licenses/LICENSE-2.0
7 #
8 # Unless required by applicable law or agreed to in writing, software
9 # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
10 # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
11 # License for the specific language governing permissions and limitations
12 # under the License.
13 #
14 # For those usages not covered by the Apache License, Version 2.0 please
15 # contact: esousa@whitestack.com or alfonso.tiernosepulveda@telefonica.com
16 ##
17
18
19 import asynctest # pip3 install asynctest --user
20 import asyncio
21 import yaml
22 # import logging
23 from os import getenv
24 from osm_lcm.ns import NsLcm
25 from osm_common.dbmemory import DbMemory
26 from osm_common.msgkafka import MsgKafka
27 from osm_common.fslocal import FsLocal
28 from osm_lcm.lcm_utils import TaskRegistry
29 from n2vc.vnf import N2VC
30 # from n2vc.k8s_helm_conn import K8sHelmConnector
31 from uuid import uuid4
32 from asynctest.mock import patch
33
34 from osm_lcm.tests import test_db_descriptors as descriptors
35
36 __author__ = "Alfonso Tierno <alfonso.tiernosepulveda@telefonica.com>"
37
38 """ Perform unittests using asynctest of osm_lcm.ns module
39 It allows, if some testing ENV are supplied, testing without mocking some external libraries for debugging:
40 OSMLCMTEST_NS_PUBKEY: public ssh-key returned by N2VC to inject to VMs
41 OSMLCMTEST_NS_NAME: change name of NS
42 OSMLCMTEST_PACKAGES_PATH: path where the vnf-packages are stored (de-compressed), each one on a 'vnfd_id' folder
43 OSMLCMTEST_NS_IPADDRESS: IP address where emulated VMs are reached. Comma separate list
44 OSMLCMTEST_RO_VIMID: VIM id of RO target vim IP. Obtain it with openmano datcenter-list on RO container
45 OSMLCMTEST_VCA_NOMOCK: Do no mock the VCA, N2VC library, for debugging it
46 OSMLCMTEST_RO_NOMOCK: Do no mock the ROClient library, for debugging it
47 OSMLCMTEST_DB_NOMOCK: Do no mock the database library, for debugging it
48 OSMLCMTEST_FS_NOMOCK: Do no mock the File Storage library, for debugging it
49 OSMLCMTEST_LOGGING_NOMOCK: Do no mock the logging
50 OSMLCM_VCA_XXX: configuration of N2VC
51 OSMLCM_RO_XXX: configuration of RO
52 """
53
54
55 vca_config = { # TODO replace with os.get_env to get other configurations
56 "host": getenv("OSMLCM_VCA_HOST", "vca"),
57 "port": getenv("OSMLCM_VCA_PORT", 17070),
58 "user": getenv("OSMLCM_VCA_USER", "admin"),
59 "secret": getenv("OSMLCM_VCA_SECRET", "vca"),
60 "pubkey": getenv("OSMLCM_VCA_PUBKEY", None),
61 'cacert': getenv("OSMLCM_VCA_CACERT", None)
62 }
63
64 ro_config = {
65 "endpoint_url": "http://{}:{}/openmano".format(getenv("OSMLCM_RO_HOST", "ro"), getenv("OSMLCM_RO_PORT", "9090")),
66 "tenant": getenv("OSMLCM_RO_TENANT", "osm"),
67 "logger_name": "lcm.ROclient",
68 "loglevel": "DEBUG",
69 }
70
71
72 class TestMyNS(asynctest.TestCase):
73
74 async def _n2vc_DeployCharms(self, model_name, application_name, vnfd, charm_path, params={}, machine_spec={},
75 callback=None, *callback_args):
76 if callback:
77 for status, message in (("maintenance", "installing sofwware"), ("active", "Ready!")):
78 # call callback after some time
79 asyncio.sleep(5, loop=self.loop)
80 callback(model_name, application_name, status, message, *callback_args)
81
82 @staticmethod
83 def _n2vc_FormatApplicationName(*args):
84 num_calls = 0
85 while True:
86 yield "app_name-{}".format(num_calls)
87 num_calls += 1
88
89 def _n2vc_CreateExecutionEnvironment(self, namespace, reuse_ee_id, db_dict):
90 k_list = namespace.split(".")
91 ee_id = k_list[1] + "."
92 if len(k_list) >= 2:
93 for k in k_list[2:4]:
94 ee_id += k[:8]
95 else:
96 ee_id += "_NS_"
97 return ee_id, {}
98
99 def _ro_show(self, *args, **kwargs):
100 ro_ns_desc = yaml.load(descriptors.db_ro_ns_text, Loader=yaml.Loader)
101
102 # if ip address provided, replace descriptor
103 ip_addresses = getenv("OSMLCMTEST_NS_IPADDRESS", "")
104 if ip_addresses:
105 ip_addresses_list = ip_addresses.split(",")
106 for vnf in ro_ns_desc["vnfs"]:
107 if not ip_addresses_list:
108 break
109 vnf["ip_address"] = ip_addresses_list[0]
110 for vm in vnf["vms"]:
111 if not ip_addresses_list:
112 break
113 vm["ip_address"] = ip_addresses_list.pop(0)
114
115 while True:
116 yield ro_ns_desc
117 for net in ro_ns_desc["nets"]:
118 if net["status"] != "ACTIVE":
119 net["status"] = "ACTIVE"
120 break
121 else:
122 for vnf in ro_ns_desc["vnfs"]:
123 for vm in vnf["vms"]:
124 if vm["status"] != "ACTIVE":
125 vm["status"] = "ACTIVE"
126 break
127
128 def _ro_create(self, *args, **kwargs):
129 while True:
130 yield {"uuid": str(uuid4())}
131
132 def _return_uuid(self, *args, **kwargs):
133 return str(uuid4())
134
135 @patch("osm_lcm.ns.N2VCJujuConnector")
136 @patch("osm_lcm.ns.K8sHelmConnector")
137 async def setUp(self, k8s_mock, n2vc_mock):
138 # Mock DB
139 if not getenv("OSMLCMTEST_DB_NOMOCK"):
140 self.db = DbMemory()
141 self.db.create_list("vnfds", yaml.load(descriptors.db_vnfds_text, Loader=yaml.Loader))
142 self.db.create_list("nsds", yaml.load(descriptors.db_nsds_text, Loader=yaml.Loader))
143 self.db.create_list("nsrs", yaml.load(descriptors.db_nsrs_text, Loader=yaml.Loader))
144 self.db.create_list("vim_accounts", yaml.load(descriptors.db_vim_accounts_text, Loader=yaml.Loader))
145 self.db.create_list("k8sclusters", yaml.load(descriptors.db_k8sclusters_text, Loader=yaml.Loader))
146 self.db.create_list("nslcmops", yaml.load(descriptors.db_nslcmops_text, Loader=yaml.Loader))
147 self.db.create_list("vnfrs", yaml.load(descriptors.db_vnfrs_text, Loader=yaml.Loader))
148
149 self.db_vim_accounts = yaml.load(descriptors.db_vim_accounts_text, Loader=yaml.Loader)
150
151 # Mock kafka
152 self.msg = asynctest.Mock(MsgKafka())
153
154 # Mock filesystem
155 if not getenv("OSMLCMTEST_FS_NOMOCK"):
156 self.fs = asynctest.Mock(FsLocal())
157 self.fs.get_params.return_value = {"path": getenv("OSMLCMTEST_PACKAGES_PATH", "./test/temp/packages")}
158 self.fs.file_open = asynctest.mock_open()
159 # self.fs.file_open.return_value.__enter__.return_value = asynctest.MagicMock() # called on a python "with"
160 # self.fs.file_open.return_value.__enter__.return_value.read.return_value = "" # empty file
161
162 # Mock TaskRegistry
163 self.lcm_tasks = asynctest.Mock(TaskRegistry())
164 self.lcm_tasks.lock_HA.return_value = True
165 self.lcm_tasks.waitfor_related_HA.return_value = None
166 self.lcm_tasks.lookfor_related.return_value = ("", [])
167
168 # Create NsLCM class
169 self.my_ns = NsLcm(self.db, self.msg, self.fs, self.lcm_tasks, ro_config, vca_config, self.loop)
170 self.my_ns._wait_dependent_n2vc = asynctest.CoroutineMock()
171
172 # Mock logging
173 if not getenv("OSMLCMTEST_LOGGING_NOMOCK"):
174 self.my_ns.logger = asynctest.Mock(self.my_ns.logger)
175
176 # Mock VCA - N2VC
177 if not getenv("OSMLCMTEST_VCA_NOMOCK"):
178 pub_key = getenv("OSMLCMTEST_NS_PUBKEY", "ssh-rsa test-pub-key t@osm.com")
179 self.my_ns.n2vc = asynctest.Mock(N2VC())
180 self.my_ns.n2vc.GetPublicKey.return_value = getenv("OSMLCM_VCA_PUBKEY", "public_key")
181 # allow several versions of n2vc
182 self.my_ns.n2vc.FormatApplicationName = asynctest.Mock(side_effect=self._n2vc_FormatApplicationName())
183 self.my_ns.n2vc.DeployCharms = asynctest.CoroutineMock(side_effect=self._n2vc_DeployCharms)
184 self.my_ns.n2vc.create_execution_environment = asynctest.CoroutineMock(
185 side_effect=self._n2vc_CreateExecutionEnvironment)
186 self.my_ns.n2vc.install_configuration_sw = asynctest.CoroutineMock(return_value=pub_key)
187 self.my_ns.n2vc.get_ee_ssh_public__key = asynctest.CoroutineMock(return_value=pub_key)
188 self.my_ns.n2vc.exec_primitive = asynctest.CoroutineMock(side_effect=self._return_uuid)
189 self.my_ns.n2vc.GetPrimitiveStatus = asynctest.CoroutineMock(return_value="completed")
190 self.my_ns.n2vc.GetPrimitiveOutput = asynctest.CoroutineMock(return_value={"result": "ok",
191 "pubkey": pub_key})
192 self.my_ns.n2vc.get_public_key = asynctest.CoroutineMock(
193 return_value=getenv("OSMLCM_VCA_PUBKEY", "public_key"))
194
195 # # Mock VCA - K8s
196 # if not getenv("OSMLCMTEST_VCA_K8s_NOMOCK"):
197 # pub_key = getenv("OSMLCMTEST_NS_PUBKEY", "ssh-rsa test-pub-key t@osm.com")
198 # self.my_ns.k8sclusterhelm = asynctest.Mock(K8sHelmConnector())
199
200 # Mock RO
201 if not getenv("OSMLCMTEST_RO_NOMOCK"):
202 # self.my_ns.RO = asynctest.Mock(ROclient.ROClient(self.loop, **ro_config))
203 # TODO first time should be empty list, following should return a dict
204 self.my_ns.RO.get_list = asynctest.CoroutineMock(self.my_ns.RO.get_list, return_value=[])
205 self.my_ns.RO.create = asynctest.CoroutineMock(self.my_ns.RO.create, side_effect=self._ro_create())
206 self.my_ns.RO.show = asynctest.CoroutineMock(self.my_ns.RO.show, side_effect=self._ro_show())
207 self.my_ns.RO.create_action = asynctest.CoroutineMock(self.my_ns.RO.create_action,
208 return_value={"vm-id": {"vim_result": 200,
209 "description": "done"}})
210 # self.my_ns.wait_vm_up_insert_key_ro = asynctest.CoroutineMock(return_value="ip-address")
211
212 @asynctest.fail_on(active_handles=True) # all async tasks must be completed
213 async def test_instantiate(self):
214 self.db.set_one = asynctest.Mock()
215 nsr_id = self.db.get_list("nsrs")[0]["_id"]
216 nslcmop_id = self.db.get_list("nslcmops")[0]["_id"]
217 # print("Test instantiate started")
218
219 # delete deployed information of database
220 if not getenv("OSMLCMTEST_DB_NOMOCK"):
221 if self.db.get_list("nsrs")[0]["_admin"].get("deployed"):
222 del self.db.get_list("nsrs")[0]["_admin"]["deployed"]
223 for db_vnfr in self.db.get_list("vnfrs"):
224 db_vnfr.pop("ip_address", None)
225 for db_vdur in db_vnfr["vdur"]:
226 db_vdur.pop("ip_address", None)
227 db_vdur.pop("mac_address", None)
228 if getenv("OSMLCMTEST_RO_VIMID"):
229 self.db.get_list("vim_accounts")[0]["_admin"]["deployed"]["RO"] = getenv("OSMLCMTEST_RO_VIMID")
230 if getenv("OSMLCMTEST_RO_VIMID"):
231 self.db.get_list("nsrs")[0]["_admin"]["deployed"]["RO"] = getenv("OSMLCMTEST_RO_VIMID")
232
233 await self.my_ns.instantiate(nsr_id, nslcmop_id)
234
235 # print("instantiate_result: {}".format(self.db.get_one("nslcmops",
236 # {"_id": nslcmop_id}).get("detailed-status")))
237
238 self.msg.aiowrite.assert_called_once_with("ns", "instantiated",
239 {"nsr_id": nsr_id, "nslcmop_id": nslcmop_id,
240 "operationState": "COMPLETED"},
241 loop=self.loop)
242 self.lcm_tasks.lock_HA.assert_called_once_with('ns', 'nslcmops', nslcmop_id)
243 if not getenv("OSMLCMTEST_LOGGING_NOMOCK"):
244 self.assertTrue(self.my_ns.logger.debug.called, "Debug method not called")
245 self.my_ns.logger.error.assert_not_called()
246 self.my_ns.logger.exception().assert_not_called()
247
248 if not getenv("OSMLCMTEST_DB_NOMOCK"):
249 self.assertTrue(self.db.set_one.called, "db.set_one not called")
250
251 # TODO add more checks of called methods
252 # TODO add a terminate
253
254 def test_ns_params_2_RO(self):
255 vim = self.db.get_list("vim_accounts")[0]
256 vim_id = vim["_id"]
257 ro_vim_id = vim["_admin"]["deployed"]["RO"]
258 ns_params = {"vimAccountId": vim_id}
259 mgmt_interface = {"cp": "cp"}
260 vdu = [{"id": "vdu_id", "interface": [{"external-connection-point-ref": "cp"}]}]
261 vnfd_dict = {
262 "1": {"vdu": vdu, "mgmt-interface": mgmt_interface},
263 "2": {"vdu": vdu, "mgmt-interface": mgmt_interface, "vnf-configuration": None},
264 "3": {"vdu": vdu, "mgmt-interface": mgmt_interface, "vnf-configuration": {"config-access": None}},
265 "4": {"vdu": vdu, "mgmt-interface": mgmt_interface,
266 "vnf-configuration": {"config-access": {"ssh-access": None}}},
267 "5": {"vdu": vdu, "mgmt-interface": mgmt_interface,
268 "vnf-configuration": {"config-access": {"ssh-access": {"required": True, "default_user": "U"}}}},
269 }
270 nsd = {"constituent-vnfd": []}
271 for k in vnfd_dict.keys():
272 nsd["constituent-vnfd"].append({"vnfd-id-ref": k, "member-vnf-index": k})
273
274 n2vc_key_list = ["key"]
275 ro_ns_params = self.my_ns.ns_params_2_RO(ns_params, nsd, vnfd_dict, n2vc_key_list)
276 ro_params_expected = {'wim_account': None, "datacenter": ro_vim_id,
277 "vnfs": {"5": {"vdus": {"vdu_id": {"mgmt_keys": n2vc_key_list}}}}}
278 self.assertEqual(ro_ns_params, ro_params_expected)
279
280 # Test scale() and related methods
281 @asynctest.fail_on(active_handles=True) # all async tasks must be completed
282 async def test_scale(self):
283 # print("Test scale started")
284
285 # TODO: Add more higher-lever tests here, for example:
286 # scale-out/scale-in operations with success/error result
287
288 # Test scale() with missing 'scaleVnfData', should return operationState = 'FAILED'
289 nsr_id = self.db.get_list("nsrs")[0]["_id"]
290 nslcmop_id = self.db.get_list("nslcmops")[0]["_id"]
291 await self.my_ns.scale(nsr_id, nslcmop_id)
292 expected_value = 'FAILED'
293 return_value = self.db.get_one("nslcmops", {"_id": nslcmop_id}).get("operationState")
294 self.assertEqual(return_value, expected_value)
295 # print("scale_result: {}".format(self.db.get_one("nslcmops", {"_id": nslcmop_id}).get("detailed-status")))
296
297 # Test _reintent_or_skip_suboperation()
298 # Expected result:
299 # - if a suboperation's 'operationState' is marked as 'COMPLETED', SUBOPERATION_STATUS_SKIP is expected
300 # - if marked as anything but 'COMPLETED', the suboperation index is expected
301 def test_scale_reintent_or_skip_suboperation(self):
302 # Load an alternative 'nslcmops' YAML for this test
303 db_nslcmop = self.db.get_list('nslcmops')[0]
304 op_index = 2
305 # Test when 'operationState' is 'COMPLETED'
306 db_nslcmop['_admin']['operations'][op_index]['operationState'] = 'COMPLETED'
307 return_value = self.my_ns._reintent_or_skip_suboperation(db_nslcmop, op_index)
308 expected_value = self.my_ns.SUBOPERATION_STATUS_SKIP
309 self.assertEqual(return_value, expected_value)
310 # Test when 'operationState' is not 'COMPLETED'
311 db_nslcmop['_admin']['operations'][op_index]['operationState'] = None
312 return_value = self.my_ns._reintent_or_skip_suboperation(db_nslcmop, op_index)
313 expected_value = op_index
314 self.assertEqual(return_value, expected_value)
315
316 # Test _find_suboperation()
317 # Expected result: index of the found sub-operation, or SUBOPERATION_STATUS_NOT_FOUND if not found
318 def test_scale_find_suboperation(self):
319 # Load an alternative 'nslcmops' YAML for this test
320 db_nslcmop = self.db.get_list('nslcmops')[0]
321 # Find this sub-operation
322 op_index = 2
323 vnf_index = db_nslcmop['_admin']['operations'][op_index]['member_vnf_index']
324 primitive = db_nslcmop['_admin']['operations'][op_index]['primitive']
325 primitive_params = db_nslcmop['_admin']['operations'][op_index]['primitive_params']
326 match = {
327 'member_vnf_index': vnf_index,
328 'primitive': primitive,
329 'primitive_params': primitive_params,
330 }
331 found_op_index = self.my_ns._find_suboperation(db_nslcmop, match)
332 self.assertEqual(found_op_index, op_index)
333 # Test with not-matching params
334 match = {
335 'member_vnf_index': vnf_index,
336 'primitive': '',
337 'primitive_params': primitive_params,
338 }
339 found_op_index = self.my_ns._find_suboperation(db_nslcmop, match)
340 self.assertEqual(found_op_index, self.my_ns.SUBOPERATION_STATUS_NOT_FOUND)
341 # Test with None
342 match = None
343 found_op_index = self.my_ns._find_suboperation(db_nslcmop, match)
344 self.assertEqual(found_op_index, self.my_ns.SUBOPERATION_STATUS_NOT_FOUND)
345
346 # Test _update_suboperation_status()
347 def test_scale_update_suboperation_status(self):
348 self.db.set_one = asynctest.Mock()
349 db_nslcmop = self.db.get_list('nslcmops')[0]
350 op_index = 0
351 # Force the initial values to be distinct from the updated ones
352 q_filter = {"_id": db_nslcmop["_id"]}
353 # Test to change 'operationState' and 'detailed-status'
354 operationState = 'COMPLETED'
355 detailed_status = 'Done'
356 expected_update_dict = {'_admin.operations.0.operationState': operationState,
357 '_admin.operations.0.detailed-status': detailed_status,
358 }
359 self.my_ns._update_suboperation_status(db_nslcmop, op_index, operationState, detailed_status)
360 self.db.set_one.assert_called_once_with("nslcmops", q_filter=q_filter, update_dict=expected_update_dict,
361 fail_on_empty=False)
362
363 def test_scale_add_suboperation(self):
364 db_nslcmop = self.db.get_list('nslcmops')[0]
365 vnf_index = '1'
366 num_ops_before = len(db_nslcmop.get('_admin', {}).get('operations', [])) - 1
367 vdu_id = None
368 vdu_count_index = None
369 vdu_name = None
370 primitive = 'touch'
371 mapped_primitive_params = {'parameter':
372 [{'data-type': 'STRING',
373 'name': 'filename',
374 'default-value': '<touch_filename2>'}],
375 'name': 'touch'}
376 operationState = 'PROCESSING'
377 detailed_status = 'In progress'
378 operationType = 'PRE-SCALE'
379 # Add a 'pre-scale' suboperation
380 op_index_after = self.my_ns._add_suboperation(db_nslcmop, vnf_index, vdu_id, vdu_count_index,
381 vdu_name, primitive, mapped_primitive_params,
382 operationState, detailed_status, operationType)
383 self.assertEqual(op_index_after, num_ops_before + 1)
384
385 # Delete all suboperations and add the same operation again
386 del db_nslcmop['_admin']['operations']
387 op_index_zero = self.my_ns._add_suboperation(db_nslcmop, vnf_index, vdu_id, vdu_count_index,
388 vdu_name, primitive, mapped_primitive_params,
389 operationState, detailed_status, operationType)
390 self.assertEqual(op_index_zero, 0)
391
392 # Add a 'RO' suboperation
393 RO_nsr_id = '1234567890'
394 RO_scaling_info = [{'type': 'create', 'count': 1, 'member-vnf-index': '1', 'osm_vdu_id': 'dataVM'}]
395 op_index = self.my_ns._add_suboperation(db_nslcmop, vnf_index, vdu_id, vdu_count_index,
396 vdu_name, primitive, mapped_primitive_params,
397 operationState, detailed_status, operationType,
398 RO_nsr_id, RO_scaling_info)
399 db_RO_nsr_id = db_nslcmop['_admin']['operations'][op_index]['RO_nsr_id']
400 self.assertEqual(op_index, 1)
401 self.assertEqual(RO_nsr_id, db_RO_nsr_id)
402
403 # Try to add an invalid suboperation, should return SUBOPERATION_STATUS_NOT_FOUND
404 op_index_invalid = self.my_ns._add_suboperation(None, None, None, None, None,
405 None, None, None,
406 None, None, None)
407 self.assertEqual(op_index_invalid, self.my_ns.SUBOPERATION_STATUS_NOT_FOUND)
408
409 # Test _check_or_add_scale_suboperation() and _check_or_add_scale_suboperation_RO()
410 # check the possible return values:
411 # - SUBOPERATION_STATUS_NEW: This is a new sub-operation
412 # - op_index (non-negative number): This is an existing sub-operation, operationState != 'COMPLETED'
413 # - SUBOPERATION_STATUS_SKIP: This is an existing sub-operation, operationState == 'COMPLETED'
414 def test_scale_check_or_add_scale_suboperation(self):
415 db_nslcmop = self.db.get_list('nslcmops')[0]
416 operationType = 'PRE-SCALE'
417 vnf_index = '1'
418 primitive = 'touch'
419 primitive_params = {'parameter':
420 [{'data-type': 'STRING',
421 'name': 'filename',
422 'default-value': '<touch_filename2>'}],
423 'name': 'touch'}
424
425 # Delete all sub-operations to be sure this is a new sub-operation
426 del db_nslcmop['_admin']['operations']
427
428 # Add a new sub-operation
429 # For new sub-operations, operationState is set to 'PROCESSING' by default
430 op_index_new = self.my_ns._check_or_add_scale_suboperation(
431 db_nslcmop, vnf_index, primitive, primitive_params, operationType)
432 self.assertEqual(op_index_new, self.my_ns.SUBOPERATION_STATUS_NEW)
433
434 # Use the same parameters again to match the already added sub-operation
435 # which has status 'PROCESSING' (!= 'COMPLETED') by default
436 # The expected return value is a non-negative number
437 op_index_existing = self.my_ns._check_or_add_scale_suboperation(
438 db_nslcmop, vnf_index, primitive, primitive_params, operationType)
439 self.assertTrue(op_index_existing >= 0)
440
441 # Change operationState 'manually' for this sub-operation
442 db_nslcmop['_admin']['operations'][op_index_existing]['operationState'] = 'COMPLETED'
443 # Then use the same parameters again to match the already added sub-operation,
444 # which now has status 'COMPLETED'
445 # The expected return value is SUBOPERATION_STATUS_SKIP
446 op_index_skip = self.my_ns._check_or_add_scale_suboperation(
447 db_nslcmop, vnf_index, primitive, primitive_params, operationType)
448 self.assertEqual(op_index_skip, self.my_ns.SUBOPERATION_STATUS_SKIP)
449
450 # RO sub-operation test:
451 # Repeat tests for the very similar _check_or_add_scale_suboperation_RO(),
452 RO_nsr_id = '1234567890'
453 RO_scaling_info = [{'type': 'create', 'count': 1, 'member-vnf-index': '1', 'osm_vdu_id': 'dataVM'}]
454 op_index_new_RO = self.my_ns._check_or_add_scale_suboperation(
455 db_nslcmop, vnf_index, None, None, 'SCALE-RO', RO_nsr_id, RO_scaling_info)
456 self.assertEqual(op_index_new_RO, self.my_ns.SUBOPERATION_STATUS_NEW)
457
458 # Use the same parameters again to match the already added RO sub-operation
459 op_index_existing_RO = self.my_ns._check_or_add_scale_suboperation(
460 db_nslcmop, vnf_index, None, None, 'SCALE-RO', RO_nsr_id, RO_scaling_info)
461 self.assertTrue(op_index_existing_RO >= 0)
462
463 # Change operationState 'manually' for this RO sub-operation
464 db_nslcmop['_admin']['operations'][op_index_existing_RO]['operationState'] = 'COMPLETED'
465 # Then use the same parameters again to match the already added sub-operation,
466 # which now has status 'COMPLETED'
467 # The expected return value is SUBOPERATION_STATUS_SKIP
468 op_index_skip_RO = self.my_ns._check_or_add_scale_suboperation(
469 db_nslcmop, vnf_index, None, None, 'SCALE-RO', RO_nsr_id, RO_scaling_info)
470 self.assertEqual(op_index_skip_RO, self.my_ns.SUBOPERATION_STATUS_SKIP)
471
472 async def test_deploy_kdus(self):
473 db_nsr = self.db.get_list("nsrs")[1]
474 db_vnfr = self.db.get_list("vnfrs")[2]
475 db_vnfrs = {"multikdu": db_vnfr}
476 nsr_id = db_nsr["_id"]
477 # nslcmop_id = self.db.get_list("nslcmops")[1]["_id"]
478 logging_text = "KDU"
479 self.my_ns.k8sclusterhelm.install = asynctest.CoroutineMock(return_value="k8s_id")
480 await self.my_ns.deploy_kdus(logging_text, nsr_id, db_nsr, db_vnfrs)
481 db_nsr = self.db.get_list("nsrs")[1]
482 self.assertIn("K8s", db_nsr["_admin"]["deployed"], "K8s entry not created at '_admin.deployed'")
483 self.assertIsInstance(db_nsr["_admin"]["deployed"]["K8s"], list, "K8s entry is not of type list")
484 self.assertEqual(len(db_nsr["_admin"]["deployed"]["K8s"]), 2, "K8s entry is not of type list")
485 k8s_instace_info = {"kdu-instance": "k8s_id", "k8scluster-uuid": "73d96432-d692-40d2-8440-e0c73aee209c",
486 "k8scluster-type": "chart",
487 "kdu-name": "ldap", "kdu-model": "stable/openldap:1.2.1"}
488
489 self.assertEqual(db_nsr["_admin"]["deployed"]["K8s"][0], k8s_instace_info)
490 k8s_instace_info["kdu-name"] = "mongo"
491 k8s_instace_info["kdu-model"] = "stable/mongodb"
492 self.assertEqual(db_nsr["_admin"]["deployed"]["K8s"][1], k8s_instace_info)
493
494
495 if __name__ == '__main__':
496 asynctest.main()