zola/benches/site_load.rs

158 lines
4.5 KiB
Rust
Raw Normal View History

2017-06-22 03:01:45 +00:00
//! Benchmarking loading/markdown rendering of generated sites of various sizes
2017-03-22 11:59:49 +00:00
#![feature(test)]
extern crate test;
extern crate gutenberg;
use std::env;
2017-06-21 06:15:43 +00:00
use gutenberg::Site;
2017-03-22 11:59:49 +00:00
#[bench]
2017-06-21 06:15:43 +00:00
fn bench_loading_small_blog(b: &mut test::Bencher) {
2017-03-22 11:59:49 +00:00
let mut path = env::current_dir().unwrap().to_path_buf();
2017-06-21 06:15:43 +00:00
path.push("benches");
path.push("small-blog");
2017-03-25 06:59:12 +00:00
let mut site = Site::new(&path, "config.toml").unwrap();
2017-03-22 11:59:49 +00:00
2017-06-21 06:15:43 +00:00
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 = Some(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]
2017-06-22 03:01:45 +00:00
fn bench_loading_medium_blog_with_syntax_highlighting(b: &mut test::Bencher) {
2017-06-21 06:15:43 +00:00
let mut path = env::current_dir().unwrap().to_path_buf();
path.push("benches");
2017-06-22 03:01:45 +00:00
path.push("medium-blog");
2017-06-21 06:15:43 +00:00
let mut site = Site::new(&path, "config.toml").unwrap();
site.config.highlight_code = Some(true);
b.iter(|| site.load().unwrap());
}
#[bench]
2017-06-22 03:01:45 +00:00
fn bench_loading_big_blog(b: &mut test::Bencher) {
2017-06-21 06:15:43 +00:00
let mut path = env::current_dir().unwrap().to_path_buf();
path.push("benches");
2017-06-22 03:01:45 +00:00
path.push("big-blog");
2017-06-21 06:15:43 +00:00
let mut site = Site::new(&path, "config.toml").unwrap();
b.iter(|| site.load().unwrap());
}
#[bench]
2017-06-22 03:01:45 +00:00
fn bench_loading_big_blog_with_syntax_highlighting(b: &mut test::Bencher) {
2017-06-21 06:15:43 +00:00
let mut path = env::current_dir().unwrap().to_path_buf();
path.push("benches");
2017-06-22 03:01:45 +00:00
path.push("big-blog");
2017-06-21 06:15:43 +00:00
let mut site = Site::new(&path, "config.toml").unwrap();
site.config.highlight_code = Some(true);
b.iter(|| site.load().unwrap());
}
2017-06-22 03:01:45 +00:00
//#[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 = Some(true);
//
// b.iter(|| site.load().unwrap());
//}
2017-06-21 06:15:43 +00:00
#[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 = Some(true);
2017-03-22 11:59:49 +00:00
b.iter(|| site.load().unwrap());
}
2017-06-21 06:15:43 +00:00
#[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());
}
2017-03-22 11:59:49 +00:00
#[bench]
2017-06-21 06:15:43 +00:00
fn bench_loading_medium_kb_with_syntax_highlighting(b: &mut test::Bencher) {
2017-03-22 11:59:49 +00:00
let mut path = env::current_dir().unwrap().to_path_buf();
2017-06-21 06:15:43 +00:00
path.push("benches");
path.push("medium-kb");
2017-03-25 06:59:12 +00:00
let mut site = Site::new(&path, "config.toml").unwrap();
2017-06-21 06:15:43 +00:00
site.config.highlight_code = Some(true);
2017-03-22 11:59:49 +00:00
2017-06-21 06:15:43 +00:00
b.iter(|| site.load().unwrap());
}
2017-03-22 11:59:49 +00:00
2017-06-22 03:01:45 +00:00
//#[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());
//}