blob: 685306f5531600a9cb7e8d80657fd6b40270eb39 (
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
|
*** Settings ***
Documentation CMPv2 test cases
Library OperatingSystem
Library RequestsLibrary
Library Collections
Library ONAPLibrary.JSON
Library ONAPLibrary.Utilities
Library ONAPLibrary.Templating WITH NAME Templating
Resource pnf_registration_without_SO_template.robot
Resource ../dcae/deployment.robot
Resource ../dcae/inventory.robot
Resource ../global_properties.robot
*** Variables ***
${pnf_simulator_single_event}= ves/pnf_simulator_single_event.jinja
${VES_ENDPOINT} ${GLOBAL_DCAE_VES_HTTPS_PROTOCOL}://${GLOBAL_INJECTED_DCAE_VES_HOST}:${GLOBAL_DCAE_VES_HTTPS_SERVER_PORT}
${VES_data_path} eventListener/v7
${single_event_data_path} /simulator/event
${users} ${EXECDIR}/robot/assets/cmpv2/mongo-users.json
*** Keywords ***
Pnf simulator send single VES event
[Arguments] ${event} ${ves_host} ${ves_port} ${pnf_sim_host} ${pnf_sim_port}
${pnf_sim_endpoint}= Set Variable http://${pnf_sim_host}:${pnf_sim_port}
${ves_url}= Set Variable ${GLOBAL_DCAE_VES_HTTPS_PROTOCOL}://${ves_host}:${ves_port}/${VES_data_path}
${single_event}= Create Dictionary event=${event} ves_url=${ves_url}
Templating.Create Environment pnf ${GLOBAL_TEMPLATE_FOLDER}
${data}= Templating.Apply Template pnf ${pnf_simulator_single_event} ${single_event}
${pnf_sim_endpoint}= Set Variable http://${pnf_sim_host}:${pnf_sim_port}
${session}= Create Session pnf_sim ${pnf_sim_endpoint}
${headers}= Create Dictionary Accept=application/json Content-Type=application/json
${post_resp}= Post Request pnf_sim ${single_event_data_path} data=${data} headers=${headers}
Log PNF registration request ${data}
Should Be Equal As Strings ${post_resp.status_code} 202
Log VES has accepted event with status code ${post_resp.status_code}
Usecase Teardown
Undeploy Service mongo-dep
Undeploy Service pnf-simulator-dep
Undeploy Service ves-collector-cmpv2-dep
Delete Blueprint From Inventory ${serviceTypeIdMongo}
Delete Blueprint From Inventory ${serviceTypeIdPnfSimulator}
|