mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 09:04:07 -08:00
25 lines
666 B
JavaScript
25 lines
666 B
JavaScript
import http from 'k6/http';
|
|
import { check } from 'k6';
|
|
|
|
const apiBaseUrl = __ENV.API_BASE_URL;
|
|
|
|
export default function () {
|
|
const res = http.post(`${apiBaseUrl}/webhook/benchmark-http-node`);
|
|
|
|
check(res, {
|
|
'is status 200': (r) => r.status === 200,
|
|
'http requests were OK': (r) => {
|
|
if (r.status !== 200) return false;
|
|
|
|
try {
|
|
// Response body is an array of the request status codes made with HttpNodes
|
|
const body = JSON.parse(r.body);
|
|
return Array.isArray(body) ? body.every((request) => request.statusCode === 200) : false;
|
|
} catch (error) {
|
|
console.error('Error parsing response body: ', error);
|
|
return false;
|
|
}
|
|
},
|
|
});
|
|
}
|