2024-09-06 14:59:43 +00:00
|
|
|
// smoketest.js edited after copy/pasting from https://k6.io docs
|
2022-06-23 15:41:42 +00:00
|
|
|
// Using this like loadtest because of limited cpu/memory/other
|
|
|
|
|
|
|
|
import http from 'k6/http';
|
|
|
|
import { sleep } from 'k6';
|
|
|
|
|
|
|
|
export const options = {
|
|
|
|
// testbed created with "make dev-env" requires this name resolution
|
|
|
|
// this does not set the host header
|
|
|
|
hosts: {
|
|
|
|
'test.ingress-nginx-controller.ga:80': '127.0.0.1:80',
|
|
|
|
'test.ingress-nginx-controller.ga:443': '127.0.0.1:443',
|
|
|
|
},
|
|
|
|
// below 3 lines documented at https://k6.io
|
|
|
|
duration: '1m',
|
|
|
|
vus: 50,
|
|
|
|
thresholds: {
|
|
|
|
http_req_failed: ['rate<0.01'], // http errors should be less than 1%
|
|
|
|
http_req_duration: ['p(95)<500'], // 95 percent of response times must be below 500ms
|
|
|
|
http_req_duration: ['p(99)<1500'], // 99 percent of response times must be below 1500ms
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
export default function () {
|
2024-09-06 14:59:43 +00:00
|
|
|
// docs of k6 say this is how to add host header
|
2022-06-23 15:41:42 +00:00
|
|
|
// needed as ingress is created with this host value
|
|
|
|
const params = {
|
|
|
|
headers: {'host': 'test.ingress-nginx-controller.ga'},
|
|
|
|
};
|
2023-05-10 14:43:02 +00:00
|
|
|
// httpbun.com documents these requests
|
2022-06-23 15:41:42 +00:00
|
|
|
const req1 = {
|
|
|
|
method: 'GET',
|
|
|
|
url: 'http://test.ingress-nginx-controller.ga/ip',
|
|
|
|
};
|
|
|
|
const req2 = {
|
|
|
|
method: 'GET',
|
|
|
|
url: 'http://test.ingress-nginx-controller.ga/image/svg',
|
|
|
|
};
|
|
|
|
const req3 = {
|
|
|
|
params: {
|
|
|
|
headers: {
|
2024-09-06 14:59:43 +00:00
|
|
|
'Content-Type': 'application/json'
|
2022-06-23 15:41:42 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
method: 'POST',
|
|
|
|
url: 'https://test.ingress-nginx-controller.ga/post',
|
|
|
|
body: {
|
|
|
|
'key1': 'Hello World!',
|
|
|
|
},
|
|
|
|
};
|
|
|
|
const req4 = {
|
|
|
|
method: 'GET',
|
|
|
|
url: 'https://test.ingress-nginx-controller.ga/basic-auth/admin/admin',
|
|
|
|
params: {
|
|
|
|
headers: {
|
|
|
|
'accept': 'application/jsom',
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
for(let i=0; i<20; i++){
|
|
|
|
const res = http.batch([req0, req1, req2, req3, req4], params);
|
|
|
|
sleep(1);
|
|
|
|
}
|
|
|
|
}
|