blob: 86c109548274ae6a0f9f8919390719b60562b644 [file] [log] [blame]
Gary Wu9abb61c2018-09-27 10:38:50 -07001*** Settings ***
2Library RequestsLibrary
grabinsk78ef07a2019-05-06 11:26:25 +02003Library Collections
Gary Wu9abb61c2018-09-27 10:38:50 -07004Library PrhLibrary.py
5Resource ../../../common.robot
6
7*** Keywords ***
kurczews859154a2019-04-26 11:31:51 +02008Verify PNF ready sent
9 [Arguments] ${test_case_directory}
10 ${pnf_entry}= Get Data From File ${test_case_directory}/aai-entry.json
11 ${ves_event}= Get Data From File ${test_case_directory}/ves-event.json
12 ${expected_pnf_ready_event}= Get Data From File ${test_case_directory}/expected-pnf-ready-event.json
13 Add PNF entry in AAI ${pnf_entry}
14 Set VES event in DMaaP ${ves_event}
15 Wait Until Keyword Succeeds 10x 3000ms Check CBS ready
grabinsk0fc9eab2019-05-23 13:34:38 +020016 Wait Until Keyword Succeeds 10x 3000ms Check recorded PNF_READY notification ${expected_pnf_ready_event}
kurczews859154a2019-04-26 11:31:51 +020017
18Verify PNF ready sent and logical link created
19 [Arguments] ${test_case_directory}
20 ${expected_logical_link}= Get Data From File ${test_case_directory}/expected-logical-link.json
21 Verify PNF ready sent ${test_case_directory}
22 Check recorded Logical Link ${expected_logical_link}
23
24Verify event with missing required field is logged
25 [Arguments] ${test_case_directory}
26 ${invalid_ves_event}= Get Data From File ${test_case_directory}/invalid-ves-event.json
27 Set VES event in DMaaP ${invalid_ves_event}
binieke98a7252019-06-03 11:46:23 +020028 ${notification}= Create invalid notification ${invalid_ves_event}
29 ${error_msg}= Set Variable Incorrect json, consumerDmaapModel can not be created:
30 Wait Until Keyword Succeeds 10x 3000ms Check PRH json log ${error_msg} ${notification}
kurczews859154a2019-04-26 11:31:51 +020031
32Verify incorrect JSON event is logged
33 [Timeout] 60s
34 [Arguments] ${test_case_directory}
35 ${invalid_ves_event}= Get Data From File ${test_case_directory}/invalid-ves-event.json
36 Set VES event in DMaaP ${invalid_ves_event}
grabinsk2d51f2b2019-06-10 11:35:48 +020037 Check PRH log |com.google.gson.JsonSyntaxException: Expected a com.google.gson.JsonArray
kurczews859154a2019-04-26 11:31:51 +020038
39Verify missing AAI record is logged
Marcin Migdalee954032019-04-30 12:23:29 +020040 [Timeout] 100s
kurczews859154a2019-04-26 11:31:51 +020041 [Arguments] ${test_case_directory}
42 ${incorrect_aai_entry}= Get Data From File ${test_case_directory}/incorrect-aai-entry.json
43 ${ves_event}= Get Data From File ${test_case_directory}/ves-event.json
44 Add PNF entry in AAI ${incorrect_aai_entry}
45 Set VES event in DMaaP ${ves_event}
grabinsk2d51f2b2019-06-10 11:35:48 +020046 Check PRH log Request failed for URL 'https://aai:3334/aai/v12/network/pnfs/pnf/NOK6061ZW8'. Response code: 404 Not Found
kurczews859154a2019-04-26 11:31:51 +020047
48Verify AAI not responding is logged
Marcin Migdalee954032019-04-30 12:23:29 +020049 [Timeout] 100s
kurczews859154a2019-04-26 11:31:51 +020050 [Arguments] ${test_case_directory}
51 ${ves_event}= Get Data From File ${test_case_directory}/ves-event.json
52 Ensure Container Is Exited aai_simulator
53 Set VES event in DMaaP ${ves_event}
grabinsk2d51f2b2019-06-10 11:35:48 +020054 Check PRH log connection timed out: aai Host is unreachable: aai
kurczews859154a2019-04-26 11:31:51 +020055 Ensure Container Is Running aai_simulator
56
Marcin Migdalc47ac0f2019-06-10 14:36:50 +020057Verify PNF re registration
58 [Timeout] 100s
59 [Arguments] ${test_case_directory}
60 ${expected_logical_link}= Get Data From File ${test_case_directory}/expected-logical-link.json
61 Verify PNF ready sent ${test_case_directory}
62 Check recorded Logical Link ${expected_logical_link}
63
kurczews859154a2019-04-26 11:31:51 +020064Check CBS ready
grabinsk78ef07a2019-05-06 11:26:25 +020065 ${resp}= Get Request ${consul_setup_session} /v1/catalog/services
kurczews859154a2019-04-26 11:31:51 +020066 Should Be Equal As Strings ${resp.status_code} 200
grabinsk78ef07a2019-05-06 11:26:25 +020067 Log Service Catalog response: ${resp.content}
68 Dictionary Should Contain Key ${resp.json()} cbs |Consul service catalog should contain CBS entry
kurczews859154a2019-04-26 11:31:51 +020069
70Check recorded PNF_READY notification
71 [Arguments] ${expected_event_pnf_ready_in_dpaap}
72 ${resp}= Get Request ${dmaap_setup_session} /setup/pnf_ready headers=${suite_headers}
73 Should Be Equal As Strings ${resp.status_code} 200
74 Should Be Equal As JSON ${resp.content} ${expected_event_pnf_ready_in_dpaap}
75
76Check recorded Logical Link
77 [Arguments] ${expected_logical_link_in_aai}
78 ${resp}= Get Request ${aai_setup_session} /setup/created_logical_link headers=${suite_headers}
79 Should Be Equal As Strings ${resp.status_code} 200
80 Should Be Equal As JSON ${resp.content} ${expected_logical_link_in_aai}
81
82Check PRH log
grabinsk2d51f2b2019-06-10 11:35:48 +020083 [Arguments] @{log_entries}
84 ${found}= Find one of log entryies ${log_entries}
kurczews859154a2019-04-26 11:31:51 +020085 Should Be True ${found}
86
binieke98a7252019-06-03 11:46:23 +020087Check PRH json log
88 [Arguments] ${prefix} ${json}
89 ${found}= Find log json ${prefix} ${json}
90 Should Be True ${found}
91
kurczews859154a2019-04-26 11:31:51 +020092Create event parsing error
93 [Arguments] ${ves_event}
94 ${notification}= Create invalid notification ${ves_event}
95 ${error_msg}= Catenate SEPARATOR= \\n |Incorrect json, consumerDmaapModel can not be created: ${notification}
96 [Return] ${error_msg}
97
98Add PNF entry in AAI
99 [Arguments] ${pnf_entry}
Gary Wu9abb61c2018-09-27 10:38:50 -0700100 ${headers}= Create Dictionary Accept=application/json Content-Type=application/json
kurczews859154a2019-04-26 11:31:51 +0200101 Log AAI url ${AAI_SIMULATOR_SETUP_URL}
102 ${resp}= Put Request ${aai_setup_session} /setup/add_pnf_entry headers=${suite_headers} data=${pnf_entry}
103 Should Be Equal As Strings ${resp.status_code} 200
104
105Set VES event in DMaaP
106 [Arguments] ${ves_event}
107 ${resp}= Put Request ${dmaap_setup_session} /setup/ves_event headers=${suite_headers} data=${ves_event}
108 Should Be Equal As Strings ${resp.status_code} 200
109
110Should Be Equal As JSON
grabinsk08a9c632019-05-23 13:34:38 +0200111 [Arguments] ${actual} ${expected}
112 Log EXPECTED: ${expected}
113 Log ACTUAL: ${actual}
114 ${expected_json}= Evaluate json.loads("""${expected}""") json
115 ${actual_json}= Evaluate json.loads("""${actual}""") json
116 Should Be Equal ${actual_json} ${expected_json}
Gary Wu9abb61c2018-09-27 10:38:50 -0700117
118Create sessions
pkarasc7abba82018-10-22 12:22:35 +0200119 Create Session dmaap_setup_session ${DMAAP_SIMULATOR_SETUP_URL}
120 Set Suite Variable ${dmaap_setup_session} dmaap_setup_session
pkaras55d36862018-10-17 15:08:34 +0200121 Create Session aai_setup_session ${AAI_SIMULATOR_SETUP_URL}
122 Set Suite Variable ${aai_setup_session} aai_setup_session
Marcin Migdalfba99a52019-04-15 14:36:45 +0200123 Create Session consul_setup_session ${CONSUL_SETUP_URL}
124 Set Suite Variable ${consul_setup_session} consul_setup_session
pkaras55d36862018-10-17 15:08:34 +0200125
126Reset Simulators
127 Reset AAI simulator
pkarasc7abba82018-10-22 12:22:35 +0200128 Reset DMaaP simulator
Gary Wu9abb61c2018-09-27 10:38:50 -0700129
pkaras55d36862018-10-17 15:08:34 +0200130Reset AAI simulator
131 ${resp}= Post Request ${aai_setup_session} /reset
132 Should Be Equal As Strings ${resp.status_code} 200
pkarasc7abba82018-10-22 12:22:35 +0200133
134Reset DMaaP simulator
135 ${resp}= Post Request ${dmaap_setup_session} /reset
Marcin Migdalfba99a52019-04-15 14:36:45 +0200136 Should Be Equal As Strings ${resp.status_code} 200
137
kurczews859154a2019-04-26 11:31:51 +0200138Create headers
139 ${headers}= Create Dictionary Accept=application/json Content-Type=application/json
Marcin Migdalc47ac0f2019-06-10 14:36:50 +0200140 Set Suite Variable ${suite_headers} ${headers}