Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
39 lines
957 B
JavaScript
39 lines
957 B
JavaScript
import http from 'k6/http';
|
|
import { check } from 'k6';
|
|
|
|
const apiBaseUrl = __ENV.API_BASE_URL;
|
|
const dataTableId = __ENV.DATA_TABLE_ID;
|
|
|
|
export default function () {
|
|
const res = http.post(`${apiBaseUrl}/webhook/data-table-node-benchmark`, {
|
|
dataTableId: dataTableId,
|
|
items: Array.from({ length: 100 }, (_, i) => ({
|
|
firstName: `Item ${i + 1}`,
|
|
age: Math.floor(Math.random() * 100),
|
|
birthDate: new Date(),
|
|
isActive: i % 2 === 0,
|
|
})),
|
|
});
|
|
|
|
if (res.status !== 200) {
|
|
console.error(
|
|
`Invalid response. Received status ${res.status}. Body: ${JSON.stringify(res.body)}`,
|
|
);
|
|
}
|
|
|
|
check(res, {
|
|
'is status 200': (r) => r.status === 200,
|
|
'has items in response': (r) => {
|
|
if (r.status !== 200) return false;
|
|
|
|
try {
|
|
const body = JSON.parse(r.body);
|
|
return Array.isArray(body) ? body.length === 100 : false;
|
|
} catch (error) {
|
|
console.error('Error parsing response body: ', error);
|
|
return false;
|
|
}
|
|
},
|
|
});
|
|
}
|