mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-22 00:51:11 -05:00
115 lines
2.8 KiB
Rust
115 lines
2.8 KiB
Rust
#![feature(test)]
|
|
|
|
extern crate test;
|
|
|
|
mod data;
|
|
|
|
pub use assert_fs::prelude::*;
|
|
|
|
#[bench]
|
|
fn process_empty(b: &mut test::Bencher) {
|
|
let temp = assert_fs::TempDir::new().unwrap();
|
|
let sample_path = temp.child("sample");
|
|
sample_path.write_str(data::EMPTY).unwrap();
|
|
|
|
let corrections = defenestrate::Dictionary::new();
|
|
b.iter(|| {
|
|
defenestrate::process_file(
|
|
sample_path.path(),
|
|
&corrections,
|
|
defenestrate::report::print_silent,
|
|
)
|
|
});
|
|
|
|
temp.close().unwrap();
|
|
}
|
|
|
|
#[bench]
|
|
fn process_no_tokens(b: &mut test::Bencher) {
|
|
let temp = assert_fs::TempDir::new().unwrap();
|
|
let sample_path = temp.child("sample");
|
|
sample_path.write_str(data::NO_TOKENS).unwrap();
|
|
|
|
let corrections = defenestrate::Dictionary::new();
|
|
b.iter(|| {
|
|
defenestrate::process_file(
|
|
sample_path.path(),
|
|
&corrections,
|
|
defenestrate::report::print_silent,
|
|
)
|
|
});
|
|
|
|
temp.close().unwrap();
|
|
}
|
|
|
|
#[bench]
|
|
fn process_single_token(b: &mut test::Bencher) {
|
|
let temp = assert_fs::TempDir::new().unwrap();
|
|
let sample_path = temp.child("sample");
|
|
sample_path.write_str(data::SINGLE_TOKEN).unwrap();
|
|
|
|
let corrections = defenestrate::Dictionary::new();
|
|
b.iter(|| {
|
|
defenestrate::process_file(
|
|
sample_path.path(),
|
|
&corrections,
|
|
defenestrate::report::print_silent,
|
|
)
|
|
});
|
|
|
|
temp.close().unwrap();
|
|
}
|
|
|
|
#[bench]
|
|
fn process_sherlock(b: &mut test::Bencher) {
|
|
let temp = assert_fs::TempDir::new().unwrap();
|
|
let sample_path = temp.child("sample");
|
|
sample_path.write_str(data::SHERLOCK).unwrap();
|
|
|
|
let corrections = defenestrate::Dictionary::new();
|
|
b.iter(|| {
|
|
defenestrate::process_file(
|
|
sample_path.path(),
|
|
&corrections,
|
|
defenestrate::report::print_silent,
|
|
)
|
|
});
|
|
|
|
temp.close().unwrap();
|
|
}
|
|
|
|
#[bench]
|
|
fn process_code(b: &mut test::Bencher) {
|
|
let temp = assert_fs::TempDir::new().unwrap();
|
|
let sample_path = temp.child("sample");
|
|
sample_path.write_str(data::CODE).unwrap();
|
|
|
|
let corrections = defenestrate::Dictionary::new();
|
|
b.iter(|| {
|
|
defenestrate::process_file(
|
|
sample_path.path(),
|
|
&corrections,
|
|
defenestrate::report::print_silent,
|
|
)
|
|
});
|
|
|
|
temp.close().unwrap();
|
|
}
|
|
|
|
#[bench]
|
|
fn process_corpus(b: &mut test::Bencher) {
|
|
let temp = assert_fs::TempDir::new().unwrap();
|
|
let sample_path = temp.child("sample");
|
|
sample_path.write_str(data::CORPUS).unwrap();
|
|
|
|
let corrections = defenestrate::Dictionary::new();
|
|
b.iter(|| {
|
|
defenestrate::process_file(
|
|
sample_path.path(),
|
|
&corrections,
|
|
defenestrate::report::print_silent,
|
|
)
|
|
});
|
|
|
|
temp.close().unwrap();
|
|
}
|