2024-08-06 21:55:20 +03:00
|
|
|
use criterion::{black_box, criterion_group, criterion_main, Criterion, Throughput};
|
|
|
|
use gitbutler_branch_actions::list_branches;
|
|
|
|
use gitbutler_command_context::CommandContext;
|
|
|
|
use gitbutler_project::Project;
|
|
|
|
|
|
|
|
pub fn fixture_project(name: &str, script: &str) -> Project {
|
|
|
|
gitbutler_testsupport::read_only::fixture_project(script, name).unwrap()
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn benchmark_list_branches(c: &mut Criterion) {
|
|
|
|
const NUM_BRANCHES: u64 = 300;
|
|
|
|
for (bench_name, num_references, (repo_name, script_name)) in [
|
|
|
|
(
|
|
|
|
"list-branches[many local branches]",
|
|
|
|
NUM_BRANCHES,
|
|
|
|
("many-local", "branch-benches.sh"),
|
|
|
|
),
|
|
|
|
(
|
|
|
|
"list-branches[tiny repo]",
|
|
|
|
3,
|
|
|
|
("one-vbranch-on-integration-two-remotes", "for-listing.sh"),
|
|
|
|
),
|
|
|
|
(
|
|
|
|
"list-branches[many local branches [packed]]",
|
|
|
|
NUM_BRANCHES,
|
|
|
|
("many-local-packed", "branch-benches.sh"),
|
|
|
|
),
|
|
|
|
(
|
|
|
|
"list-branches[many local branches [tracked]]",
|
|
|
|
NUM_BRANCHES * 2,
|
|
|
|
("many-local-tracked", "branch-benches.sh"),
|
|
|
|
),
|
|
|
|
(
|
|
|
|
"list-branches[many local branches [tracked & packed]]",
|
|
|
|
NUM_BRANCHES * 2,
|
|
|
|
("many-local-tracked-packed", "branch-benches.sh"),
|
|
|
|
),
|
|
|
|
] {
|
|
|
|
let mut group = c.benchmark_group(bench_name);
|
|
|
|
let project = fixture_project(repo_name, script_name);
|
2024-08-07 11:51:46 +03:00
|
|
|
let ctx = CommandContext::open(&project).unwrap();
|
2024-08-06 21:55:20 +03:00
|
|
|
group.throughput(Throughput::Elements(num_references));
|
|
|
|
group
|
|
|
|
.bench_function("no filter", |b| {
|
2024-08-07 11:51:46 +03:00
|
|
|
b.iter(|| list_branches(black_box(&ctx), None, None))
|
2024-08-06 21:55:20 +03:00
|
|
|
})
|
|
|
|
.bench_function("name-filter rejecting all", |b| {
|
2024-08-09 22:12:57 +03:00
|
|
|
b.iter(|| list_branches(black_box(&ctx), None, Some(vec!["not-available".into()])))
|
2024-08-06 21:55:20 +03:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
criterion_group!(benches, benchmark_list_branches);
|
|
|
|
criterion_main!(benches);
|