blob: 1504895affa928b7402a95e961ed55203fb84b7e [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.
4Suite Setup Run keywords Create headers
5... 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 Wagner5f108de2018-07-12 08:36:13 +020013${EVENT_WITH_ALL_VALID_REQUIRED_FIELDS} {"event": {"otherFields": {"pnfVendorName":"Nokia", "pnfSerialNumber":"QTFCOC540002E", "pnfOamIpv4Address":"10.16.123.234", "pnfOamIpv6Address":"2001:0db8:85a3:0000:0000:8a2e:0370:7334"}}}
14${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}
22 {"event": {"otherFields": {"pnfVendorName":"Nokia", "pnfSerialNumber":"QTFCOC540002G", "pnfOamIpv4Address":"10.16.123.234", "pnfOamIpv6Address":""}}}
23 {"event": {"otherFields": {"pnfVendorName":"Nokia", "pnfSerialNumber":"QTFCOC540002F", "pnfOamIpv4Address":"", "pnfOamIpv6Address":"2001:0db8:85a3:0000:0000:8a2e:0370:7334"}}}
24 {"event": {"otherFields": {"pnfVendorName":"Ericsson", "pnfSerialNumber":"QTFCOC5400000", "pnfOamIpv4Address":"", "pnfOamIpv6Address":"2001:0db8:85b3:0000:0000:8a2e:0370:7334"}}}
wejs060bc422018-05-25 13:58:11 +020025
Mariusz Wagner5f108de2018-07-12 08:36:13 +020026Invalid DMaaP event cannot be converted to PNF_READY notification
27 [Documentation] PRH get invalid event from DMaaP with missing required fields - PRH does not produce PNF_READY notification
28 [Tags] PRH Invalid event
29 [Template] Invalid event processing
30 {"event": {"otherFields": {"pnfVendorName":"Nokia", "pnfSerialNumber":"QTFCOC540002E", "pnfOamIpv4Address":"", "pnfOamIpv6Address":""}}}
31 {"event": {"otherFields": {"pnfVendorName":"Nokia", "pnfSerialNumber":"", "pnfOamIpv4Address":"10.16.123.234", "pnfOamIpv6Address":"2001:0db8:85a3:0000:0000:8a2e:0370:7334"}}}
32 {"event": {"otherFields": {"pnfVendorName":"Nokia", "pnfSerialNumber":"", "pnfOamIpv4Address":"10.16.123.234", "pnfOamIpv6Address":""}}}
33 {"event": {"otherFields": {"pnfVendorName":"Nokia", "pnfSerialNumber":"", "pnfOamIpv4Address":"", "pnfOamIpv6Address":"2001:0db8:85a3:0000:0000:8a2e:0370:7334"}}}
34 {"event": {"otherFields": {"pnfVendorName":"Nokia", "pnfSerialNumber":"", "pnfOamIpv4Address":"", "pnfOamIpv6Address":""}}}
35 {"event": {"otherFields": {"pnfVendorName":"", "pnfSerialNumber":"QTFCOC540002E", "pnfOamIpv4Address":"10.16.123.234", "pnfOamIpv6Address":"2001:0db8:85a3:0000:0000:8a2e:0370:7334"}}}
36 {"event": {"otherFields": {"pnfVendorName":"", "pnfSerialNumber":"QTFCOC540002E", "pnfOamIpv4Address":"10.16.123.234", "pnfOamIpv6Address":""}}}
37 {"event": {"otherFields": {"pnfVendorName":"", "pnfSerialNumber":"QTFCOC540002E", "pnfOamIpv4Address":"", "pnfOamIpv6Address":"2001:0db8:85a3:0000:0000:8a2e:0370:7334"}}}
38 {"event": {"otherFields": {"pnfVendorName":"", "pnfSerialNumber":"QTFCOC540002E", "pnfOamIpv4Address":"", "pnfOamIpv6Address":""}}}
39 {"event": {"otherFields": {"pnfVendorName":"", "pnfSerialNumber":"", "pnfOamIpv4Address":"10.16.123.234", "pnfOamIpv6Address":"2001:0db8:85a3:0000:0000:8a2e:0370:7334"}}}
40 {"event": {"otherFields": {"pnfVendorName":"", "pnfSerialNumber":"", "pnfOamIpv4Address":"10.16.123.234", "pnfOamIpv6Address":""}}}
41 {"event": {"otherFields": {"pnfVendorName":"", "pnfSerialNumber":"", "pnfOamIpv4Address":"", "pnfOamIpv6Address":"2001:0db8:85a3:0000:0000:8a2e:0370:7334"}}}
42 {"event": {"otherFields": {"pnfVendorName":"", "pnfSerialNumber":"", "pnfOamIpv4Address":"", "pnfOamIpv6Address":""}}}
43 ${Not_json_format}
Mariusz Wagnera2a6c982018-06-14 15:53:56 +020044
Mariusz Wagner5f108de2018-07-12 08:36:13 +020045Get valid event from DMaaP and record in AAI does not exist
46 [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
47 [Tags] PRH Missing AAI record
Mariusz Wagner60be36d2018-07-05 11:32:51 +020048 [Timeout] 30s
Mariusz Wagner5f108de2018-07-12 08:36:13 +020049 Set pnf name in AAI wrong_aai_record
50 Set event in DMAAP ${EVENT_WITH_ALL_VALID_REQUIRED_FIELDS}
Mariusz Wagner6d588322018-07-25 12:26:49 +020051 Wait Until Keyword Succeeds 100x 300ms Check PRH log org.onap.dcaegen2.services.prh.exceptions.AAINotFoundException: Incorrect response code for continuation of tasks workflow
52
53Get valid event from DMaaP and AAI is not responding
54 [Documentation] PRH get valid event from DMaaP with all required fields and AAI is not responding - PRH does not produce PNF_READY notification
55 [Tags] PRH AAI
56 [Timeout] 180s
57 Stop AAI
58 Set event in DMAAP ${EVENT_WITH_ALL_VALID_REQUIRED_FIELDS}
59 Wait Until Keyword Succeeds 100x 300ms Check PRH log java.net.NoRouteToHostException: Host is unreachable (Host unreachable)