wejs | 060bc42 | 2018-05-25 13:58:11 +0200 | [diff] [blame] | 1 | *** Settings *** |
Mariusz Wagner | 5f108de | 2018-07-12 08:36:13 +0200 | [diff] [blame] | 2 | Documentation Integration tests for PRH. |
| 3 | ... PRH receive events from DMaaP and produce or not PNF_READY notification depends on required fields in received event. |
Mariusz Wagner | 831baff | 2018-09-14 14:24:02 +0200 | [diff] [blame] | 4 | Suite Setup Run keywords Create header Create sessions |
Mariusz Wagner | cfd26b9 | 2018-06-13 14:30:27 +0200 | [diff] [blame] | 5 | Library resources/PrhLibrary.py |
Mariusz Wagner | 5f108de | 2018-07-12 08:36:13 +0200 | [diff] [blame] | 6 | Resource resources/prh_library.robot |
Mariusz Wagner | 831baff | 2018-09-14 14:24:02 +0200 | [diff] [blame] | 7 | Resource ../../common.robot |
wejs | 060bc42 | 2018-05-25 13:58:11 +0200 | [diff] [blame] | 8 | |
| 9 | *** Variables *** |
Mariusz Wagner | 5f108de | 2018-07-12 08:36:13 +0200 | [diff] [blame] | 10 | ${DMAAP_SIMULATOR_URL} http://${DMAAP_SIMULATOR} |
| 11 | ${AAI_SIMULATOR_URL} http://${AAI_SIMULATOR} |
Mariusz Wagner | 4a6ece4 | 2018-06-05 15:54:27 +0200 | [diff] [blame] | 12 | ${PRH_URL} http://${PRH} |
Mariusz Wagner | 831baff | 2018-09-14 14:24:02 +0200 | [diff] [blame] | 13 | ${EVENT_WITH_ALL_VALID_REQUIRED_FIELDS} %{WORKSPACE}/test/csit/tests/dcaegen2/prh-testcases/assets/json_events/event_with_all_fields.json |
| 14 | ${EVENT_WITH_IPV4} %{WORKSPACE}/test/csit/tests/dcaegen2/prh-testcases/assets/json_events/event_with_IPV4.json |
| 15 | ${EVENT_WITH_IPV6} %{WORKSPACE}/test/csit/tests/dcaegen2/prh-testcases/assets/json_events/event_with_IPV6.json |
| 16 | ${EVENT_WITH_MISSING_IPV4_AND_IPV6} %{WORKSPACE}/test/csit/tests/dcaegen2/prh-testcases/assets/json_events/event_with_missing_IPV4_and_IPV6.json |
| 17 | ${EVENT_WITH_MISSING_SOURCENAME} %{WORKSPACE}/test/csit/tests/dcaegen2/prh-testcases/assets/json_events/event_with_missing_sourceName.json |
| 18 | ${EVENT_WITH_MISSING_SOURCENAME_AND_IPV4} %{WORKSPACE}/test/csit/tests/dcaegen2/prh-testcases/assets/json_events/event_with_missing_sourceName_and_IPV4.json |
| 19 | ${EVENT_WITH_MISSING_SOURCENAME_AND_IPV6} %{WORKSPACE}/test/csit/tests/dcaegen2/prh-testcases/assets/json_events/event_with_missing_sourceName_and_IPV6.json |
| 20 | ${EVENT_WITH_MISSING_SOURCENAME_IPV4_AND_IPV6} %{WORKSPACE}/test/csit/tests/dcaegen2/prh-testcases/assets/json_events/event_with_missing_sourceName_IPV4_and_IPV6.json |
| 21 | ${Not_json_format} %{WORKSPACE}/test/csit/tests/dcaegen2/prh-testcases/assets/json_events/not_json_format.json |
wejs | 060bc42 | 2018-05-25 13:58:11 +0200 | [diff] [blame] | 22 | |
| 23 | *** Test Cases *** |
Mariusz Wagner | 5f108de | 2018-07-12 08:36:13 +0200 | [diff] [blame] | 24 | Valid DMaaP event can be converted to PNF_READY notification |
| 25 | [Documentation] PRH get valid event from DMaaP with required fields - PRH produce PNF_READY notification |
| 26 | [Tags] PRH Valid event |
| 27 | [Template] Valid event processing |
| 28 | ${EVENT_WITH_ALL_VALID_REQUIRED_FIELDS} |
Mariusz Wagner | 831baff | 2018-09-14 14:24:02 +0200 | [diff] [blame] | 29 | ${EVENT_WITH_IPV4} |
| 30 | ${EVENT_WITH_IPV6} |
wejs | 060bc42 | 2018-05-25 13:58:11 +0200 | [diff] [blame] | 31 | |
Mariusz Wagner | 5f108de | 2018-07-12 08:36:13 +0200 | [diff] [blame] | 32 | Invalid DMaaP event cannot be converted to PNF_READY notification |
| 33 | [Documentation] PRH get invalid event from DMaaP with missing required fields - PRH does not produce PNF_READY notification |
| 34 | [Tags] PRH Invalid event |
| 35 | [Template] Invalid event processing |
Mariusz Wagner | 831baff | 2018-09-14 14:24:02 +0200 | [diff] [blame] | 36 | ${EVENT_WITH_MISSING_IPV4_AND_IPV6} |
| 37 | ${EVENT_WITH_MISSING_SOURCENAME} |
| 38 | ${EVENT_WITH_MISSING_SOURCENAME_AND_IPV4} |
| 39 | ${EVENT_WITH_MISSING_SOURCENAME_AND_IPV6} |
| 40 | ${EVENT_WITH_MISSING_SOURCENAME_IPV4_AND_IPV6} |
Mariusz Wagner | a2a6c98 | 2018-06-14 15:53:56 +0200 | [diff] [blame] | 41 | |
Mariusz Wagner | 5f108de | 2018-07-12 08:36:13 +0200 | [diff] [blame] | 42 | Get valid event from DMaaP and record in AAI does not exist |
| 43 | [Documentation] PRH get valid event from DMaaP with all required fields and in AAI record doesn't exist - PRH does not produce PNF_READY notification |
| 44 | [Tags] PRH Missing AAI record |
Mariusz Wagner | 60be36d | 2018-07-05 11:32:51 +0200 | [diff] [blame] | 45 | [Timeout] 30s |
Mariusz Wagner | 831baff | 2018-09-14 14:24:02 +0200 | [diff] [blame] | 46 | ${data}= Get Data From File ${EVENT_WITH_ALL_VALID_REQUIRED_FIELDS} |
Mariusz Wagner | 3cbe547 | 2018-07-30 14:19:50 +0200 | [diff] [blame] | 47 | Set PNF name in AAI wrong_aai_record |
Mariusz Wagner | 831baff | 2018-09-14 14:24:02 +0200 | [diff] [blame] | 48 | Set event in DMaaP ${data} |
Mariusz Wagner | 3479978 | 2018-09-06 12:48:32 +0200 | [diff] [blame] | 49 | Wait Until Keyword Succeeds 100x 300ms Check PRH log java.io.IOException: Connection closed prematurely |
| 50 | |
| 51 | Event in DMaaP is not JSON format |
| 52 | [Documentation] PRH get not JSON format event from DMaaP - PRH does not produce PNF_READY notification |
| 53 | [Tags] PRH |
Mariusz Wagner | 831baff | 2018-09-14 14:24:02 +0200 | [diff] [blame] | 54 | ${data}= Get Data From File ${Not_json_format} |
| 55 | Set event in DMaaP ${data} |
Mariusz Wagner | 3479978 | 2018-09-06 12:48:32 +0200 | [diff] [blame] | 56 | Wait Until Keyword Succeeds 100x 300ms Check PRH log |java.lang.IllegalStateException: Not a JSON Array: |
Mariusz Wagner | 6d58832 | 2018-07-25 12:26:49 +0200 | [diff] [blame] | 57 | |
| 58 | Get valid event from DMaaP and AAI is not responding |
| 59 | [Documentation] PRH get valid event from DMaaP with all required fields and AAI is not responding - PRH does not produce PNF_READY notification |
| 60 | [Tags] PRH AAI |
| 61 | [Timeout] 180s |
Mariusz Wagner | 831baff | 2018-09-14 14:24:02 +0200 | [diff] [blame] | 62 | ${data}= Get Data From File ${EVENT_WITH_ALL_VALID_REQUIRED_FIELDS} |
Mariusz Wagner | 6d58832 | 2018-07-25 12:26:49 +0200 | [diff] [blame] | 63 | Stop AAI |
Mariusz Wagner | 831baff | 2018-09-14 14:24:02 +0200 | [diff] [blame] | 64 | Set event in DMaaP ${data} |
Mariusz Wagner | 3479978 | 2018-09-06 12:48:32 +0200 | [diff] [blame] | 65 | Wait Until Keyword Succeeds 100x 300ms Check PRH log java.net.UnknownHostException: aai |