typos/crates/typos-cli/benches/data.rs

62 lines
1.8 KiB
Rust
Raw Normal View History

2024-04-26 22:14:01 -04:00
#![allow(dead_code)]
2019-01-22 17:01:33 -05:00
2024-04-26 22:14:01 -04:00
pub(crate) static EMPTY: &str = "";
2019-01-22 17:01:33 -05:00
2024-04-26 22:14:01 -04:00
pub(crate) static NO_TOKENS: &str = " ";
pub(crate) static SINGLE_TOKEN: &str = "success";
2019-01-22 17:01:33 -05:00
// Stolen from https://github.com/BurntSushi/ripgrep/blob/master/grep-searcher/src/searcher/glue.rs
2024-04-26 22:14:01 -04:00
pub(crate) static SHERLOCK: &str = "\
2019-01-22 17:01:33 -05:00
For the Doctor Watsons of this world, as opposed to the Sherlock
Holmeses, success in the province of detective work must always
be, to a very large extent, the result of luck. Sherlock Holmes
can extract a clew from a wisp of straw or a flake of cigar ash;
but Doctor Watson has to have it taken out for him and dusted,
and exhibited clearly, with a label attached.\
";
// Stolen from https://github.com/BurntSushi/ripgrep/blob/master/grep-searcher/src/searcher/glue.rs
2024-04-26 22:14:01 -04:00
pub(crate) static CODE: &str = "\
2019-01-22 17:01:33 -05:00
extern crate snap;
use std::io;
fn main() {
let stdin = io::stdin();
let stdout = io::stdout();
// Wrap the stdin reader in a Snappy reader.
let mut rdr = snap::Reader::new(stdin.lock());
let mut wtr = stdout.lock();
io::copy(&mut rdr, &mut wtr).expect(\"I/O operation failed\");
}
";
2024-04-26 22:14:01 -04:00
pub(crate) static CORPUS: &str = include_str!("../../typos-dict/assets/words.csv");
2021-02-05 22:38:44 -05:00
2024-02-07 14:21:10 -05:00
#[derive(Debug)]
2024-04-26 22:14:01 -04:00
pub(crate) struct Data(&'static str, &'static str);
2024-02-07 14:21:10 -05:00
impl Data {
2024-04-26 22:14:01 -04:00
pub(crate) const fn name(&self) -> &'static str {
2024-02-07 14:21:10 -05:00
self.0
}
2024-04-26 22:14:01 -04:00
pub(crate) const fn content(&self) -> &'static str {
2024-02-07 14:21:10 -05:00
self.1
}
}
impl std::fmt::Display for Data {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
self.name().fmt(f)
}
}
2024-04-26 22:14:01 -04:00
pub(crate) static DATA: &[Data] = &[
2024-02-07 14:21:10 -05:00
Data("empty", EMPTY),
Data("no_tokens", NO_TOKENS),
Data("single_token", SINGLE_TOKEN),
Data("sherlock", SHERLOCK),
Data("code", CODE),
Data("corpus", CORPUS),
2021-02-05 22:38:44 -05:00
];