blob: 5150a4b355a8940748b789c279c9fb0b563110dc [file] [log] [blame]
wejs060bc422018-05-25 13:58:11 +02001*** Settings ***
Mariusz Wagner5f108de2018-07-12 08:36:13 +02002Documentation 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 Wagner3cbe5472018-07-30 14:19:50 +02004Suite Setup Run keywords Create header
Mariusz Wagner5f108de2018-07-12 08:36:13 +02005... Create sessions
Mariusz Wagnercfd26b92018-06-13 14:30:27 +02006Library resources/PrhLibrary.py
Mariusz Wagner5f108de2018-07-12 08:36:13 +02007Resource resources/prh_library.robot
wejs060bc422018-05-25 13:58:11 +02008
9*** Variables ***
Mariusz Wagner5f108de2018-07-12 08:36:13 +020010${DMAAP_SIMULATOR_URL} http://${DMAAP_SIMULATOR}
11${AAI_SIMULATOR_URL} http://${AAI_SIMULATOR}
Mariusz Wagner4a6ece42018-06-05 15:54:27 +020012${PRH_URL} http://${PRH}
Mariusz Wagner34799782018-09-06 12:48:32 +020013${EVENT_WITH_ALL_VALID_REQUIRED_FIELDS} {"event": {"commonEventHeader": {"sourceName":"NOK6061ZW1"}, "pnfRegistrationFields": {"oamV4IpAddress":"10.16.123.234", "oamV6IpAddress":"2001:0db8:85a3:0000:0000:8a2e:0370:7334"}}}
Mariusz Wagner5f108de2018-07-12 08:36:13 +020014${Not_json_format} ""
wejs060bc422018-05-25 13:58:11 +020015
16*** Test Cases ***
Mariusz Wagner5f108de2018-07-12 08:36:13 +020017Valid DMaaP event can be converted to PNF_READY notification
18 [Documentation] PRH get valid event from DMaaP with required fields - PRH produce PNF_READY notification
19 [Tags] PRH Valid event
20 [Template] Valid event processing
21 ${EVENT_WITH_ALL_VALID_REQUIRED_FIELDS}
Mariusz Wagner34799782018-09-06 12:48:32 +020022 {"event": {"commonEventHeader": {"sourceName":"NOK6061ZW2"}, "pnfRegistrationFields": {"oamV4IpAddress":"10.17.123.234", "oamV6IpAddress":""}}}
23 {"event": {"commonEventHeader": {"sourceName":"ERI6061ZW3"}, "pnfRegistrationFields": {"oamV4IpAddress":"", "oamV6IpAddress":"2001:0db8:85a3:0000:0000:8b2e:0370:7334"}}}
wejs060bc422018-05-25 13:58:11 +020024
Mariusz Wagner5f108de2018-07-12 08:36:13 +020025Invalid DMaaP event cannot be converted to PNF_READY notification
26 [Documentation] PRH get invalid event from DMaaP with missing required fields - PRH does not produce PNF_READY notification
27 [Tags] PRH Invalid event
28 [Template] Invalid event processing
Mariusz Wagner34799782018-09-06 12:48:32 +020029 {"event": {"commonEventHeader": {"sourceName":"NOK6061ZW4"}, "pnfRegistrationFields": {"oamV4IpAddress":"", "oamV6IpAddress":""}}}
30 {"event": {"commonEventHeader": {"sourceName":""}, "pnfRegistrationFields": {"oamV4IpAddress":"10.18.123.234", "oamV6IpAddress":"2001:0db8:85a3:0000:0000:8a2a:0370:7334"}}}
31 {"event": {"commonEventHeader": {"sourceName":""}, "pnfRegistrationFields": {"oamV4IpAddress":"10.17.163.234", "oamV6IpAddress":""}}}
32 {"event": {"commonEventHeader": {"sourceName":""}, "pnfRegistrationFields": {"oamV4IpAddress":"", "oamV6IpAddress":"2001:0db8:85a3:0000:0000:8b2f:0370:7334"}}}
33 {"event": {"commonEventHeader": {"sourceName":""}, "pnfRegistrationFields": {"oamV4IpAddress":"", "oamV6IpAddress":""}}}
Mariusz Wagnera2a6c982018-06-14 15:53:56 +020034
Mariusz Wagner5f108de2018-07-12 08:36:13 +020035Get valid event from DMaaP and record in AAI does not exist
36 [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
37 [Tags] PRH Missing AAI record
Mariusz Wagner60be36d2018-07-05 11:32:51 +020038 [Timeout] 30s
Mariusz Wagner3cbe5472018-07-30 14:19:50 +020039 Set PNF name in AAI wrong_aai_record
40 Set event in DMaaP ${EVENT_WITH_ALL_VALID_REQUIRED_FIELDS}
Mariusz Wagner34799782018-09-06 12:48:32 +020041 Wait Until Keyword Succeeds 100x 300ms Check PRH log java.io.IOException: Connection closed prematurely
42
43Event in DMaaP is not JSON format
44 [Documentation] PRH get not JSON format event from DMaaP - PRH does not produce PNF_READY notification
45 [Tags] PRH
46 Set event in DMaaP ${Not_json_format}
47 Wait Until Keyword Succeeds 100x 300ms Check PRH log |java.lang.IllegalStateException: Not a JSON Array:
Mariusz Wagner6d588322018-07-25 12:26:49 +020048
49Get valid event from DMaaP and AAI is not responding
50 [Documentation] PRH get valid event from DMaaP with all required fields and AAI is not responding - PRH does not produce PNF_READY notification
51 [Tags] PRH AAI
52 [Timeout] 180s
53 Stop AAI
Mariusz Wagner3cbe5472018-07-30 14:19:50 +020054 Set event in DMaaP ${EVENT_WITH_ALL_VALID_REQUIRED_FIELDS}
Mariusz Wagner34799782018-09-06 12:48:32 +020055 Wait Until Keyword Succeeds 100x 300ms Check PRH log java.net.UnknownHostException: aai