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 |
grabinsk | 0fc9eab | 2019-05-23 13:34:38 +0200 | [diff] [blame] | 16 | Wait Until Keyword Succeeds 10x 3000ms Check recorded 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} |
| 22 | Check recorded Logical Link ${expected_logical_link} |
| 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} |
biniek | e98a725 | 2019-06-03 11:46:23 +0200 | [diff] [blame^] | 28 | ${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} |
kurczews | 859154a | 2019-04-26 11:31:51 +0200 | [diff] [blame] | 31 | |
| 32 | Verify 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} |
grabinsk | db4c4a5 | 2019-05-22 14:59:02 +0200 | [diff] [blame] | 37 | Wait Until Keyword Succeeds 10x 3000ms Check PRH log |com.google.gson.JsonSyntaxException: Expected a com.google.gson.JsonArray |
kurczews | 859154a | 2019-04-26 11:31:51 +0200 | [diff] [blame] | 38 | |
| 39 | Verify missing AAI record is logged |
Marcin Migdal | ee95403 | 2019-04-30 12:23:29 +0200 | [diff] [blame] | 40 | [Timeout] 100s |
kurczews | 859154a | 2019-04-26 11:31:51 +0200 | [diff] [blame] | 41 | [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} |
| 46 | Wait Until Keyword Succeeds 10x 3000ms Check PRH log |AAIProducerTask exception has been registered |
| 47 | Wait Until Keyword Succeeds 10x 3000ms Check PRH log |Chain of tasks have been aborted due to errors in PRH workflow |
| 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} |
| 55 | Wait Until Keyword Succeeds 10x 3000ms Check PRH log java.net.UnknownHostException: aai |
| 56 | Ensure Container Is Running aai_simulator |
| 57 | |
| 58 | Check CBS ready |
grabinsk | 78ef07a | 2019-05-06 11:26:25 +0200 | [diff] [blame] | 59 | ${resp}= Get Request ${consul_setup_session} /v1/catalog/services |
kurczews | 859154a | 2019-04-26 11:31:51 +0200 | [diff] [blame] | 60 | Should Be Equal As Strings ${resp.status_code} 200 |
grabinsk | 78ef07a | 2019-05-06 11:26:25 +0200 | [diff] [blame] | 61 | Log Service Catalog response: ${resp.content} |
| 62 | 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] | 63 | |
| 64 | Check recorded PNF_READY notification |
| 65 | [Arguments] ${expected_event_pnf_ready_in_dpaap} |
| 66 | ${resp}= Get Request ${dmaap_setup_session} /setup/pnf_ready headers=${suite_headers} |
| 67 | Should Be Equal As Strings ${resp.status_code} 200 |
| 68 | Should Be Equal As JSON ${resp.content} ${expected_event_pnf_ready_in_dpaap} |
| 69 | |
| 70 | Check recorded Logical Link |
| 71 | [Arguments] ${expected_logical_link_in_aai} |
| 72 | ${resp}= Get Request ${aai_setup_session} /setup/created_logical_link headers=${suite_headers} |
| 73 | Should Be Equal As Strings ${resp.status_code} 200 |
| 74 | Should Be Equal As JSON ${resp.content} ${expected_logical_link_in_aai} |
| 75 | |
| 76 | Check PRH log |
| 77 | [Arguments] ${log_entry} |
| 78 | ${found}= Find log entry ${log_entry} |
| 79 | Should Be True ${found} |
| 80 | |
biniek | e98a725 | 2019-06-03 11:46:23 +0200 | [diff] [blame^] | 81 | Check PRH json log |
| 82 | [Arguments] ${prefix} ${json} |
| 83 | ${found}= Find log json ${prefix} ${json} |
| 84 | Should Be True ${found} |
| 85 | |
kurczews | 859154a | 2019-04-26 11:31:51 +0200 | [diff] [blame] | 86 | Create event parsing error |
| 87 | [Arguments] ${ves_event} |
| 88 | ${notification}= Create invalid notification ${ves_event} |
| 89 | ${error_msg}= Catenate SEPARATOR= \\n |Incorrect json, consumerDmaapModel can not be created: ${notification} |
| 90 | [Return] ${error_msg} |
| 91 | |
| 92 | Add PNF entry in AAI |
| 93 | [Arguments] ${pnf_entry} |
Gary Wu | 9abb61c | 2018-09-27 10:38:50 -0700 | [diff] [blame] | 94 | ${headers}= Create Dictionary Accept=application/json Content-Type=application/json |
kurczews | 859154a | 2019-04-26 11:31:51 +0200 | [diff] [blame] | 95 | Log AAI url ${AAI_SIMULATOR_SETUP_URL} |
| 96 | ${resp}= Put Request ${aai_setup_session} /setup/add_pnf_entry headers=${suite_headers} data=${pnf_entry} |
| 97 | Should Be Equal As Strings ${resp.status_code} 200 |
| 98 | |
| 99 | Set VES event in DMaaP |
| 100 | [Arguments] ${ves_event} |
| 101 | ${resp}= Put Request ${dmaap_setup_session} /setup/ves_event headers=${suite_headers} data=${ves_event} |
| 102 | Should Be Equal As Strings ${resp.status_code} 200 |
| 103 | |
| 104 | Should Be Equal As JSON |
grabinsk | 08a9c63 | 2019-05-23 13:34:38 +0200 | [diff] [blame] | 105 | [Arguments] ${actual} ${expected} |
| 106 | Log EXPECTED: ${expected} |
| 107 | Log ACTUAL: ${actual} |
| 108 | ${expected_json}= Evaluate json.loads("""${expected}""") json |
| 109 | ${actual_json}= Evaluate json.loads("""${actual}""") json |
| 110 | Should Be Equal ${actual_json} ${expected_json} |
Gary Wu | 9abb61c | 2018-09-27 10:38:50 -0700 | [diff] [blame] | 111 | |
| 112 | Create sessions |
pkaras | c7abba8 | 2018-10-22 12:22:35 +0200 | [diff] [blame] | 113 | Create Session dmaap_setup_session ${DMAAP_SIMULATOR_SETUP_URL} |
| 114 | Set Suite Variable ${dmaap_setup_session} dmaap_setup_session |
pkaras | 55d3686 | 2018-10-17 15:08:34 +0200 | [diff] [blame] | 115 | Create Session aai_setup_session ${AAI_SIMULATOR_SETUP_URL} |
| 116 | Set Suite Variable ${aai_setup_session} aai_setup_session |
Marcin Migdal | fba99a5 | 2019-04-15 14:36:45 +0200 | [diff] [blame] | 117 | Create Session consul_setup_session ${CONSUL_SETUP_URL} |
| 118 | Set Suite Variable ${consul_setup_session} consul_setup_session |
pkaras | 55d3686 | 2018-10-17 15:08:34 +0200 | [diff] [blame] | 119 | |
| 120 | Reset Simulators |
| 121 | Reset AAI simulator |
pkaras | c7abba8 | 2018-10-22 12:22:35 +0200 | [diff] [blame] | 122 | Reset DMaaP simulator |
Gary Wu | 9abb61c | 2018-09-27 10:38:50 -0700 | [diff] [blame] | 123 | |
pkaras | 55d3686 | 2018-10-17 15:08:34 +0200 | [diff] [blame] | 124 | Reset AAI simulator |
| 125 | ${resp}= Post Request ${aai_setup_session} /reset |
| 126 | Should Be Equal As Strings ${resp.status_code} 200 |
pkaras | c7abba8 | 2018-10-22 12:22:35 +0200 | [diff] [blame] | 127 | |
| 128 | Reset DMaaP simulator |
| 129 | ${resp}= Post Request ${dmaap_setup_session} /reset |
Marcin Migdal | fba99a5 | 2019-04-15 14:36:45 +0200 | [diff] [blame] | 130 | Should Be Equal As Strings ${resp.status_code} 200 |
| 131 | |
kurczews | 859154a | 2019-04-26 11:31:51 +0200 | [diff] [blame] | 132 | Create headers |
| 133 | ${headers}= Create Dictionary Accept=application/json Content-Type=application/json |
| 134 | Set Suite Variable ${suite_headers} ${headers} |