servo/tests/blink_perf_tests/perf_tests/websocket/receive-arraybuffer-1MBx100.html
Jonathan Schwender ee781b71b4
tests: Vendor blink perf tests (#38654)
Vendors the [blink perf
tests](https://chromium.googlesource.com/chromium/src/+/HEAD/third_party/blink/perf_tests/).
These perf tests are useful to evaluate the performance of servo. 
The license that governs the perf tests is included in the folder. 
Running benchmark cases automatically is left to future work.

The update.py script is taken from mozjs and slightly adapted, so we can
easily filter
(and patch if this should be necessary in the future.

Testing: This PR just adds the perf_tests, but does not use or modify
them in any way.

---------

Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
2025-08-17 09:54:04 +00:00

54 lines
1.6 KiB
HTML
Vendored

<!DOCTYPE html>
<html>
<head>
<script src="../resources/runner.js"></script>
</head>
<body>
<script>
// To run this perf test, you need to run the web socket server:
// $ cd third_party/blink/perf_tests/websocket
// $ npm install
// $ npm start
// $ python ../../../../tools/perf/run_benchmark run blink_perf --browser=canary --test-path=websocket\receive-arraybuffer-1MBx100.html
const params = (new URL(document.location)).searchParams;
const server = params.get("server") || "ws://127.0.0.1:8001/";
PerfTestRunner.log("Connect to " + server);
const iteration = params.get("iteration") || 6;
async function runTestCase() {
const ws = new WebSocket(server);
ws.binaryType = "arraybuffer";
const onOpen = new Promise(resolve => {
ws.onopen = () => {
PerfTestRunner.addRunTestStartMarker();
resolve(PerfTestRunner.now());
};
});
const onClose = new Promise(resolve => {
ws.onclose = () => {
PerfTestRunner.addRunTestEndMarker();
resolve(PerfTestRunner.now());
}
});
const [openTime, closeTime] = await Promise.all([onOpen, onClose]);
const executeTimeInSeconds = (closeTime - openTime) / 1000;
const downloadSpeedInMegaBytesPerSecond = 100 / executeTimeInSeconds;
PerfTestRunner.measureValueAsync(downloadSpeedInMegaBytesPerSecond);
}
let isDone = false;
PerfTestRunner.startMeasureValuesAsync({
description: "Measure performance of receiving 1MB array 100 times.",
unit: 'MB/s',
done: function () {
isDone = true;
},
run: async function() {
while (!isDone) await runTestCase();
},
iterationCount: iteration,
});
</script>
</body>
</html>