Enhanced SDNC test to cover SVC logic check
[testsuite/pythonsdk-tests.git] / src / onaptests / configuration / basic_sdnc_settings.py
1 from .settings import *
2
3 CLEANUP_FLAG = True
4
5 SERVICE_NAME = "Basic SDNC test"
6
7 SERVICE_COMPONENTS = "SDNC"
8
9 SERVICE_ID = "pythonsdk-tests-service-01"
10
11 SERVICE_STATUS = {
12     "rpc-action": "activate",
13     "response-message": "test-message-1",
14     "response-timestamp": "2023-05-09T13:14:30.540Z",
15     "request-status": "synccomplete",
16     "final-indicator": "Y",
17     "action": "CreateVnfInstance",
18     "rpc-name": "vnf-topology-operation",
19     "response-code": "200"
20 }
21
22 SERVICE_CHANGED_STATUS = {
23     "rpc-action": "activate",
24     "response-message": "changed-test-message-1",
25     "response-timestamp": "2023-05-09T13:14:30.540Z",
26     "request-status": "synccomplete",
27     "final-indicator": "Y",
28     "action": "CreateVnfInstance",
29     "rpc-name": "vnf-topology-operation",
30     "response-code": "200"
31 }
32
33 SERVICE_DATA = {
34     "service-level-oper-status": {
35         "last-rpc-action": "assign",
36         "last-action": "CreateServiceInstance",
37         "order-status": "Created"
38     },
39     "service-request-input": {
40         "service-input-parameters": {
41             "param": [
42                 {
43                     "name": "orchestrator",
44                     "value": "multicloud"
45                 }
46             ]
47         },
48         "service-instance-name": "gnb-93100001"
49     }
50 }
51
52 SERVICE_CHANGED_DATA = {
53     "service-level-oper-status": {
54         "last-rpc-action": "assign",
55         "last-action": "CreateServiceInstance",
56         "order-status": "Created"
57     },
58     "service-request-input": {
59         "service-input-parameters": {
60             "param": [
61                 {
62                     "name": "orchestrator",
63                     "value": "multicloud"
64                 }
65             ]
66         },
67         "service-instance-name": "gnb-93100002"
68     }
69 }
70
71 VF_MODULE_NAME = "sdnc-sanity-vf-module"
72
73 VNF_NAME = "sdnc-sanity-vnf-name"
74
75 VNF_TYPE = "sdnc-sanity-vnf-type"