[INTEGRATION] Support additions in committers automation tool
[integration.git] / test / mocks / ran-nssmf-simulator / RanNssmfSimulator / NssManager.py
1 #  ============LICENSE_START=======================================================
2 #  Copyright (C) 2020 Huawei Technologies Co., Ltd. All rights reserved.
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 #  ============LICENSE_END=========================================================
16
17 import uuid
18
19 from .utils import getLogger
20
21
22 logger = getLogger("NssManager")
23
24
25 class NssError(ValueError):
26     pass
27
28
29 def allocateNssi(requestBody):
30     sliceProfile = requestBody["attributeListIn"]
31     sliceProfileId = sliceProfile["sliceProfileId"]
32
33     nSSId = uuid.uuid4().hex
34
35     responseBody = {
36         "attributeListOut": {},
37         "href": nSSId
38     }
39
40     logger.info("Allocate NSSI for sliceProfileId %s success, nSSId: %s" % (sliceProfileId, nSSId))
41     return responseBody
42
43
44 def deallocateNssi(sliceProfileId, requestBody):
45     nSSId = requestBody["nSSId"]
46
47     logger.info("Deallocate NSSI for sliceProfileId %s success, nSSId: %s" % (sliceProfileId, nSSId))
48     return ""