-
Notifications
You must be signed in to change notification settings - Fork 15
/
11.composability.js
122 lines (112 loc) · 3.17 KB
/
11.composability.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
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 { browser } from "k6/browser";
const BASE_URL = __ENV.BASE_URL || "http://localhost:3333";
export const options = {
scenarios: {
smoke: {
exec: "getPizza",
executor: "constant-vus",
vus: 1,
duration: "10s",
},
stress: {
exec: "getPizza",
executor: "ramping-vus",
stages: [
{ duration: "5s", target: 5 },
{ duration: "10s", target: 5 },
{ duration: "5s", target: 0 },
],
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() {
let checkData;
const page = await browser.newPage();
try {
await page.goto(BASE_URL);
checkData = await page.locator("h1").textContent();
check(page, {
header: checkData == "Looking to break out of your pizza routine?",
});
await page.locator('//button[. = "Pizza, Please!"]').click();
await page.waitForTimeout(500);
await page.screenshot({ path: "screenshot.png" });
checkData = await page.locator("div#recommendations").textContent();
check(page, {
recommendation: checkData != "",
});
} finally {
await page.close();
}
}
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 }),
};
}