Skip to content

Commit 1f6c8ab

Browse files
committed
improve documentation of Topological DateOrder sorting and add baseline test (#1336)
1 parent 1272542 commit 1f6c8ab

File tree

5 files changed

+12
-7
lines changed

5 files changed

+12
-7
lines changed

gix-traverse/src/commit/topo/init.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ where
2222
{
2323
/// Create a new `Builder` for a [`Topo`] that reads commits from a repository with `find`.
2424
/// starting at the `tips` and ending at the `ends`. Like `git rev-list
25-
/// --topo-order ^ends... tips...`.
25+
/// --topo-order ^ends tips`.
2626
pub fn from_iters(
2727
find: Find,
2828
tips: impl IntoIterator<Item = impl Into<ObjectId>>,

gix-traverse/src/commit/topo/mod.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,15 @@ bitflags! {
5555
pub enum Sorting {
5656
/// Show no parents before all of its children are shown, but otherwise show
5757
/// commits in the commit timestamp order.
58+
///
59+
/// This is equivalent to `git rev-list --date-order`.
5860
#[default]
5961
DateOrder,
6062
/// Show no parents before all of its children are shown, and avoid
6163
/// showing commits on multiple lines of history intermixed.
6264
///
63-
/// In the *sample history* the order would be `8, 6, 5, 3, 7, 4, 2, 1`
65+
/// In the *sample history* the order would be `8, 6, 5, 3, 7, 4, 2, 1`.
66+
/// This is equivalent to `git rev-list --topo-order`.
6467
TopoOrder,
6568
}
6669

gix-traverse/tests/commit/topo.rs

+6-5
Original file line numberDiff line numberDiff line change
@@ -346,8 +346,8 @@ mod date_order {
346346
use super::TraversalAssertion;
347347

348348
#[test]
349-
fn simple() -> crate::Result {
350-
TraversalAssertion::new(
349+
fn with_ends() -> crate::Result {
350+
let mut assertion = TraversalAssertion::new(
351351
// Same tip and end as basic::one_end() but the order should be
352352
// different.
353353
&["62ed296d9986f50477e9f7b7e81cd0258939a43d"],
@@ -365,8 +365,9 @@ mod date_order {
365365
"33eb18340e4eaae3e3dcf80222b02f161cd3f966",
366366
"1a27cb1a26c9faed9f0d1975326fe51123ab01ed",
367367
],
368-
)
369-
.with_sorting(topo::Sorting::DateOrder)
370-
.check()
368+
);
369+
assertion.with_sorting(topo::Sorting::DateOrder).check()?;
370+
assertion.assert_baseline("date-order");
371+
Ok(())
371372
}
372373
}
Binary file not shown.

gix-traverse/tests/fixtures/make_repo_for_topo.sh

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ function optimize() {
2828
function collect_baselines() {
2929
git rev-list --topo-order HEAD > all-commits.baseline
3030
git rev-list --topo-order --first-parent HEAD > first-parent.baseline
31+
git rev-list --date-order ^f1cce1b5c7efcdfa106e95caa6c45a2cae48a481 HEAD > date-order.baseline
3132
}
3233

3334
git init

0 commit comments

Comments
 (0)