blob: 5bb49ad361f111e45fb9555230d473e77c6e9202 (
plain)
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
|
*** Settings ***
Library json
Library ONAPLibrary.Utilities
Library ONAPLibrary.Templating WITH NAME Templating
Library ONAPLibrary.SDC WITH NAME SDC
Resource global_properties.robot
*** Variables ***
${SDC_DESIGNER_USER_ID} cs0008
${DCAE_PATH} /dcae
${DCAE_CREATE_BLUEPRINT_PATH} /SERVICE/createBluePrint
${DCAE_VFCMT_TEMPLATE} sdc/create_vfcmt.jinja
${DCAE_COMPOSITION_TEMPLATE} sdc/dcae_composition.jinja
${DCAE_MONITORING_CONFIGURATION_TEMPLATE} sdc/dcae_monitoring_configuration.jinja
*** Keywords ***
Create Monitoring Template
[Documentation] Create a new monitoring template containing the DCAE VF, certify it and return the uuid
[Arguments] ${vfcmt_name} ${vf_uuid}
${vfcmt_uuid} Add VFCMT To DCAE-DS ${vfcmt_name}
Save Composition ${vfcmt_uuid} ${vf_uuid}
# Note that certification is not instructed in
# https://wiki.onap.org/display/DW/How+to+Create+a+Service+with+a+Monitoring+Configuration+using+SDC
# due to limitations of GUI so this test case goes beyond the instructions at this certification step
${cert_vfcmt_uuid} Certify VFCMT ${vfcmt_uuid}
[return] ${cert_vfcmt_uuid}
Add VFCMT To DCAE-DS
[Documentation] Create VFCMT with the given name and return its uuid
[Arguments] ${vfcmt_name}
${map}= Create Dictionary vfcmtName=${vfcmt_name} description=VFCMT created by robot
Create Environment create_vfcmt ${GLOBAL_TEMPLATE_FOLDER}
${data}= Apply Template create_vfcmt ${DCAE_VFCMT_TEMPLATE} ${map}
${resp}= SDC.Run Post Request ${GLOBAL_SDC_DCAE_BE_ENDPOINT} ${DCAE_PATH}/createVFCMT ${data} ${SDC_DESIGNER_USER_ID}
Should Be Equal As Strings ${resp.status_code} 200
[Return] ${resp.json()['uuid']}
Save Composition
[Arguments] ${vfcmt_uuid} ${vf_uuid}
${map}= Create Dictionary cid=${vfcmt_uuid} vf_id=${vf_uuid}
Create Environment dcae_composition ${GLOBAL_TEMPLATE_FOLDER}
${data}= Apply Template dcae_composition ${DCAE_COMPOSITION_TEMPLATE} ${map}
${resp}= SDC.Run Post Request ${GLOBAL_SDC_DCAE_BE_ENDPOINT} ${DCAE_PATH}/saveComposition/${vfcmt_uuid} ${data} ${SDC_DESIGNER_USER_ID}
Should Be Equal As Strings ${resp.status_code} 200
Certify VFCMT
[Arguments] ${vfcmt_uuid}
${resp}= SDC.Run Put Request ${GLOBAL_SDC_DCAE_BE_ENDPOINT} ${DCAE_PATH}/certify/vfcmt/${vfcmt_uuid} ${None} ${SDC_DESIGNER_USER_ID}
Should Be Equal As Strings ${resp.status_code} 200
[Return] ${resp.json()['uuid']}
Create Monitoring Configuration To DCAE-DS
[Documentation] Create a monitoring configuration to DCAE-DS using SDC Catalog Service uuid,
... VFMCT uuid and instance name and monitoring configuration name
[Arguments] ${vfcmt_uuid} ${cs_uuid} ${vfi_name} ${mc_name}
${mc_uuid} Add Monitoring Configuration To DCAE-DS ${vfcmt_uuid} ${cs_uuid} ${vfi_name} ${mc_name}
Submit Monitoring Configuration To DCAE-DS ${mc_uuid} ${cs_uuid} ${vfi_name}
Add Monitoring Configuration To DCAE-DS
[Arguments] ${vfcmt_uuid} ${cs_uuid} ${vfi_name} ${mc_name}
${map}= Create Dictionary template_uuid=${vfcmt_uuid} service_uuid=${cs_uuid} vfi_name=${vfi_name} name=${mc_name}
Create Environment dcae_monitoring_configuration ${GLOBAL_TEMPLATE_FOLDER}
${data}= Apply Template dcae_monitoring_configuration ${DCAE_MONITORING_CONFIGURATION_TEMPLATE} ${map}
${resp}= SDC.Run Post Request ${GLOBAL_SDC_DCAE_BE_ENDPOINT} ${DCAE_PATH}/importMC ${data} ${SDC_DESIGNER_USER_ID}
Should Be Equal As Strings ${resp.status_code} 200
[Return] ${resp.json()['vfcmt']['uuid']}
Submit Monitoring Configuration To DCAE-DS
[Arguments] ${mc_uuid} ${cs_uuid} ${vfi_name}
${url_vfi_name} url_encode_string ${vfi_name}
${resp}= SDC.Run Post Request ${GLOBAL_SDC_DCAE_BE_ENDPOINT} ${DCAE_PATH}${DCAE_CREATE_BLUEPRINT_PATH}/${mc_uuid}/${cs_uuid}/${url_vfi_name} ${None} ${SDC_DESIGNER_USER_ID}
Should Be Equal As Strings ${resp.status_code} 200
|