Gary Wu | 9abb61c | 2018-09-27 10:38:50 -0700 | [diff] [blame] | 1 | *** Settings *** |
| 2 | Library RequestsLibrary |
grabinsk | 78ef07a | 2019-05-06 11:26:25 +0200 | [diff] [blame] | 3 | Library Collections |
Gary Wu | 9abb61c | 2018-09-27 10:38:50 -0700 | [diff] [blame] | 4 | Library PrhLibrary.py |
| 5 | Resource ../../../common.robot |
| 6 | |
| 7 | *** Keywords *** |
kurczews | 859154a | 2019-04-26 11:31:51 +0200 | [diff] [blame] | 8 | Verify 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 |
Marcin Migdal | 8d000c3 | 2019-06-12 11:55:05 +0200 | [diff] [blame] | 16 | Wait Until Keyword Succeeds 10x 3000ms Check created PNF_READY notification ${expected_pnf_ready_event} |
kurczews | 859154a | 2019-04-26 11:31:51 +0200 | [diff] [blame] | 17 | |
| 18 | Verify 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} |
Marcin Migdal | 8d000c3 | 2019-06-12 11:55:05 +0200 | [diff] [blame] | 22 | Check created Logical Link ${expected_logical_link} |
kurczews | 859154a | 2019-04-26 11:31:51 +0200 | [diff] [blame] | 23 | |
| 24 | Verify 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} |
grabinsk | 8bc68e2 | 2019-06-14 13:56:17 +0200 | [diff] [blame^] | 28 | Log Invalid ves event: ${invalid_ves_event} |
biniek | e98a725 | 2019-06-03 11:46:23 +0200 | [diff] [blame] | 29 | ${notification}= Create invalid notification ${invalid_ves_event} |
| 30 | ${error_msg}= Set Variable Incorrect json, consumerDmaapModel can not be created: |
| 31 | Wait Until Keyword Succeeds 10x 3000ms Check PRH json log ${error_msg} ${notification} |
kurczews | 859154a | 2019-04-26 11:31:51 +0200 | [diff] [blame] | 32 | |
| 33 | Verify incorrect JSON event is logged |
| 34 | [Timeout] 60s |
| 35 | [Arguments] ${test_case_directory} |
| 36 | ${invalid_ves_event}= Get Data From File ${test_case_directory}/invalid-ves-event.json |
| 37 | Set VES event in DMaaP ${invalid_ves_event} |
grabinsk | 8bc68e2 | 2019-06-14 13:56:17 +0200 | [diff] [blame^] | 38 | Check PRH log |WARN |Incorrect json, consumerDmaapModel can not be created: |
kurczews | 859154a | 2019-04-26 11:31:51 +0200 | [diff] [blame] | 39 | |
| 40 | Verify missing AAI record is logged |
Marcin Migdal | ee95403 | 2019-04-30 12:23:29 +0200 | [diff] [blame] | 41 | [Timeout] 100s |
kurczews | 859154a | 2019-04-26 11:31:51 +0200 | [diff] [blame] | 42 | [Arguments] ${test_case_directory} |
| 43 | ${incorrect_aai_entry}= Get Data From File ${test_case_directory}/incorrect-aai-entry.json |
| 44 | ${ves_event}= Get Data From File ${test_case_directory}/ves-event.json |
| 45 | Add PNF entry in AAI ${incorrect_aai_entry} |
| 46 | Set VES event in DMaaP ${ves_event} |
grabinsk | 2d51f2b | 2019-06-10 11:35:48 +0200 | [diff] [blame] | 47 | Check PRH log Request failed for URL 'https://aai:3334/aai/v12/network/pnfs/pnf/NOK6061ZW8'. Response code: 404 Not Found |
kurczews | 859154a | 2019-04-26 11:31:51 +0200 | [diff] [blame] | 48 | |
| 49 | Verify AAI not responding is logged |
Marcin Migdal | ee95403 | 2019-04-30 12:23:29 +0200 | [diff] [blame] | 50 | [Timeout] 100s |
kurczews | 859154a | 2019-04-26 11:31:51 +0200 | [diff] [blame] | 51 | [Arguments] ${test_case_directory} |
| 52 | ${ves_event}= Get Data From File ${test_case_directory}/ves-event.json |
| 53 | Ensure Container Is Exited aai_simulator |
| 54 | Set VES event in DMaaP ${ves_event} |
grabinsk | 2d51f2b | 2019-06-10 11:35:48 +0200 | [diff] [blame] | 55 | Check PRH log connection timed out: aai Host is unreachable: aai |
kurczews | 859154a | 2019-04-26 11:31:51 +0200 | [diff] [blame] | 56 | Ensure Container Is Running aai_simulator |
| 57 | |
Marcin Migdal | c47ac0f | 2019-06-10 14:36:50 +0200 | [diff] [blame] | 58 | Verify PNF re registration |
| 59 | [Timeout] 100s |
| 60 | [Arguments] ${test_case_directory} |
| 61 | ${expected_logical_link}= Get Data From File ${test_case_directory}/expected-logical-link.json |
| 62 | Verify PNF ready sent ${test_case_directory} |
Marcin Migdal | 8d000c3 | 2019-06-12 11:55:05 +0200 | [diff] [blame] | 63 | Check created Logical Link ${expected_logical_link} |
| 64 | |
| 65 | ${ves_event}= Get Data From File ${test_case_directory}/ves-event.json |
| 66 | Set VES event in DMaaP ${ves_event} |
| 67 | ${expected_pnf_update_event}= Get Data From File ${test_case_directory}/expected-pnf-update-event.json |
| 68 | Wait Until Keyword Succeeds 10x 3000ms Check created PNF_UPDATE notification ${expected_pnf_update_event} |
Marcin Migdal | c47ac0f | 2019-06-10 14:36:50 +0200 | [diff] [blame] | 69 | |
kurczews | 859154a | 2019-04-26 11:31:51 +0200 | [diff] [blame] | 70 | Check CBS ready |
grabinsk | 78ef07a | 2019-05-06 11:26:25 +0200 | [diff] [blame] | 71 | ${resp}= Get Request ${consul_setup_session} /v1/catalog/services |
kurczews | 859154a | 2019-04-26 11:31:51 +0200 | [diff] [blame] | 72 | Should Be Equal As Strings ${resp.status_code} 200 |
grabinsk | 78ef07a | 2019-05-06 11:26:25 +0200 | [diff] [blame] | 73 | Log Service Catalog response: ${resp.content} |
| 74 | Dictionary Should Contain Key ${resp.json()} cbs |Consul service catalog should contain CBS entry |
kurczews | 859154a | 2019-04-26 11:31:51 +0200 | [diff] [blame] | 75 | |
Marcin Migdal | 8d000c3 | 2019-06-12 11:55:05 +0200 | [diff] [blame] | 76 | Check created PNF_READY notification |
kurczews | 859154a | 2019-04-26 11:31:51 +0200 | [diff] [blame] | 77 | [Arguments] ${expected_event_pnf_ready_in_dpaap} |
Marcin Migdal | 8d000c3 | 2019-06-12 11:55:05 +0200 | [diff] [blame] | 78 | ${resp}= Get Request ${dmaap_setup_session} /verify/pnf_ready headers=${suite_headers} |
kurczews | 859154a | 2019-04-26 11:31:51 +0200 | [diff] [blame] | 79 | Should Be Equal As Strings ${resp.status_code} 200 |
| 80 | Should Be Equal As JSON ${resp.content} ${expected_event_pnf_ready_in_dpaap} |
| 81 | |
Marcin Migdal | 8d000c3 | 2019-06-12 11:55:05 +0200 | [diff] [blame] | 82 | Check created PNF_UPDATE notification |
| 83 | [Arguments] ${expected_event_pnf_update_in_dpaap} |
| 84 | ${resp}= Get Request ${dmaap_setup_session} /verify/pnf_update headers=${suite_headers} |
| 85 | Log Response from DMaaP: ${resp.content} |
| 86 | Should Be Equal As Strings ${resp.status_code} 200 |
| 87 | #Should Be Equal As JSON ${resp.content} ${expected_event_pnf_ready_in_dpaap} |
| 88 | |
| 89 | Check created Logical Link |
kurczews | 859154a | 2019-04-26 11:31:51 +0200 | [diff] [blame] | 90 | [Arguments] ${expected_logical_link_in_aai} |
Marcin Migdal | 8d000c3 | 2019-06-12 11:55:05 +0200 | [diff] [blame] | 91 | ${resp}= Get Request ${aai_setup_session} /verify/created_logical_link headers=${suite_headers} |
kurczews | 859154a | 2019-04-26 11:31:51 +0200 | [diff] [blame] | 92 | Should Be Equal As Strings ${resp.status_code} 200 |
| 93 | Should Be Equal As JSON ${resp.content} ${expected_logical_link_in_aai} |
| 94 | |
| 95 | Check PRH log |
grabinsk | 2d51f2b | 2019-06-10 11:35:48 +0200 | [diff] [blame] | 96 | [Arguments] @{log_entries} |
| 97 | ${found}= Find one of log entryies ${log_entries} |
kurczews | 859154a | 2019-04-26 11:31:51 +0200 | [diff] [blame] | 98 | Should Be True ${found} |
| 99 | |
biniek | e98a725 | 2019-06-03 11:46:23 +0200 | [diff] [blame] | 100 | Check PRH json log |
| 101 | [Arguments] ${prefix} ${json} |
| 102 | ${found}= Find log json ${prefix} ${json} |
| 103 | Should Be True ${found} |
| 104 | |
kurczews | 859154a | 2019-04-26 11:31:51 +0200 | [diff] [blame] | 105 | Create event parsing error |
| 106 | [Arguments] ${ves_event} |
| 107 | ${notification}= Create invalid notification ${ves_event} |
| 108 | ${error_msg}= Catenate SEPARATOR= \\n |Incorrect json, consumerDmaapModel can not be created: ${notification} |
| 109 | [Return] ${error_msg} |
| 110 | |
| 111 | Add PNF entry in AAI |
| 112 | [Arguments] ${pnf_entry} |
Gary Wu | 9abb61c | 2018-09-27 10:38:50 -0700 | [diff] [blame] | 113 | ${headers}= Create Dictionary Accept=application/json Content-Type=application/json |
kurczews | 859154a | 2019-04-26 11:31:51 +0200 | [diff] [blame] | 114 | Log AAI url ${AAI_SIMULATOR_SETUP_URL} |
| 115 | ${resp}= Put Request ${aai_setup_session} /setup/add_pnf_entry headers=${suite_headers} data=${pnf_entry} |
| 116 | Should Be Equal As Strings ${resp.status_code} 200 |
| 117 | |
| 118 | Set VES event in DMaaP |
| 119 | [Arguments] ${ves_event} |
| 120 | ${resp}= Put Request ${dmaap_setup_session} /setup/ves_event headers=${suite_headers} data=${ves_event} |
| 121 | Should Be Equal As Strings ${resp.status_code} 200 |
| 122 | |
| 123 | Should Be Equal As JSON |
grabinsk | 08a9c63 | 2019-05-23 13:34:38 +0200 | [diff] [blame] | 124 | [Arguments] ${actual} ${expected} |
| 125 | Log EXPECTED: ${expected} |
| 126 | Log ACTUAL: ${actual} |
| 127 | ${expected_json}= Evaluate json.loads("""${expected}""") json |
| 128 | ${actual_json}= Evaluate json.loads("""${actual}""") json |
| 129 | Should Be Equal ${actual_json} ${expected_json} |
Gary Wu | 9abb61c | 2018-09-27 10:38:50 -0700 | [diff] [blame] | 130 | |
| 131 | Create sessions |
pkaras | c7abba8 | 2018-10-22 12:22:35 +0200 | [diff] [blame] | 132 | Create Session dmaap_setup_session ${DMAAP_SIMULATOR_SETUP_URL} |
| 133 | Set Suite Variable ${dmaap_setup_session} dmaap_setup_session |
pkaras | 55d3686 | 2018-10-17 15:08:34 +0200 | [diff] [blame] | 134 | Create Session aai_setup_session ${AAI_SIMULATOR_SETUP_URL} |
| 135 | Set Suite Variable ${aai_setup_session} aai_setup_session |
Marcin Migdal | fba99a5 | 2019-04-15 14:36:45 +0200 | [diff] [blame] | 136 | Create Session consul_setup_session ${CONSUL_SETUP_URL} |
| 137 | Set Suite Variable ${consul_setup_session} consul_setup_session |
pkaras | 55d3686 | 2018-10-17 15:08:34 +0200 | [diff] [blame] | 138 | |
| 139 | Reset Simulators |
| 140 | Reset AAI simulator |
pkaras | c7abba8 | 2018-10-22 12:22:35 +0200 | [diff] [blame] | 141 | Reset DMaaP simulator |
Gary Wu | 9abb61c | 2018-09-27 10:38:50 -0700 | [diff] [blame] | 142 | |
pkaras | 55d3686 | 2018-10-17 15:08:34 +0200 | [diff] [blame] | 143 | Reset AAI simulator |
| 144 | ${resp}= Post Request ${aai_setup_session} /reset |
| 145 | Should Be Equal As Strings ${resp.status_code} 200 |
pkaras | c7abba8 | 2018-10-22 12:22:35 +0200 | [diff] [blame] | 146 | |
| 147 | Reset DMaaP simulator |
| 148 | ${resp}= Post Request ${dmaap_setup_session} /reset |
Marcin Migdal | fba99a5 | 2019-04-15 14:36:45 +0200 | [diff] [blame] | 149 | Should Be Equal As Strings ${resp.status_code} 200 |
| 150 | |
kurczews | 859154a | 2019-04-26 11:31:51 +0200 | [diff] [blame] | 151 | Create headers |
| 152 | ${headers}= Create Dictionary Accept=application/json Content-Type=application/json |
Marcin Migdal | c47ac0f | 2019-06-10 14:36:50 +0200 | [diff] [blame] | 153 | Set Suite Variable ${suite_headers} ${headers} |