blob: 15c8ee8b64ec1c7a0706e22172f91442bd596f53 [file] [log] [blame]
Filip Krzywka66e2ad62019-03-20 14:03:02 +01001# ============LICENSE_START=======================================================
2# csit-dcaegen2-collectors-hv-ves
3# ================================================================================
4# Copyright (C) 2018-2019 NOKIA
5# ================================================================================
6# Licensed under the Apache License, Version 2.0 (the "License");
7# you may not use this file except in compliance with the License.
8# You may obtain a copy of the License at
9#
10# http://www.apache.org/licenses/LICENSE-2.0
11#
12# Unless required by applicable law or agreed to in writing, software
13# distributed under the License is distributed on an "AS IS" BASIS,
14# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15# See the License for the specific language governing permissions and
16# limitations under the License.
17# ============LICENSE_END=========================================================
18
Gary Wu9abb61c2018-09-27 10:38:50 -070019*** Settings ***
20Library DcaeAppSimulatorLibrary
21Library XnfSimulatorLibrary
22Library VesHvContainersUtilsLibrary
23Library Collections
24
25Resource resources/common-keywords.robot
26
27Suite Setup Message Routing Suite Setup
28Suite Teardown VES-HV Collector Suite Teardown
29Test Teardown VES-HV Collector Test Shutdown
30
31*** Keywords ***
32Message Routing Suite Setup
33 Log Started Suite: VES-HV Message Routing
34 ${XNF_PORTS_LIST}= Create List 7000
35 Configure xNF Simulators Using Valid Certificates On Ports ${XNF_PORTS_LIST}
36 Log Suite setup finished
37
38*** Test Cases ***
39Correct Messages Routing
40 [Documentation] VES-HV Collector should route all valid messages to topics specified in configuration
41 ... and do not change message payload generated in XNF simulator
42
43 ${XNF_SIMULATOR}= Get xNF Simulators Using Valid Certificates
44 Send Messages From xNF Simulators ${XNF_SIMULATOR} ${XNF_FIXED_PAYLOAD_REQUEST}
45
46 Wait until keyword succeeds 60 sec 5 sec
47 ... Assert Dcae App Consumed ${DCAE_APP_API_MESSAGES_COUNT_URL} ${AMOUNT_25000}
48 Assert Dcae App Consumed Proper Messages ${DCAE_APP_API_MESSAGES_VALIDATION_URL} ${DCAE_FIXED_PAYLOAD_REQUEST}
49
50
51Too big payload message handling
52 [Documentation] VES-HV Collector should interrupt the stream when encountered message with too big payload
53
54 ${XNF_SIMULATOR}= Get xNF Simulators Using Valid Certificates
55 Send Messages From xNF Simulators ${XNF_SIMULATOR} ${XNF_TOO_BIG_PAYLOAD_REQUEST}
56
57 Wait until keyword succeeds 60 sec 5 sec
Filip Krzywka6a82c362019-03-05 09:00:40 +010058 ... Assert Dcae App Consumed ${DCAE_APP_API_MESSAGES_COUNT_URL} ${AMOUNT_25000}
59 Assert Dcae App Consumed Proper Messages ${DCAE_APP_API_MESSAGES_VALIDATION_URL} ${DCAE_TOO_BIG_PAYLOAD_REQUEST}
Gary Wu9abb61c2018-09-27 10:38:50 -070060
61
62Invalid wire frame message handling
63 [Documentation] VES-HV Collector should skip messages with invalid wire frame
64
65 ${XNF_SIMULATOR}= Get xNF Simulators Using Valid Certificates
66 Send Messages From xNF Simulators ${XNF_SIMULATOR} ${XNF_INVALID_WIRE_FRAME_REQUEST}
67
68 Wait until keyword succeeds 60 sec 5 sec
69 ... Assert Dcae App Consumed ${DCAE_APP_API_MESSAGES_COUNT_URL} ${AMOUNT_50000}
70 Assert Dcae App Consumed Proper Messages ${DCAE_APP_API_MESSAGES_VALIDATION_URL} ${DCAE_INVALID_WIRE_FRAME_REQUEST}
71
72
73Invalid GPB data message handling
74 [Documentation] VES-HV Collector should skip messages with invalid GPB data
75
76 ${XNF_SIMULATOR}= Get xNF Simulators Using Valid Certificates
77 Send Messages From xNF Simulators ${XNF_SIMULATOR} ${XNF_INVALID_GPB_DATA_REQUEST}
78
79 Wait until keyword succeeds 60 sec 5 sec
80 ... Assert Dcae App Consumed ${DCAE_APP_API_MESSAGES_COUNT_URL} ${AMOUNT_50000}
81 Assert Dcae App Consumed Proper Messages ${DCAE_APP_API_MESSAGES_VALIDATION_URL} ${DCAE_INVALID_GPB_DATA_REQUEST}
82
83
84Unsupported domain message handling
85 [Documentation] VES-HV Collector should skip messages with unsupported domain
86
87 ${XNF_SIMULATOR}= Get xNF Simulators Using Valid Certificates
88 Send Messages From xNF Simulators ${XNF_SIMULATOR} ${XNF_UNSUPPORTED_DOMAIN_REQUEST}
89
90 Wait until keyword succeeds 60 sec 5 sec
91 ... Assert Dcae App Consumed ${DCAE_APP_API_MESSAGES_COUNT_URL} ${AMOUNT_50000}
92 Assert Dcae App Consumed Proper Messages ${DCAE_APP_API_MESSAGES_VALIDATION_URL} ${DCAE_UNSUPPORTED_DOMAIN_REQUEST}
93
94*** Variables ***
95${HTTP_METHOD_URL} http://
96
97${XNF_SIM_API_PATH} /simulator/async
98
Gary Wu13111e92018-09-27 11:31:33 -070099${VES_HV_SCENARIOS} %{WORKSPACE}/tests/dcaegen2-collectors-hv-ves/testcases/resources/scenarios
Gary Wu9abb61c2018-09-27 10:38:50 -0700100${XNF_FIXED_PAYLOAD_REQUEST} ${VES_HV_SCENARIOS}/fixed-payload/xnf-fixed-payload-request.json
101${XNF_TOO_BIG_PAYLOAD_REQUEST} ${VES_HV_SCENARIOS}/too-big-payload/xnf-too-big-payload-request.json
102${XNF_INVALID_WIRE_FRAME_REQUEST} ${VES_HV_SCENARIOS}/invalid-wire-frame/xnf-invalid-wire-frame-request.json
103${XNF_INVALID_GPB_DATA_REQUEST} ${VES_HV_SCENARIOS}/invalid-gpb-data/xnf-invalid-gpb-data-request.json
104${XNF_UNSUPPORTED_DOMAIN_REQUEST} ${VES_HV_SCENARIOS}/unsupported-domain/xnf-unsupported-domain-request.json
105
106${DCAE_FIXED_PAYLOAD_REQUEST} ${VES_HV_SCENARIOS}/fixed-payload/dcae-fixed-payload-request.json
Filip Krzywka6a82c362019-03-05 09:00:40 +0100107${DCAE_TOO_BIG_PAYLOAD_REQUEST} ${VES_HV_SCENARIOS}/too-big-payload/dcae-too-big-payload-request.json
Gary Wu9abb61c2018-09-27 10:38:50 -0700108${DCAE_INVALID_WIRE_FRAME_REQUEST} ${VES_HV_SCENARIOS}/invalid-wire-frame/dcae-invalid-wire-frame-request.json
109${DCAE_INVALID_GPB_DATA_REQUEST} ${VES_HV_SCENARIOS}/invalid-gpb-data/dcae-invalid-gpb-data-request.json
110${DCAE_UNSUPPORTED_DOMAIN_REQUEST} ${VES_HV_SCENARIOS}/unsupported-domain/dcae-unsupported-domain-request.json
111
112${AMOUNT_25000} 25000
113${AMOUNT_50000} 50000