blob: 5c96f48bf08d4cba59012a2a8cc2a11d2055a90d [file] [log] [blame]
Gary Wu9abb61c2018-09-27 10:38:50 -07001*** Settings ***
Aleksandra Maciaga99022c82019-11-19 13:13:08 +01002Documentation 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
5Library RequestsLibrary
Gary Wu9abb61c2018-09-27 10:38:50 -07006Library OperatingSystem
7Library Collections
8Library DcaeLibrary
Aleksandra Maciaga99022c82019-11-19 13:13:08 +01009Resource ./resources/dcae_keywords.robot
Aleksandra Maciagaa73f9a52019-11-20 12:14:44 +010010
Aleksandra Maciaga99022c82019-11-19 13:13:08 +010011Test Teardown Cleanup VES Events
Aleksandra Maciagaa73f9a52019-11-20 12:14:44 +010012Suite Setup Run keywords VES Collector Suite Setup DMaaP Generate Certs Create sessions Create header
13Suite Teardown Run keywords VES Collector Suite Shutdown DMaaP Remove Certs
Gary Wu9abb61c2018-09-27 10:38:50 -070014
15*** Test Cases ***
Aleksandra Maciagafd6c8fa2019-11-06 15:14:11 +010016
Aleksandra Maciaga99022c82019-11-19 13:13:08 +010017#No authentication tests
Aleksandra Maciagafd6c8fa2019-11-06 15:14:11 +010018
19VES Collector HTTP Health Check
Aleksandra Maciaga72ae9c32020-04-01 13:14:14 +020020 [Tags] DCAE-VESC-R1 DCAE-VESC-HC
21 [Documentation] Run healthcheck over HTTP
22 Run Healthcheck ${http_session}
Aleksandra Maciagafd6c8fa2019-11-06 15:14:11 +010023
24Publish Single VES VNF Measurement Event API V7
25 [Tags] DCAE-VESC-R1
Aleksandra Maciaga99022c82019-11-19 13:13:08 +010026 [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
Aleksandra Maciagafd6c8fa2019-11-06 15:14:11 +010028
Aleksandra Maciagacb445592020-07-07 15:33:15 +020029Publish Single VES VNF Measurement Event with Standard Defined Fields API V7
30 [Tags] DCAE-VESC-R1
31 [Documentation] Post single event with valid data with Standard Defined Fields to /eventListener/v7 endpoint and expect 202 Response Status Code
32 Send Request And Validate Response Publish Event To VES Collector ${http_session} ${VES_EVENTLISTENER_V7} ${VES_VALID_JSON_V7_STND_DEF_FIELDS} 202 stndDefined-gNB-Nokia-PowerLost
33
Aleksandra Maciagafd6c8fa2019-11-06 15:14:11 +010034Publish Single VES VNF Measurement Event with wrong JSON
Gary Wu9abb61c2018-09-27 10:38:50 -070035 [Tags] DCAE-VESC-R1
Aleksandra Maciaga99022c82019-11-19 13:13:08 +010036 [Documentation] Post single event with invalid data 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_INVALID_JSON_V7} 400
Aleksandra Maciagafd6c8fa2019-11-06 15:14:11 +010038
mprzybys86fabf62020-02-18 13:33:33 +000039Publish Single VES VNF Measurement Event with missing mandatory parameter
mprzybys71a3e682020-01-28 13:36:53 +000040 [Tags] DCAE-VESC-R1
41 [Documentation] Post single event with lack of one of the mandatory parameters "domain" to /eventListener/v7 endpoint and expect 400 Response Status Code
mprzybys86fabf62020-02-18 13:33:33 +000042 Send Request And Validate Response Publish Event To VES Collector ${http_session} ${VES_EVENTLISTENER_V7} ${VES_MISSING_MANDATORY_PARAMETER_V7} 400
43
44Publish Single VES VNF Measurement Event with empty json
45 [Tags] DCAE-VESC-R1
46 [Documentation] Post single event with empty json to /eventListener/v7 endpoint and expect 400 Response Status Code
47 Send Request And Validate Response Publish Event To VES Collector ${http_session} ${VES_EVENTLISTENER_V7} ${VES_EMPTY_JSON} 400
mprzybys71a3e682020-01-28 13:36:53 +000048
mprzybys5bcc97f2020-02-19 08:50:51 +000049Publish Single VES VNF Measurement Event with parameter out of schema
mprzybys038028c2020-02-18 14:08:01 +000050 [Tags] DCAE-VESC-R1
51 [Documentation] Post single event with parameter which is not defined in schema and send to /eventListener/v7 endpoint. Expected 400 Response Status Code
52 Send Request And Validate Response Publish Event To VES Collector ${http_session} ${VES_EVENTLISTENER_V7} ${VES_PARAMETER_OUT_OF_SCHEMA_V7} 400
53
Aleksandra Maciagafd6c8fa2019-11-06 15:14:11 +010054Publish Single VES VNF Measurement Event with No Auth over HTTPS
55 [Tags] DCAE-VESC-R1
Aleksandra Maciaga99022c82019-11-19 13:13:08 +010056 [Documentation] Post single event over HTTPS with authentication disabled and expect ConnectionError
57 @{err_content} Create List Errno 111
58 Send Request And Expect Error Publish Event To VES Collector ${https_basic_auth_session} ${VES_EVENTLISTENER_V7} ${VES_VALID_JSON_V7} ConnectionError:* @{err_content}
Aleksandra Maciagafd6c8fa2019-11-06 15:14:11 +010059
60Publish Single VES VoLTE Fault Event
61 [Tags] DCAE-VESC-R1
Aleksandra Maciaga99022c82019-11-19 13:13:08 +010062 [Documentation] Post single 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_DATA_FILE} 202 ab305d54-85b4-a31b-7db2-fb6b9e546015
Aleksandra Maciagafd6c8fa2019-11-06 15:14:11 +010064
65Publish Single VES VNF Measurement Event API V5
66 [Tags] DCAE-VESC-R1
Aleksandra Maciaga99022c82019-11-19 13:13:08 +010067 [Documentation] Post single measurement event with valid data to /eventListener/v5 endpoint and expect 202 Response Status Code
68 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
Gary Wu9abb61c2018-09-27 10:38:50 -070069
70Publish VES VoLTE Fault Batch Events
71 [Tags] DCAE-VESC-R1
Aleksandra Maciaga99022c82019-11-19 13:13:08 +010072 [Documentation] Post single event with valid data to /eventListener/v5/eventBatch endpoint and expect 202 Response Status Code
73 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
Aleksandra Maciagafd6c8fa2019-11-06 15:14:11 +010074
mprzybysa06c8172020-02-19 08:14:09 +000075Publish VES Batch Events with empty json
76 [Tags] DCAE-VESC-R1
77 [Documentation] Post empty json to /eventListener/v7/eventBatch endpoint and expect 400 Response Status Code
mprzybys8414d302020-02-19 08:36:01 +000078 Send Request And Validate Response Publish Event To VES Collector ${http_session} ${VES_BATCH_EVENT_ENDPOINT_V7} ${VES_EMPTY_JSON} 400
79
80Publish VES Batch Events with missing mandatory parameter
81 [Tags] DCAE-VESC-R1
82 [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
83 Send Request And Validate Response Publish Event To VES Collector ${http_session} ${VES_BATCH_EVENT_ENDPOINT_V7} ${VES_BATCH_MISSING_MANDATORY_PARAM_V7} 400
mprzybysa06c8172020-02-19 08:14:09 +000084
mprzybys5bcc97f2020-02-19 08:50:51 +000085Publish VES Batch Events wih parameter out of schema
86 [Tags] DCAE-VESC-R1
87 [Documentation] Post event list where one of the events have additional dummy param, to /eventListener/v7/eventBatch endpoint and expect 400 Response Status Code
88 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
89
Gary Wu9abb61c2018-09-27 10:38:50 -070090Publish VES Event With Invalid Method
91 [Tags] DCAE-VESC-R1
Aleksandra Maciaga99022c82019-11-19 13:13:08 +010092 [Documentation] Use invalid Put instead of Post method to expect 405 Response Status Code
Gary Wu9abb61c2018-09-27 10:38:50 -070093 Log Send HTTP Request with invalid method Put instead of Post
Aleksandra Maciaga99022c82019-11-19 13:13:08 +010094 Send Request And Validate Response Publish Event To VES Collector With Put Method ${http_session} ${VES_ANY_EVENT_PATH} ${EVENT_DATA_FILE} 405
Aleksandra Maciagafd6c8fa2019-11-06 15:14:11 +010095
Gary Wu9abb61c2018-09-27 10:38:50 -070096Publish VES Event With Invalid URL Path
97 [Tags] DCAE-VESC-R1
Aleksandra Maciaga99022c82019-11-19 13:13:08 +010098 [Documentation] Post single event to invalid url path and expect 404 Response Status Code
Gary Wu9abb61c2018-09-27 10:38:50 -070099 Log Send HTTP Request with invalid /listener/v5/ instead of /eventListener/v5 path
Aleksandra Maciaga99022c82019-11-19 13:13:08 +0100100 Send Request And Validate Response Publish Event To VES Collector ${http_session} /listener/v5/ ${EVENT_DATA_FILE} 404
Aleksandra Maciagafd6c8fa2019-11-06 15:14:11 +0100101
Aleksandra Maciaga72ae9c32020-04-01 13:14:14 +0200102Publish 'Other' Registration Event
Aleksandra Maciagafd6c8fa2019-11-06 15:14:11 +0100103 [Tags] DCAE-VESC-R1
Aleksandra Maciaga72ae9c32020-04-01 13:14:14 +0200104 [Documentation] Post an event aligned with “other” domain and expect HTTP 202 Accepeted Response Status Code
Aleksandra Maciaga99022c82019-11-19 13:13:08 +0100105 Send Request And Validate Response Publish Event To VES Collector ${http_session} ${VES_ANY_EVENT_PATH} ${EVENT_PNF_REGISTRATION} 202 QTFCOC540002E-reg
Aleksandra Maciagafd6c8fa2019-11-06 15:14:11 +0100106
mprzybysa1616822020-02-19 09:27:27 +0000107Publish VES Event With Invalid Method V7
108 [Tags] DCAE-VESC-R1
109 [Documentation] Use invalid Put instead of Post method to expect 405 Response Status Code
110 Log Send HTTP Request with invalid method Put instead of Post
111 Send Request And Validate Response Publish Event To VES Collector With Put Method ${http_session} ${VES_EVENTLISTENER_V7} ${EVENT_DATA_FILE} 405
112
113Publish VES Event With Invalid URL Path V7
114 [Tags] DCAE-VESC-R1
115 [Documentation] Post single event to invalid url path and expect 404 Response Status Code
116 Log Send HTTP Request with invalid /listener/v5/ instead of /eventListener/v5 path
117 Send Request And Validate Response Publish Event To VES Collector ${http_session} /listener/v7/ ${EVENT_DATA_FILE} 404
118
Aleksandra Maciaga72ae9c32020-04-01 13:14:14 +0200119Publish PNF Registration Event
mprzybysa1616822020-02-19 09:27:27 +0000120 [Tags] DCAE-VESC-R1
Aleksandra Maciaga72ae9c32020-04-01 13:14:14 +0200121 [Documentation] Post PNF Registration event and expect HTTP 202 Accepeted Response Status Code
mprzybysa1616822020-02-19 09:27:27 +0000122 Send Request And Validate Response Publish Event To VES Collector ${http_session} ${VES_EVENTLISTENER_V7} ${EVENT_PNF_REGISTRATION_V7} 202 registration_38407540
123
Aleksandra Maciagafd6c8fa2019-11-06 15:14:11 +0100124# Auth by certificate and basic auth username / password
125
126Enable VESC HTTPS with certBasicAuth
Aleksandra Maciaga72ae9c32020-04-01 13:14:14 +0200127 [Tags] DCAE-VESC-R1 DCAE-VESC-HC
Aleksandra Maciagafd6c8fa2019-11-06 15:14:11 +0100128 [Documentation] Enable VESC Https and Authentication and Run Health Check
129 Enable VESC with certBasicAuth
Aleksandra Maciaga72ae9c32020-04-01 13:14:14 +0200130 Run Healthcheck ${https_basic_auth_session}
131
132VES Collector HTTP Health Check with certBasicAuth
133 [Tags] DCAE-VESC-R1 DCAE-VESC-HC
134 [Documentation] Run healthcheck over HTTP with certBasicAuth
135 Enable VESC with certBasicAuth
136 Run Healthcheck ${http_session}
Aleksandra Maciaga99022c82019-11-19 13:13:08 +0100137
138Healthcheck with Outdated Cert
Aleksandra Maciaga72ae9c32020-04-01 13:14:14 +0200139 [Tags] DCAE-VESC-R1 DCAE-VESC-HC
Aleksandra Maciaga99022c82019-11-19 13:13:08 +0100140 [Documentation] Run healthcheck with outdated cert
Aleksandra Maciagafd6c8fa2019-11-06 15:14:11 +0100141 ${uuid}= Generate UUID
142 ${headers}= Create Dictionary Accept=*/* X-TransactionId=${GLOBAL_APPLICATION_ID}-${uuid} X-FromAppId=${GLOBAL_APPLICATION_ID}
Aleksandra Maciaga99022c82019-11-19 13:13:08 +0100143 ${err_msg}= Run Keyword And Expect Error SSLError:* Get Request ${https_outdated_cert_session} /healthcheck headers=${headers}
Aleksandra Maciagafd6c8fa2019-11-06 15:14:11 +0100144 Should Contain ${err_msg} certificate unknown
145 Log Recieved error message ${err_msg}
146
Aleksandra Maciaga99022c82019-11-19 13:13:08 +0100147Publish Single VES Fault Event Over HTTPS
148 [Tags] DCAE-VESC-R1
149 [Documentation] Post single event with valid data to /eventListener/v5 endpoint over HTTPS and expect 202 Response Status Code
150 Log Login User=${VESC_HTTPS_USER}, Pd=${VESC_HTTPS_PD}
151 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
152
153Publish Single VES Measurement Event Over HTTPS
154 [Tags] DCAE-VESC-R1
155 [Documentation] Post single measurement event with valid data to /eventListener/v5 endpoint over HTTPS and expect 202 Response Status Code
156 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
157
158Publish VES Fault Batch Events Over HTTPS
159 [Tags] DCAE-VESC-R1
160 [Documentation] Post single event with valid data to /eventListener/v5/eventBatch endpoint over HTTPS and expect 202 Response Status Code
161 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
162
163Publish VES Event With Invalid URL Path HTTPS
164 [Tags] DCAE-VESC-R1
165 [Documentation] Post single event to invalid url path over HTTPS and expect 404 response Status Code
166 Log Send HTTP Request with invalid /eventlistener/v5/ instead of /eventListener/v5 path
167 Send Request And Validate Response Publish Event To VES Collector ${https_basic_auth_session} /eventlistener/v5 ${EVENT_DATA_FILE} 404
168
169Publish Single VES VNF Measurement Event over HTTP
170 [Tags] DCAE-VESC-R1
171 [Documentation] Post single event over HTTP with authentication enabled and expect 400 Response Status Code
172 Send Request And Validate Response Publish Event To VES Collector ${http_session} ${VES_EVENTLISTENER_V7} ${VES_VALID_JSON_V7} 400
173
174Publish Single VES VNF Measurement Event with certBasicAuth over HTTPS
175 [Tags] DCAE-VESC-R1
176 [Documentation] Post single event with valid data and valid username/password to /eventListener/v7 endpoint over HTTPS and expect 202 Response Status Code
177 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
178
Aleksandra Maciagacb445592020-07-07 15:33:15 +0200179Publish Single VES VNF Measurement Event with Standard Defined Fields with certBasicAuth over HTTPS
180 [Tags] DCAE-VESC-R1
181 [Documentation] Post single event with valid data with Standard Defined Fields and valid username/password to /eventListener/v7 endpoint over HTTPS and expect 202 Response Status Code
182 Send Request And Validate Response Publish Event To VES Collector ${https_basic_auth_session} ${VES_EVENTLISTENER_V7} ${VES_VALID_JSON_V7_STND_DEF_FIELDS} 202 stndDefined-gNB-Nokia-PowerLost
183
184
Aleksandra Maciaga99022c82019-11-19 13:13:08 +0100185Publish Single VES VNF Measurement Event over HTTPS with wrong JSON
186 [Tags] DCAE-VESC-R1
187 [Documentation] Post single event with invalid data and valid username/password to /eventListener/v7 endpoint over HTTPS and expect 400 Response Status Code
188 Send Request And Validate Response Publish Event To VES Collector ${https_basic_auth_session} ${VES_EVENTLISTENER_V7} ${VES_INVALID_JSON_V7} 400
189
190Publish Single VES VNF Measurement Event With Wrong Auth
191 [Tags] DCAE-VESC-R1
192 [Documentation] Post single event with valid data and invalid username/password to /eventListener/v7 endpoint over HTTPS and expect 401 Response Status Code
193 Send Request And Validate Response Publish Event To VES Collector ${https_wrong_auth_session} ${VES_EVENTLISTENER_V7} ${VES_VALID_JSON_V7} 401
194
195Publish Single VES VNF Measurement Event With Cert
196 [Tags] DCAE-VESC-R1
197 [Documentation] Post single event with valid data and valid certificate to /eventListener/v7 endpoint over HTTPS and expect 202 Response Status Code
198 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
199
200Publish Single VES VNF Measurement Event With Wrong Cert
201 [Tags] DCAE-VESC-R1
Aleksandra Maciagaa73f9a52019-11-20 12:14:44 +0100202 [Documentation] Post single event with valid data and invalid certificate to /eventListener/v7 endpoint over HTTPS and expect SSLError with certificate unknown
203 @{err_content} Create List certificate unknown
Aleksandra Maciaga99022c82019-11-19 13:13:08 +0100204 Send Request And Expect Error Publish Event To VES Collector ${https_invalid_cert_session} ${VES_EVENTLISTENER_V7} ${VES_VALID_JSON_V7} SSLError:* @{err_content}
205
206Publish Single VES VNF Measurement Event With Outdated Cert
207 [Tags] DCAE-VESC-R1
Aleksandra Maciagaa73f9a52019-11-20 12:14:44 +0100208 [Documentation] Post single event with valid data and outdated certificate to /eventListener/v7 endpoint over HTTPS and expect SSLError with certificate unknown
209 @{err_content} Create List certificate unknown
Aleksandra Maciaga99022c82019-11-19 13:13:08 +0100210 Send Request And Expect Error Publish Event To VES Collector ${https_outdated_cert_session} ${VES_EVENTLISTENER_V7} ${VES_VALID_JSON_V7} SSLError:* @{err_content}
211
Aleksandra Maciagafd6c8fa2019-11-06 15:14:11 +0100212Publish Single VES VNF Measurement Event Without Auth And Cert
213 [Tags] DCAE-VESC-R1
Aleksandra Maciaga99022c82019-11-19 13:13:08 +0100214 [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
215 Send Request And Validate Response Publish Event To VES Collector ${https_no_cert_no_auth_session} ${VES_EVENTLISTENER_V7} ${VES_VALID_JSON_V7} 401
216
217Publish V7 Batch Event with certBasicAuth over HTTPS
218 [Tags] DCAE-VESC-R1
219 [Documentation] Post single event with valid data and valid username/password to /eventListener/v7/eventBatch endpoint over HTTPS and expect 202 Response Status Code
220 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
221
222Publish V7 Batch Event With Wrong Auth
223 [Tags] DCAE-VESC-R1
224 [Documentation] Post single event with valid data and invalid username/password to /eventListener/v7/eventBatch endpoint over HTTPS and expect 401 Response Status Code
225 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
226
227Publish V7 Batch Event With Cert
228 [Tags] DCAE-VESC-R1
229 [Documentation] Post single event with valid data and valid certificate to /eventListener/v7/eventBatch endpoint over HTTPS and expect 202 Response
230 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
231
232Publish V7 Batch With Wrong Cert
233 [Tags] DCAE-VESC-R1
Aleksandra Maciagaa73f9a52019-11-20 12:14:44 +0100234 [Documentation] Post single event with valid data and invalid certificate to /eventListener/v7/eventBatch endpoint over HTTPS and expect SSLError with certificate unknown
235 @{err_content} Create List certificate unknown
Aleksandra Maciaga99022c82019-11-19 13:13:08 +0100236 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}
237
238Publish V7 Batch Event With Outdated Cert
239 [Tags] DCAE-VESC-R1
Aleksandra Maciagaa73f9a52019-11-20 12:14:44 +0100240 [Documentation] Post single event with valid data and outdated certificate to /eventListener/v7/eventBatch endpoint over HTTPS and expect SSLError with certificate unknown
241 @{err_content} Create List certificate unknown
Aleksandra Maciaga99022c82019-11-19 13:13:08 +0100242 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}
243
244Publish V7 Batch Event Without Auth And Cert
245 [Tags] DCAE-VESC-R1
246 [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
247 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