158 lines
4.6 KiB
Rust
158 lines
4.6 KiB
Rust
//! Benchmarking loading/markdown rendering of generated sites of various sizes
|
|
|
|
#![feature(test)]
|
|
extern crate test;
|
|
extern crate site;
|
|
|
|
use std::env;
|
|
|
|
use site::Site;
|
|
|
|
|
|
#[bench]
|
|
fn bench_loading_small_blog(b: &mut test::Bencher) {
|
|
let mut path = env::current_dir().unwrap().to_path_buf();
|
|
path.push("benches");
|
|
path.push("small-blog");
|
|
let mut site = Site::new(&path, "config.toml").unwrap();
|
|
|
|
b.iter(|| site.load().unwrap());
|
|
}
|
|
|
|
#[bench]
|
|
fn bench_loading_small_blog_with_syntax_highlighting(b: &mut test::Bencher) {
|
|
let mut path = env::current_dir().unwrap().to_path_buf();
|
|
path.push("benches");
|
|
path.push("small-blog");
|
|
let mut site = Site::new(&path, "config.toml").unwrap();
|
|
site.config.highlight_code = true;
|
|
|
|
b.iter(|| site.load().unwrap());
|
|
}
|
|
|
|
//#[bench]
|
|
//fn bench_loading_medium_blog(b: &mut test::Bencher) {
|
|
// let mut path = env::current_dir().unwrap().to_path_buf();
|
|
// path.push("benches");
|
|
// path.push("medium-blog");
|
|
// let mut site = Site::new(&path, "config.toml").unwrap();
|
|
//
|
|
// b.iter(|| site.load().unwrap());
|
|
//}
|
|
//
|
|
//#[bench]
|
|
//fn bench_loading_medium_blog_with_syntax_highlighting(b: &mut test::Bencher) {
|
|
// let mut path = env::current_dir().unwrap().to_path_buf();
|
|
// path.push("benches");
|
|
// path.push("medium-blog");
|
|
// let mut site = Site::new(&path, "config.toml").unwrap();
|
|
// site.config.highlight_code = true;
|
|
//
|
|
// b.iter(|| site.load().unwrap());
|
|
//}
|
|
//
|
|
//#[bench]
|
|
//fn bench_loading_big_blog(b: &mut test::Bencher) {
|
|
// let mut path = env::current_dir().unwrap().to_path_buf();
|
|
// path.push("benches");
|
|
// path.push("big-blog");
|
|
// let mut site = Site::new(&path, "config.toml").unwrap();
|
|
//
|
|
// b.iter(|| site.load().unwrap());
|
|
//}
|
|
//
|
|
//#[bench]
|
|
//fn bench_loading_big_blog_with_syntax_highlighting(b: &mut test::Bencher) {
|
|
// let mut path = env::current_dir().unwrap().to_path_buf();
|
|
// path.push("benches");
|
|
// path.push("big-blog");
|
|
// let mut site = Site::new(&path, "config.toml").unwrap();
|
|
// site.config.highlight_code = true;
|
|
//
|
|
// b.iter(|| site.load().unwrap());
|
|
//}
|
|
|
|
//#[bench]
|
|
//fn bench_loading_huge_blog(b: &mut test::Bencher) {
|
|
// let mut path = env::current_dir().unwrap().to_path_buf();
|
|
// path.push("benches");
|
|
// path.push("huge-blog");
|
|
// let mut site = Site::new(&path, "config.toml").unwrap();
|
|
//
|
|
// b.iter(|| site.load().unwrap());
|
|
//}
|
|
//
|
|
//#[bench]
|
|
//fn bench_loading_huge_blog_with_syntax_highlighting(b: &mut test::Bencher) {
|
|
// let mut path = env::current_dir().unwrap().to_path_buf();
|
|
// path.push("benches");
|
|
// path.push("huge-blog");
|
|
// let mut site = Site::new(&path, "config.toml").unwrap();
|
|
// site.config.highlight_code = true;
|
|
//
|
|
// b.iter(|| site.load().unwrap());
|
|
//}
|
|
|
|
#[bench]
|
|
fn bench_loading_small_kb(b: &mut test::Bencher) {
|
|
let mut path = env::current_dir().unwrap().to_path_buf();
|
|
path.push("benches");
|
|
path.push("small-kb");
|
|
let mut site = Site::new(&path, "config.toml").unwrap();
|
|
|
|
b.iter(|| site.load().unwrap());
|
|
}
|
|
|
|
#[bench]
|
|
fn bench_loading_small_kb_with_syntax_highlighting(b: &mut test::Bencher) {
|
|
let mut path = env::current_dir().unwrap().to_path_buf();
|
|
path.push("benches");
|
|
path.push("small-kb");
|
|
let mut site = Site::new(&path, "config.toml").unwrap();
|
|
site.config.highlight_code = true;
|
|
|
|
b.iter(|| site.load().unwrap());
|
|
}
|
|
|
|
//#[bench]
|
|
//fn bench_loading_medium_kb(b: &mut test::Bencher) {
|
|
// let mut path = env::current_dir().unwrap().to_path_buf();
|
|
// path.push("benches");
|
|
// path.push("medium-kb");
|
|
// let mut site = Site::new(&path, "config.toml").unwrap();
|
|
//
|
|
// b.iter(|| site.load().unwrap());
|
|
//}
|
|
//
|
|
//#[bench]
|
|
//fn bench_loading_medium_kb_with_syntax_highlighting(b: &mut test::Bencher) {
|
|
// let mut path = env::current_dir().unwrap().to_path_buf();
|
|
// path.push("benches");
|
|
// path.push("medium-kb");
|
|
// let mut site = Site::new(&path, "config.toml").unwrap();
|
|
// site.config.highlight_code = Some(true);
|
|
//
|
|
// b.iter(|| site.load().unwrap());
|
|
//}
|
|
|
|
//#[bench]
|
|
//fn bench_loading_huge_kb(b: &mut test::Bencher) {
|
|
// let mut path = env::current_dir().unwrap().to_path_buf();
|
|
// path.push("benches");
|
|
// path.push("huge-kb");
|
|
// let mut site = Site::new(&path, "config.toml").unwrap();
|
|
//
|
|
// b.iter(|| site.load().unwrap());
|
|
//}
|
|
//
|
|
//#[bench]
|
|
//fn bench_loading_huge_kb_with_syntax_highlighting(b: &mut test::Bencher) {
|
|
// let mut path = env::current_dir().unwrap().to_path_buf();
|
|
// path.push("benches");
|
|
// path.push("huge-kb");
|
|
// let mut site = Site::new(&path, "config.toml").unwrap();
|
|
// site.config.highlight_code = Some(true);
|
|
//
|
|
// b.iter(|| site.load().unwrap());
|
|
//}
|