summaryrefslogtreecommitdiff
path: root/op_crates/url/benches/url_ops.rs
blob: 18b2f300e2b0c2e01f94439f5ca3b15bfede3b61 (plain)
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
use bencher::{benchmark_group, benchmark_main, Bencher};

use deno_core::v8;
use deno_core::JsRuntime;
use deno_core::RuntimeOptions;

fn create_js_runtime() -> JsRuntime {
  let mut runtime = JsRuntime::new(RuntimeOptions {
    extensions: vec![deno_url::init()],
    ..Default::default()
  });

  runtime.init_extension_js().unwrap();
  runtime.init_extension_ops().unwrap();

  runtime
    .execute("setup", "const { URL } = globalThis.__bootstrap.url;")
    .unwrap();

  runtime
}

pub fn bench_runtime_js(b: &mut Bencher, src: &str) {
  let mut runtime = create_js_runtime();
  let scope = &mut runtime.handle_scope();
  let code = v8::String::new(scope, src).unwrap();
  let script = v8::Script::compile(scope, code, None).unwrap();
  b.iter(|| {
    script.run(scope).unwrap();
  });
}

fn bench_url_parse(b: &mut Bencher) {
  bench_runtime_js(b, r#"new URL(`http://www.google.com/`);"#);
}

benchmark_group!(benches, bench_url_parse,);
benchmark_main!(benches);