-
Notifications
You must be signed in to change notification settings - Fork 15
/
12.modularization.js
95 lines (86 loc) · 2.59 KB
/
12.modularization.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
import http from "k6/http";
import { check, sleep } from "k6";
import { Trend, Counter } from "k6/metrics";
import { textSummary } from "https://jslib.k6.io/k6-summary/0.0.2/index.js";
import { SharedArray } from 'k6/data';
import { LoadAndCheck } from "./lib/frontend/basic.js";
import { StressStages, SmokeOptions } from "./lib/load-options.js";
const BASE_URL = __ENV.BASE_URL || 'http://localhost:3333';
export const options = {
scenarios: {
smoke: {
exec: "getPizza",
executor: "constant-vus",
vus: SmokeOptions.vus,
duration: SmokeOptions.duration,
},
stress: {
exec: "getPizza",
executor: "ramping-vus",
stages: StressStages,
startTime: "10s",
},
browser: {
exec: "checkFrontend",
executor: "constant-vus",
vus: 1,
duration: "30s",
options: {
browser: {
type: "chromium",
},
},
}
},
thresholds: {
http_req_failed: ['rate<0.01'],
http_req_duration: ['p(95)<500', 'p(99)<1000'],
quickpizza_ingredients: [{ threshold: 'avg<8', abortOnFail: false }],
checks: ["rate > 0.95"]
},
};
const pizzas = new Counter('quickpizza_number_of_pizzas');
const ingredients = new Trend('quickpizza_ingredients');
const customers = new SharedArray('all my customers', function () {
return JSON.parse(open('./data/customers.json')).customers;
});
export function setup() {
let res = http.get(BASE_URL)
if (res.status !== 200) {
throw new Error(`Got unexpected status code ${res.status} when trying to setup. Exiting.`)
}
}
export function getPizza() {
let restrictions = {
maxCaloriesPerSlice: 500,
mustBeVegetarian: false,
excludedIngredients: ["pepperoni"],
excludedTools: ["knife"],
maxNumberOfToppings: 6,
minNumberOfToppings: 2
}
let res = http.post(`${BASE_URL}/api/pizza`, JSON.stringify(restrictions), {
headers: {
'Content-Type': 'application/json',
'X-User-ID': customers[Math.floor(Math.random() * customers.length)],
},
});
check(res, { "status is 200": (res) => res.status === 200 });
console.log(`${res.json().pizza.name} (${res.json().pizza.ingredients.length} ingredients)`);
pizzas.add(1);
ingredients.add(res.json().pizza.ingredients.length);
sleep(1);
}
export async function checkFrontend() {
await LoadAndCheck(BASE_URL, true);
}
export function teardown() {
// TODO: Send notification to Slack
console.log("That's all folks!")
}
export function handleSummary(data) {
return {
'summary.json': JSON.stringify(data, null, 2),
stdout: textSummary(data, { indent: " ", enableColors: true }),
}
}