summaryrefslogtreecommitdiffstats
path: root/benches/benchmarks.rs
blob: e72d9b090e3be49db521db9dc3591a9cd65dd41f (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
39
40
41
42
43
44
45
#![feature(test)]

extern crate test;

#[cfg(test)]
mod tests {
    use starship::{modules, print};
    use test::Bencher;
    use clap::{App, Arg};

    #[bench]
    fn full_prompt_bench(b: &mut Bencher) {
        b.iter(||{
            let args = App::new("starship")
                .arg(Arg::with_name("status_code"))
                .get_matches_from(vec!["starship", "0"]);

            starship::print::prompt(args)
        });
    }

    #[bench]
    fn char_section_bench(b: &mut Bencher) {
        b.iter(|| {
            let args = App::new("starship")
                .arg(Arg::with_name("status_code"))
                .get_matches_from(vec!["starship", "0"]);
            
            let segment = modules::handle("char", &args);
            print::stringify_segment(segment)
        });
    }

    #[bench]
    fn dir_section_bench(b: &mut Bencher) {
        b.iter(|| {
            let args = App::new("starship")
                .arg(Arg::with_name("status_code"))
                .get_matches_from(vec!["starship", "0"]);
            
            let segment = modules::handle("dir", &args);
            print::stringify_segment(segment)
        });
    }
}