feat(k6): add bespoke load test script
This commit is contained in:
35
k6/load-test.js
Normal file
35
k6/load-test.js
Normal file
@@ -0,0 +1,35 @@
|
||||
import http from 'k6/http';
|
||||
import { check, sleep, group } from 'k6';
|
||||
|
||||
export const options = {
|
||||
scenarios: {
|
||||
load_test: {
|
||||
executor: 'ramping-vus',
|
||||
startVUs: 0,
|
||||
stages: [
|
||||
{ duration: ''10s'', target: 10 },
|
||||
{ duration: ''30s'', target: 10 },
|
||||
{ duration: '5s', target: 0 },
|
||||
],
|
||||
},
|
||||
},
|
||||
thresholds: {
|
||||
http_req_duration: ['p(95)<500'],
|
||||
http_req_failed: ['rate<0.01'],
|
||||
},
|
||||
};
|
||||
|
||||
const BASE_URL = 'http://vote.demo-apps.svc.cluster.local:80';
|
||||
|
||||
export default function () {
|
||||
group('Main Page', () => {
|
||||
const res = http.get(`${BASE_URL}/`);
|
||||
check(res, {
|
||||
'status is 200': (r) => r.status === 200,
|
||||
'response time < 500ms': (r) => r.timings.duration < 500,
|
||||
'body contains HTML': (r) => r.body.includes('<!DOCTYPE html>'),
|
||||
});
|
||||
});
|
||||
|
||||
sleep(0.5);
|
||||
}
|
||||
Reference in New Issue
Block a user