1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-29 02:29:06 -05:00
denoland-deno/testing/bench_test.ts

53 lines
1.1 KiB
TypeScript
Raw Normal View History

2019-03-11 14:21:13 -04:00
import { test, runIfMain } from "./mod.ts";
import { bench, runBenchmarks } from "./bench.ts";
2019-02-12 10:55:01 -05:00
2019-03-11 14:21:13 -04:00
import "./bench_example.ts";
2019-02-12 10:55:01 -05:00
test(async function benching() {
2019-03-11 14:21:13 -04:00
bench(function forIncrementX1e9(b) {
2019-02-12 10:55:01 -05:00
b.start();
2019-03-04 19:53:35 -05:00
for (let i = 0; i < 1e9; i++);
2019-02-12 10:55:01 -05:00
b.stop();
});
2019-03-11 14:21:13 -04:00
bench(function forDecrementX1e9(b) {
2019-02-12 10:55:01 -05:00
b.start();
2019-03-04 19:53:35 -05:00
for (let i = 1e9; i > 0; i--);
2019-02-12 10:55:01 -05:00
b.stop();
});
2019-03-11 14:21:13 -04:00
bench(async function forAwaitFetchDenolandX10(b) {
2019-02-12 10:55:01 -05:00
b.start();
2019-03-04 19:53:35 -05:00
for (let i = 0; i < 10; i++) {
2019-02-12 10:55:01 -05:00
await fetch("https://deno.land/");
}
b.stop();
});
2019-03-11 14:21:13 -04:00
bench(async function promiseAllFetchDenolandX10(b) {
2019-02-12 10:55:01 -05:00
const urls = new Array(10).fill("https://deno.land/");
b.start();
await Promise.all(urls.map((denoland: string) => fetch(denoland)));
b.stop();
});
bench({
name: "runs100ForIncrementX1e6",
runs: 100,
2019-03-11 14:21:13 -04:00
func(b) {
2019-02-12 10:55:01 -05:00
b.start();
2019-03-04 19:53:35 -05:00
for (let i = 0; i < 1e6; i++);
2019-02-12 10:55:01 -05:00
b.stop();
}
});
2019-03-11 14:21:13 -04:00
bench(function throwing(b) {
2019-02-12 10:55:01 -05:00
b.start();
// Throws bc the timer's stop method is never called
});
await runBenchmarks({ skip: /throw/ });
});
2019-03-11 14:21:13 -04:00
runIfMain(import.meta);