Add Test case for parameter out of schema send to VES eventBatch API
[integration/csit.git] / tests / dcaegen2 / testcases / dcae_ves.robot
1 *** Settings ***
2 Documentation     Run healthchecks for DCAE VES
3 ...               Testing /eventListener/v7 and /eventListener/v7/eventBatch endpoints for DCEA VES v7.
4 ...               Testing /eventListener/v5 and /eventListener/v5/eventBatch for DCEA VES v5 with various event feeds from VoLTE, vFW and PNF
5 Library           RequestsLibrary
6 Library           OperatingSystem
7 Library           Collections
8 Library           DcaeLibrary
9 Resource          ./resources/dcae_keywords.robot
10
11 Test Teardown     Cleanup VES Events
12 Suite Setup       Run keywords  VES Collector Suite Setup DMaaP  Generate Certs  Create sessions  Create header
13 Suite Teardown    Run keywords  VES Collector Suite Shutdown DMaaP  Remove Certs
14
15 *** Test Cases ***
16
17 #No authentication tests
18
19 VES Collector HTTP Health Check
20     [Tags]    DCAE-VESC-R1
21     [Documentation]   Run healthcheck
22     Run Healthcheck
23
24 Publish Single VES VNF Measurement Event API V7
25     [Tags]    DCAE-VESC-R1
26     [Documentation]   Post single event with valid data to /eventListener/v7 endpoint and expect 202 Response Status Code
27     Send Request And Validate Response  Publish Event To VES Collector  ${http_session}  ${VES_EVENTLISTENER_V7}  ${VES_VALID_JSON_V7}  202  ab305d54-85b4-a31b-7db2-fb6b9e546015
28
29 Publish Single VES VNF Measurement Event with wrong JSON
30     [Tags]    DCAE-VESC-R1
31     [Documentation]   Post single event with invalid data to /eventListener/v7 endpoint and expect 400 Response Status Code
32     Send Request And Validate Response  Publish Event To VES Collector  ${http_session}  ${VES_EVENTLISTENER_V7}  ${VES_INVALID_JSON_V7}  400
33
34 Publish Single VES VNF Measurement Event with missing mandatory parameter
35     [Tags]    DCAE-VESC-R1
36     [Documentation]   Post single event with lack of one of the mandatory parameters "domain" to /eventListener/v7 endpoint and expect 400 Response Status Code
37     Send Request And Validate Response  Publish Event To VES Collector  ${http_session}  ${VES_EVENTLISTENER_V7}  ${VES_MISSING_MANDATORY_PARAMETER_V7}  400
38
39 Publish Single VES VNF Measurement Event with empty json
40     [Tags]    DCAE-VESC-R1
41     [Documentation]   Post single event with empty json to /eventListener/v7 endpoint and expect 400 Response Status Code
42     Send Request And Validate Response  Publish Event To VES Collector  ${http_session}  ${VES_EVENTLISTENER_V7}  ${VES_EMPTY_JSON}  400
43
44 Publish Single VES VNF Measurement Event with parameter out of schema
45     [Tags]    DCAE-VESC-R1
46     [Documentation]   Post single event with parameter which is not defined in schema and send to /eventListener/v7 endpoint. Expected 400 Response Status Code
47     Send Request And Validate Response  Publish Event To VES Collector  ${http_session}  ${VES_EVENTLISTENER_V7}  ${VES_PARAMETER_OUT_OF_SCHEMA_V7}  400
48
49 Publish Single VES VNF Measurement Event with No Auth over HTTPS
50     [Tags]    DCAE-VESC-R1
51     [Documentation]   Post single event over HTTPS with authentication disabled and expect ConnectionError
52     @{err_content}  Create List  Errno 111
53     Send Request And Expect Error  Publish Event To VES Collector  ${https_basic_auth_session}  ${VES_EVENTLISTENER_V7}  ${VES_VALID_JSON_V7}  ConnectionError:*  @{err_content}
54
55 Publish Single VES VoLTE Fault Event
56     [Tags]    DCAE-VESC-R1
57     [Documentation]   Post single event with valid data to /eventListener/v5 endpoint and expect 202 Response Status Code
58     Send Request And Validate Response  Publish Event To VES Collector  ${http_session}  ${VES_ANY_EVENT_PATH}  ${EVENT_DATA_FILE}  202  ab305d54-85b4-a31b-7db2-fb6b9e546015
59
60 Publish Single VES VNF Measurement Event API V5
61     [Tags]    DCAE-VESC-R1
62     [Documentation]   Post single measurement event with valid data to /eventListener/v5 endpoint and expect 202 Response Status Code
63     Send Request And Validate Response  Publish Event To VES Collector  ${http_session}  ${VES_ANY_EVENT_PATH}  ${EVENT_MEASURE_FILE}  202  0b2b5790-3673-480a-a4bd-5a00b88e5af6
64
65 Publish VES VoLTE Fault Batch Events
66     [Tags]    DCAE-VESC-R1
67     [Documentation]   Post single event with valid data to /eventListener/v5/eventBatch endpoint and expect 202 Response Status Code
68     Send Request And Validate Response  Publish Event To VES Collector  ${http_session}  ${VES_BATCH_EVENT_PATH}  ${EVENT_BATCH_DATA_FILE}  202  ab305d54-85b4-a31b-7db2-fb6b9e546025
69
70 Publish VES Batch Events with empty json
71     [Tags]    DCAE-VESC-R1
72     [Documentation]   Post empty json to /eventListener/v7/eventBatch endpoint and expect 400 Response Status Code
73     Send Request And Validate Response  Publish Event To VES Collector  ${http_session}  ${VES_BATCH_EVENT_ENDPOINT_V7}  ${VES_EMPTY_JSON}  400
74
75 Publish VES Batch Events with missing mandatory parameter
76     [Tags]    DCAE-VESC-R1
77     [Documentation]   Post event list where one of the events doesn't have mandatory domain param, to /eventListener/v7/eventBatch endpoint and expect 400 Response Status Code
78     Send Request And Validate Response  Publish Event To VES Collector  ${http_session}  ${VES_BATCH_EVENT_ENDPOINT_V7}  ${VES_BATCH_MISSING_MANDATORY_PARAM_V7}  400
79
80 Publish VES Batch Events wih parameter out of schema
81     [Tags]    DCAE-VESC-R1
82     [Documentation]   Post event list where one of the events have additional dummy param, to /eventListener/v7/eventBatch endpoint and expect 400 Response Status Code
83     Send Request And Validate Response  Publish Event To VES Collector  ${http_session}  ${VES_BATCH_EVENT_ENDPOINT_V7}  ${VES_BATCH_PARAM_OUT_OF_SCHEMA_V7}  400
84
85 Publish VES Event With Invalid Method
86     [Tags]    DCAE-VESC-R1
87     [Documentation]    Use invalid Put instead of Post method to expect 405 Response Status Code
88     Log   Send HTTP Request with invalid method Put instead of Post
89     Send Request And Validate Response  Publish Event To VES Collector With Put Method  ${http_session}  ${VES_ANY_EVENT_PATH}  ${EVENT_DATA_FILE}  405
90
91 Publish VES Event With Invalid URL Path
92     [Tags]    DCAE-VESC-R1
93     [Documentation]   Post single event to invalid url path and expect 404 Response  Status Code
94     Log   Send HTTP Request with invalid /listener/v5/ instead of /eventListener/v5 path
95     Send Request And Validate Response  Publish Event To VES Collector  ${http_session}  /listener/v5/  ${EVENT_DATA_FILE}  404
96
97 Publish PNF Registration Event
98     [Tags]    DCAE-VESC-R1
99     [Documentation]   Post PNF registration event and expect 200 Response Status Code
100     Send Request And Validate Response  Publish Event To VES Collector  ${http_session}  ${VES_ANY_EVENT_PATH}  ${EVENT_PNF_REGISTRATION}  202  QTFCOC540002E-reg
101
102 # Auth by certificate and basic auth username / password
103
104 Enable VESC HTTPS with certBasicAuth
105     [Tags]    DCAE-VESC-R1
106     [Documentation]  Enable VESC Https and Authentication and Run Health Check
107     Enable VESC with certBasicAuth
108     Run Healthcheck
109
110 Healthcheck with Outdated Cert
111     [Tags]    DCAE-VESC-R1
112     [Documentation]  Run healthcheck with outdated cert
113     ${uuid}=    Generate UUID
114     ${headers}=  Create Dictionary     Accept=*/*     X-TransactionId=${GLOBAL_APPLICATION_ID}-${uuid}    X-FromAppId=${GLOBAL_APPLICATION_ID}
115     ${err_msg}=  Run Keyword And Expect Error  SSLError:*  Get Request  ${https_outdated_cert_session}  /healthcheck  headers=${headers}
116     Should Contain  ${err_msg}  certificate unknown
117     Log  Recieved error message ${err_msg}
118
119 Publish Single VES Fault Event Over HTTPS
120     [Tags]    DCAE-VESC-R1
121     [Documentation]   Post single event with valid data to /eventListener/v5 endpoint over HTTPS and expect 202 Response Status Code
122     Log  Login User=${VESC_HTTPS_USER}, Pd=${VESC_HTTPS_PD}
123     Send Request And Validate Response  Publish Event To VES Collector  ${https_basic_auth_session}  ${VES_ANY_EVENT_PATH}  ${EVENT_DATA_FILE}  202  ab305d54-85b4-a31b-7db2-fb6b9e546015
124
125 Publish Single VES Measurement Event Over HTTPS
126     [Tags]    DCAE-VESC-R1
127     [Documentation]   Post single measurement event with valid data to /eventListener/v5 endpoint over HTTPS and expect 202 Response Status Code
128     Send Request And Validate Response  Publish Event To VES Collector  ${https_basic_auth_session}  ${VES_ANY_EVENT_PATH}  ${EVENT_MEASURE_FILE}  202  0b2b5790-3673-480a-a4bd-5a00b88e5af6
129
130 Publish VES Fault Batch Events Over HTTPS
131     [Tags]    DCAE-VESC-R1
132     [Documentation]   Post single event with valid data to /eventListener/v5/eventBatch endpoint over HTTPS and expect 202 Response Status Code
133     Send Request And Validate Response  Publish Event To VES Collector  ${https_basic_auth_session}  ${VES_BATCH_EVENT_PATH}  ${EVENT_BATCH_DATA_FILE}  202  ab305d54-85b4-a31b-7db2-fb6b9e546025
134
135 Publish VES Event With Invalid URL Path HTTPS
136     [Tags]    DCAE-VESC-R1
137     [Documentation]    Post single event to invalid url path over HTTPS and expect 404 response Status Code
138     Log   Send HTTP Request with invalid /eventlistener/v5/ instead of /eventListener/v5 path
139     Send Request And Validate Response  Publish Event To VES Collector  ${https_basic_auth_session}  /eventlistener/v5  ${EVENT_DATA_FILE}  404
140
141 Publish Single VES VNF Measurement Event over HTTP
142     [Tags]    DCAE-VESC-R1
143     [Documentation]   Post single event over HTTP with authentication enabled and expect 400 Response Status Code
144     Send Request And Validate Response  Publish Event To VES Collector  ${http_session}  ${VES_EVENTLISTENER_V7}  ${VES_VALID_JSON_V7}  400
145
146 Publish Single VES VNF Measurement Event with certBasicAuth over HTTPS
147     [Tags]    DCAE-VESC-R1
148     [Documentation]   Post single event with valid data and valid username/password to /eventListener/v7 endpoint over HTTPS and expect 202 Response Status Code
149     Send Request And Validate Response  Publish Event To VES Collector  ${https_basic_auth_session}  ${VES_EVENTLISTENER_V7}  ${VES_VALID_JSON_V7}  202  ab305d54-85b4-a31b-7db2-fb6b9e546015
150
151 Publish Single VES VNF Measurement Event over HTTPS with wrong JSON
152     [Tags]    DCAE-VESC-R1
153     [Documentation]   Post single event with invalid data and valid username/password to /eventListener/v7 endpoint over HTTPS and expect 400 Response Status Code
154     Send Request And Validate Response  Publish Event To VES Collector  ${https_basic_auth_session}  ${VES_EVENTLISTENER_V7}  ${VES_INVALID_JSON_V7}  400
155
156 Publish Single VES VNF Measurement Event With Wrong Auth
157     [Tags]  DCAE-VESC-R1
158     [Documentation]  Post single event with valid data and invalid username/password to /eventListener/v7 endpoint over HTTPS and expect 401 Response Status Code
159     Send Request And Validate Response  Publish Event To VES Collector  ${https_wrong_auth_session}  ${VES_EVENTLISTENER_V7}  ${VES_VALID_JSON_V7}  401
160
161 Publish Single VES VNF Measurement Event With Cert
162     [Tags]  DCAE-VESC-R1
163     [Documentation]  Post single event with valid data and valid certificate to /eventListener/v7 endpoint over HTTPS and expect 202 Response Status Code
164     Send Request And Validate Response  Publish Event To VES Collector  ${https_valid_cert_session}  ${VES_EVENTLISTENER_V7}  ${VES_VALID_JSON_V7}  202  ab305d54-85b4-a31b-7db2-fb6b9e546015
165
166 Publish Single VES VNF Measurement Event With Wrong Cert
167     [Tags]  DCAE-VESC-R1
168     [Documentation]  Post single event with valid data and invalid certificate to /eventListener/v7 endpoint over HTTPS and expect SSLError with certificate unknown
169     @{err_content}  Create List  certificate unknown
170     Send Request And Expect Error  Publish Event To VES Collector  ${https_invalid_cert_session}  ${VES_EVENTLISTENER_V7}  ${VES_VALID_JSON_V7}  SSLError:*  @{err_content}
171
172 Publish Single VES VNF Measurement Event With Outdated Cert
173     [Tags]  DCAE-VESC-R1
174     [Documentation]  Post single event with valid data and outdated certificate to /eventListener/v7 endpoint over HTTPS and expect SSLError with certificate unknown
175     @{err_content}  Create List  certificate unknown
176     Send Request And Expect Error  Publish Event To VES Collector  ${https_outdated_cert_session}  ${VES_EVENTLISTENER_V7}  ${VES_VALID_JSON_V7}  SSLError:*  @{err_content}
177
178 Publish Single VES VNF Measurement Event Without Auth And Cert
179     [Tags]  DCAE-VESC-R1
180     [Documentation]  Post single event with valid data and without certificate or username/password to /eventListener/v7 endpoint over HTTPS and expect 401 Response Status Code
181     Send Request And Validate Response  Publish Event To VES Collector  ${https_no_cert_no_auth_session}   ${VES_EVENTLISTENER_V7}  ${VES_VALID_JSON_V7}  401
182
183 Publish V7 Batch Event with certBasicAuth over HTTPS
184     [Tags]    DCAE-VESC-R1
185     [Documentation]   Post single event with valid data and valid username/password to /eventListener/v7/eventBatch endpoint over HTTPS and expect 202 Response Status Code
186     Send Request And Validate Response  Publish Event To VES Collector  ${https_basic_auth_session}  ${VES_BATCH_EVENT_ENDPOINT_V7}  ${VES_VALID_BATCH_JSON_V7}  202  Fault_Vscf:Acs-Ericcson_PilotNumberPoolExhaustion
187
188 Publish V7 Batch Event With Wrong Auth
189     [Tags]  DCAE-VESC-R1
190     [Documentation]  Post single event with valid data and invalid username/password to /eventListener/v7/eventBatch endpoint over HTTPS and expect 401 Response Status Code
191     Send Request And Validate Response  Publish Event To VES Collector   ${https_wrong_auth_session}  ${VES_BATCH_EVENT_ENDPOINT_V7}  ${VES_VALID_BATCH_JSON_V7}  401
192
193 Publish V7 Batch Event With Cert
194     [Tags]  DCAE-VESC-R1
195     [Documentation]  Post single event with valid data and valid certificate to /eventListener/v7/eventBatch endpoint over HTTPS and expect 202 Response
196     Send Request And Validate Response  Publish Event To VES Collector  ${https_valid_cert_session}  ${VES_BATCH_EVENT_ENDPOINT_V7}  ${VES_VALID_BATCH_JSON_V7}  202  Fault_Vscf:Acs-Ericcson_PilotNumberPoolExhaustion
197
198 Publish V7 Batch With Wrong Cert
199     [Tags]  DCAE-VESC-R1
200     [Documentation]  Post single event with valid data and invalid certificate to /eventListener/v7/eventBatch endpoint over HTTPS and expect SSLError with certificate unknown
201     @{err_content}  Create List  certificate unknown
202     Send Request And Expect Error  Publish Event To VES Collector   ${https_invalid_cert_session}  ${VES_BATCH_EVENT_ENDPOINT_V7}  ${VES_VALID_BATCH_JSON_V7}  SSLError:*  @{err_content}
203
204 Publish V7 Batch Event With Outdated Cert
205     [Tags]  DCAE-VESC-R1
206     [Documentation]  Post single event with valid data and outdated certificate to /eventListener/v7/eventBatch endpoint over HTTPS and expect SSLError with certificate unknown
207     @{err_content}  Create List  certificate unknown
208     Send Request And Expect Error  Publish Event To VES Collector   ${https_outdated_cert_session}  ${VES_BATCH_EVENT_ENDPOINT_V7}  ${VES_VALID_BATCH_JSON_V7}  SSLError:*  @{err_content}
209
210 Publish V7 Batch Event Without Auth And Cert
211     [Tags]  DCAE-VESC-R1
212     [Documentation]  Post single event with valid data and without certificate or username/password to /eventListener/v7/eventBatch endpoint over HTTPS and expect 401 Response Status Code
213     Send Request And Validate Response  Publish Event To VES Collector  ${https_no_cert_no_auth_session}   ${VES_BATCH_EVENT_ENDPOINT_V7}  ${VES_VALID_BATCH_JSON_V7}  401