diff options
Diffstat (limited to 'src/onaptests/configuration')
-rw-r--r-- | src/onaptests/configuration/basic_sdnc_settings.py | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/src/onaptests/configuration/basic_sdnc_settings.py b/src/onaptests/configuration/basic_sdnc_settings.py new file mode 100644 index 0000000..e6bbdcc --- /dev/null +++ b/src/onaptests/configuration/basic_sdnc_settings.py @@ -0,0 +1,69 @@ +from .settings import * + +CLEANUP_FLAG = True + +SERVICE_NAME = "Basic SDNC test" + +SERVICE_COMPONENTS = "SDNC" + +SERVICE_ID = "pythonsdk-tests-service-01" + +SERVICE_STATUS = { + "rpc-action": "activate", + "response-message": "test-message-1", + "response-timestamp": "2023-05-09T13:14:30.540Z", + "request-status": "synccomplete", + "final-indicator": "Y", + "action": "CreateVnfInstance", + "rpc-name": "vnf-topology-operation", + "response-code": "200" +} + +SERVICE_CHANGED_STATUS = { + "rpc-action": "activate", + "response-message": "changed-test-message-1", + "response-timestamp": "2023-05-09T13:14:30.540Z", + "request-status": "synccomplete", + "final-indicator": "Y", + "action": "CreateVnfInstance", + "rpc-name": "vnf-topology-operation", + "response-code": "200" +} + +SERVICE_DATA = { + "service-level-oper-status": { + "last-rpc-action": "assign", + "last-action": "CreateServiceInstance", + "order-status": "Created" + }, + "service-request-input": { + "service-input-parameters": { + "param": [ + { + "name": "orchestrator", + "value": "multicloud" + } + ] + }, + "service-instance-name": "gnb-93100001" + } +} + +SERVICE_CHANGED_DATA = { + "service-level-oper-status": { + "last-rpc-action": "assign", + "last-action": "CreateServiceInstance", + "order-status": "Created" + }, + "service-request-input": { + "service-input-parameters": { + "param": [ + { + "name": "orchestrator", + "value": "multicloud" + } + ] + }, + "service-instance-name": "gnb-93100002" + } +} |