Merge pull request 'feat(test) #1 Ajout d'un test de charge' (#2) from issue-1 into develop

Reviewed-on: #2
This commit is contained in:
Valentin Carroy 2024-10-29 12:08:44 +01:00
commit 7ab48e5079
2 changed files with 59 additions and 0 deletions

9
misc/k6/README.md Normal file
View File

@ -0,0 +1,9 @@
# K6 - Load Test
Very basic load testing script for [k6](https://k6.io/).
## How to run
```shell
k6 run -e LOAD_TEST_URL={altcha-api-url} TestChallenge.js
```

50
misc/k6/TestChallenge.js Normal file
View File

@ -0,0 +1,50 @@
import { check, group } from 'k6';
import http from 'k6/http'
export const options = {
scenarios: {
load: {
vus: 10,
iterations: 10,
executor: 'per-vu-iterations',
options: {
browser: {
type: 'chromium',
},
},
},
}
};
http.setResponseCallback(
http.expectedStatuses(200)
);
export default function () {
let response;
group('Request challenge', function () {
response = http.get(`${__ENV.LOAD_TEST_URL}request`);
check(response, {
'is status 200': (r) => r.status === 200,
'Contenu souhaité': r => r.body.includes('algorithm') && r.body.includes('challenge') && r.body.includes('maxNumber') && r.body.includes('salt') && r.body.includes('signature'),
});
})
group('Verify challenge', function () {
const data = {"challenge":"d5656d52c5eadce5117024fbcafc706aad397c7befa17804d73c992d966012a8","salt":"8ec1b7ed694331baeb7416d9?expires=1727963398","signature":"781014d0a7ace7e7ae9d12e2d5c0204b60a8dbf42daa352ab40ab582b03a9dc6","number":219718,};
response = http.post(`${__ENV.LOAD_TEST_URL}verify`, JSON.stringify(data),
{
headers: { 'Content-Type': 'application/json' },
});
check(response, {
'is status 200': (r) => r.status === 200,
'Challenge verified': (r) => r.body.includes('true'),
});
})
}