2024-09-02 02:21:41 -07:00
|
|
|
import http from 'k6/http';
|
|
|
|
import { check } from 'k6';
|
|
|
|
|
|
|
|
const apiBaseUrl = __ENV.API_BASE_URL;
|
|
|
|
|
|
|
|
export default function () {
|
|
|
|
const res = http.post(`${apiBaseUrl}/webhook/code-node-benchmark`, {});
|
2024-10-17 03:37:00 -07:00
|
|
|
|
|
|
|
if (res.status !== 200) {
|
|
|
|
console.error(
|
|
|
|
`Invalid response. Received status ${res.status}. Body: ${JSON.stringify(res.body)}`,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2024-09-02 02:21:41 -07:00
|
|
|
check(res, {
|
|
|
|
'is status 200': (r) => r.status === 200,
|
2024-09-10 08:15:21 -07:00
|
|
|
'has items in response': (r) => {
|
|
|
|
if (r.status !== 200) return false;
|
|
|
|
|
|
|
|
try {
|
|
|
|
const body = JSON.parse(r.body);
|
2024-10-02 02:04:53 -07:00
|
|
|
return Array.isArray(body) ? body.length === 100 : false;
|
2024-09-10 08:15:21 -07:00
|
|
|
} catch (error) {
|
|
|
|
console.error('Error parsing response body: ', error);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
},
|
2024-09-02 02:21:41 -07:00
|
|
|
});
|
|
|
|
}
|