summaryrefslogtreecommitdiff
path: root/support/texlab/crates/completion/benches/bench_main.rs
blob: 66c7a3a726523387930db1aed67bbbd86d0d21e4 (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
use base_db::{util::LineCol, FeatureParams, Owner, Workspace};
use completion::CompletionParams;
use criterion::{criterion_group, criterion_main, Criterion};
use distro::Language;
use rowan::TextSize;
use url::Url;

const CODE: &str = include_str!("../../../texlab.tex");

fn criterion_benchmark(c: &mut Criterion) {
    c.bench_function("Command", |b| {
        let uri = Url::parse("http://example.com/texlab.tex").unwrap();
        let text = CODE.to_string();
        let mut workspace = Workspace::default();
        workspace.open(
            uri.clone(),
            text,
            Language::Tex,
            Owner::Client,
            LineCol { line: 0, col: 0 },
        );

        let feature = FeatureParams::new(&workspace, workspace.lookup(&uri).unwrap());
        let params = CompletionParams {
            feature,
            offset: TextSize::from(1),
        };

        b.iter(|| completion::complete(&params));
    });
}

criterion_group!(benches, criterion_benchmark);

criterion_main!(benches);