@@ -92,7 +92,7 @@ impl TraversalAssertion<'_> {
92
92
}
93
93
94
94
mod different_date_intermixed {
95
- use gix_traverse:: commit:: simple:: Sorting ;
95
+ use gix_traverse:: commit:: simple:: { CommitTimeOrder , Sorting } ;
96
96
97
97
use crate :: commit:: simple:: TraversalAssertion ;
98
98
@@ -114,6 +114,7 @@ mod different_date_intermixed {
114
114
"65d6af66f60b8e39fd1ba6a1423178831e764ec5" , /* c1 */
115
115
] ,
116
116
)
117
+ . with_sorting ( Sorting :: BreadthFirst )
117
118
. check ( )
118
119
}
119
120
@@ -134,13 +135,30 @@ mod different_date_intermixed {
134
135
"65d6af66f60b8e39fd1ba6a1423178831e764ec5" , /* c1 */
135
136
] ,
136
137
)
137
- . with_sorting ( Sorting :: ByCommitTimeNewestFirst )
138
+ . with_sorting ( Sorting :: ByCommitTime ( CommitTimeOrder :: NewestFirst ) )
139
+ . check ( ) ?;
140
+
141
+ TraversalAssertion :: new_at (
142
+ "make_repos.sh" ,
143
+ "intermixed" ,
144
+ & [ "58912d92944087dcb09dca79cdd2a937cc158bed" ] , /* merge */
145
+ & [
146
+ "a9c28710e058af4e5163699960234adb9fb2abc7" , /* b2c2 */
147
+ "b648f955b930ca95352fae6f22cb593ee0244b27" , /* b2c1 */
148
+ "ad33ff2d0c4fc77d56b5fbff6f86f332fe792d83" , /* c2 */
149
+ "65d6af66f60b8e39fd1ba6a1423178831e764ec5" , /* c1 */
150
+ "0f6632a5a7d81417488b86692b729e49c1b73056" , /* b1c2 */
151
+ "77fd3c6832c0cd542f7a39f3af9250c3268db979" , /* b1c1 */
152
+ "2dce37be587e07caef8c4a5ab60b423b13a8536a" , /* c3 */
153
+ ] ,
154
+ )
155
+ . with_sorting ( Sorting :: ByCommitTime ( CommitTimeOrder :: OldestFirst ) )
138
156
. check ( )
139
157
}
140
158
}
141
159
142
160
mod different_date {
143
- use gix_traverse:: commit:: simple:: Sorting ;
161
+ use gix_traverse:: commit:: simple:: { CommitTimeOrder , Sorting } ;
144
162
145
163
use crate :: commit:: simple:: TraversalAssertion ;
146
164
@@ -186,16 +204,34 @@ mod different_date {
186
204
"65d6af66f60b8e39fd1ba6a1423178831e764ec5" , /* c1 */
187
205
] ,
188
206
)
189
- . with_sorting ( Sorting :: ByCommitTimeNewestFirst )
207
+ . with_sorting ( Sorting :: ByCommitTime ( CommitTimeOrder :: NewestFirst ) )
208
+ . check ( ) ?;
209
+ TraversalAssertion :: new_at (
210
+ "make_repos.sh" ,
211
+ "simple" ,
212
+ & [ "f49838d84281c3988eeadd988d97dd358c9f9dc4" ] , /* merge */
213
+ & [
214
+ "48e8dac19508f4238f06c8de2b10301ce64a641c" , /* b2c2 */
215
+ "cb6a6befc0a852ac74d74e0354e0f004af29cb79" , /* b2c1 */
216
+ "8cb5f13b66ce52a49399a2c49f537ee2b812369c" , /* c4 */
217
+ "33aa07785dd667c0196064e3be3c51dd9b4744ef" , /* c3 */
218
+ "ad33ff2d0c4fc77d56b5fbff6f86f332fe792d83" , /* c2 */
219
+ "65d6af66f60b8e39fd1ba6a1423178831e764ec5" , /* c1 */
220
+ "66a309480201c4157b0eae86da69f2d606aadbe7" , /* b1c2 */
221
+ "80947acb398362d8236fcb8bf0f8a9dac640583f" , /* b1c1 */
222
+ "0edb95c0c0d9933d88f532ec08fcd405d0eee882" , /* c5 */
223
+ ] ,
224
+ )
225
+ . with_sorting ( Sorting :: ByCommitTime ( CommitTimeOrder :: OldestFirst ) )
190
226
. check ( )
191
227
}
192
228
}
193
229
194
230
/// Same dates are somewhat special as they show how sorting-details on priority queues affects ordering
195
231
mod same_date {
196
- use gix_traverse:: commit:: { simple:: Sorting , Parents } ;
197
-
198
232
use crate :: { commit:: simple:: TraversalAssertion , hex_to_id} ;
233
+ use gix_traverse:: commit:: simple:: CommitTimeOrder ;
234
+ use gix_traverse:: commit:: { simple:: Sorting , Parents } ;
199
235
200
236
#[ test]
201
237
fn c4_breadth_first ( ) -> crate :: Result {
@@ -208,6 +244,7 @@ mod same_date {
208
244
"134385f6d781b7e97062102c6a483440bfda2a03" , /* c1 */
209
245
] ,
210
246
)
247
+ . with_sorting ( Sorting :: BreadthFirst )
211
248
. check ( )
212
249
}
213
250
@@ -229,6 +266,7 @@ mod same_date {
229
266
"134385f6d781b7e97062102c6a483440bfda2a03" , /* c1 */
230
267
] ,
231
268
)
269
+ . with_sorting ( Sorting :: BreadthFirst )
232
270
. check ( )
233
271
}
234
272
@@ -247,7 +285,23 @@ mod same_date {
247
285
"134385f6d781b7e97062102c6a483440bfda2a03" , /* c1 */
248
286
] ,
249
287
)
250
- . with_sorting ( Sorting :: ByCommitTimeNewestFirst )
288
+ . with_sorting ( Sorting :: ByCommitTime ( CommitTimeOrder :: NewestFirst ) )
289
+ . check ( ) ?;
290
+
291
+ TraversalAssertion :: new (
292
+ "make_traversal_repo_for_commits_same_date.sh" ,
293
+ & [ "01ec18a3ebf2855708ad3c9d244306bc1fae3e9b" ] , /* m1b1 */
294
+ & [
295
+ "efd9a841189668f1bab5b8ebade9cd0a1b139a37" , /* c5 */
296
+ "ce2e8ffaa9608a26f7b21afc1db89cadb54fd353" , /* b1c2 */
297
+ "9556057aee5abb06912922e9f26c46386a816822" , /* c4 */
298
+ "9152eeee2328073cf23dcf8e90c949170b711659" , /* b1c1 */
299
+ "17d78c64cef6c33a10a604573fd2c429e477fd63" , /* c3 */
300
+ "9902e3c3e8f0c569b4ab295ddf473e6de763e1e7" , /* c2 */
301
+ "134385f6d781b7e97062102c6a483440bfda2a03" , /* c1 */
302
+ ] ,
303
+ )
304
+ . with_sorting ( Sorting :: ByCommitTime ( CommitTimeOrder :: OldestFirst ) )
251
305
. check ( )
252
306
}
253
307
@@ -265,6 +319,7 @@ mod same_date {
265
319
] ,
266
320
)
267
321
. with_parents ( Parents :: First )
322
+ . with_sorting ( Sorting :: BreadthFirst )
268
323
. check ( )
269
324
}
270
325
@@ -285,6 +340,7 @@ mod same_date {
285
340
"134385f6d781b7e97062102c6a483440bfda2a03" , /* c1 */
286
341
] ,
287
342
)
343
+ . with_sorting ( Sorting :: BreadthFirst )
288
344
. check ( )
289
345
}
290
346
@@ -306,6 +362,7 @@ mod same_date {
306
362
"134385f6d781b7e97062102c6a483440bfda2a03" , /* c1 */
307
363
] ,
308
364
)
365
+ . with_sorting ( Sorting :: BreadthFirst )
309
366
. check_with_predicate ( |id| id != hex_to_id ( "9152eeee2328073cf23dcf8e90c949170b711659" ) )
310
367
}
311
368
@@ -323,6 +380,7 @@ mod same_date {
323
380
"9152eeee2328073cf23dcf8e90c949170b711659" , /* b1c1 */
324
381
] ,
325
382
)
383
+ . with_sorting ( Sorting :: BreadthFirst )
326
384
. check_with_predicate ( move |id| {
327
385
if id == hex_to_id ( "9556057aee5abb06912922e9f26c46386a816822" ) {
328
386
assert ! ( !seen) ;
@@ -337,9 +395,9 @@ mod same_date {
337
395
338
396
/// Some dates adjusted to be a year apart, but still 'c1' and 'c2' with the same date.
339
397
mod adjusted_dates {
340
- use gix_traverse:: commit:: { simple:: Sorting , Parents , Simple } ;
341
-
342
398
use crate :: { commit:: simple:: TraversalAssertion , hex_to_id} ;
399
+ use gix_traverse:: commit:: simple:: CommitTimeOrder ;
400
+ use gix_traverse:: commit:: { simple:: Sorting , Parents , Simple } ;
343
401
344
402
#[ test]
345
403
fn head_breadth_first ( ) -> crate :: Result {
@@ -354,6 +412,7 @@ mod adjusted_dates {
354
412
"134385f6d781b7e97062102c6a483440bfda2a03" , /* c1 */
355
413
] ,
356
414
)
415
+ . with_sorting ( Sorting :: BreadthFirst )
357
416
. check ( )
358
417
}
359
418
@@ -368,55 +427,115 @@ mod adjusted_dates {
368
427
"134385f6d781b7e97062102c6a483440bfda2a03" , /* c1 */
369
428
] ,
370
429
)
371
- . with_sorting ( Sorting :: ByCommitTimeNewestFirst )
372
- . check ( )
373
- }
374
-
375
- #[ test]
376
- fn head_date_order_with_cutoff ( ) -> crate :: Result {
430
+ . with_sorting ( Sorting :: ByCommitTime ( CommitTimeOrder :: NewestFirst ) )
431
+ . check ( ) ?;
377
432
TraversalAssertion :: new (
378
433
"make_traversal_repo_for_commits_with_dates.sh" ,
379
434
& [ "288e509293165cb5630d08f4185bdf2445bf6170" ] , /* m1b1 */
380
- & [ "bcb05040a6925f2ff5e10d3ae1f9264f2e8c43ac" ] , /* b1c1 */
435
+ & [
436
+ "9902e3c3e8f0c569b4ab295ddf473e6de763e1e7" , /* c2 */
437
+ "134385f6d781b7e97062102c6a483440bfda2a03" , /* c1 */
438
+ "bcb05040a6925f2ff5e10d3ae1f9264f2e8c43ac" , /* b1c1 */
439
+ ] ,
381
440
)
382
- . with_sorting ( Sorting :: ByCommitTimeNewestFirstCutoffOlderThan {
383
- seconds : 978393600 , // =2001-01-02 00:00:00 +0000
384
- } )
441
+ . with_sorting ( Sorting :: ByCommitTime ( CommitTimeOrder :: OldestFirst ) )
385
442
. check ( )
386
443
}
387
444
388
445
#[ test]
389
- fn date_order_with_cutoff_is_applied_to_starting_position ( ) -> crate :: Result {
390
- let dir =
391
- gix_testtools:: scripted_fixture_read_only_standalone ( "make_traversal_repo_for_commits_with_dates.sh" ) ?;
392
- let store = gix_odb:: at ( dir. join ( ".git" ) . join ( "objects" ) ) ?;
393
- let iter = Simple :: new (
394
- Some ( hex_to_id ( "9902e3c3e8f0c569b4ab295ddf473e6de763e1e7" /* c2 */ ) ) ,
395
- & store,
396
- )
397
- . sorting ( Sorting :: ByCommitTimeNewestFirstCutoffOlderThan {
398
- seconds : 978393600 , // =2001-01-02 00:00:00 +0000
399
- } ) ?;
400
- assert_eq ! (
401
- iter. count( ) ,
402
- 0 ,
403
- "initial tips that don't pass cutoff value are not returned either"
404
- ) ;
446
+ fn head_date_order_with_cutoff ( ) -> crate :: Result {
447
+ for order in all_commit_time_orderings ( ) {
448
+ TraversalAssertion :: new (
449
+ "make_traversal_repo_for_commits_with_dates.sh" ,
450
+ & [ "288e509293165cb5630d08f4185bdf2445bf6170" ] , /* m1b1 */
451
+ & [ "bcb05040a6925f2ff5e10d3ae1f9264f2e8c43ac" ] , /* b1c1 */
452
+ )
453
+ . with_sorting ( Sorting :: ByCommitTimeCutoff {
454
+ order,
455
+ seconds : 978393600 , // =2001-01-02 00:00:00 +0000
456
+ } )
457
+ . check ( ) ?;
458
+ }
405
459
Ok ( ( ) )
406
460
}
407
461
408
462
#[ test]
409
- fn head_date_order_first_parent_only ( ) -> crate :: Result {
463
+ fn head_date_order_with_cutoff_disabled ( ) -> crate :: Result {
464
+ let very_early = 878393600 ; // an early date before any commit
410
465
TraversalAssertion :: new (
411
466
"make_traversal_repo_for_commits_with_dates.sh" ,
412
467
& [ "288e509293165cb5630d08f4185bdf2445bf6170" ] , /* m1b1 */
413
468
& [
469
+ "bcb05040a6925f2ff5e10d3ae1f9264f2e8c43ac" , /* b1c1 */
414
470
"9902e3c3e8f0c569b4ab295ddf473e6de763e1e7" , /* c2 */
415
471
"134385f6d781b7e97062102c6a483440bfda2a03" , /* c1 */
416
472
] ,
417
473
)
418
- . with_sorting ( Sorting :: ByCommitTimeNewestFirst )
419
- . with_parents ( Parents :: First )
420
- . check ( )
474
+ . with_sorting ( Sorting :: ByCommitTimeCutoff {
475
+ order : CommitTimeOrder :: NewestFirst ,
476
+ seconds : very_early,
477
+ } )
478
+ . check ( ) ?;
479
+
480
+ TraversalAssertion :: new (
481
+ "make_traversal_repo_for_commits_with_dates.sh" ,
482
+ & [ "288e509293165cb5630d08f4185bdf2445bf6170" ] , /* m1b1 */
483
+ & [
484
+ "9902e3c3e8f0c569b4ab295ddf473e6de763e1e7" , /* c2 */
485
+ "134385f6d781b7e97062102c6a483440bfda2a03" , /* c1 */
486
+ "bcb05040a6925f2ff5e10d3ae1f9264f2e8c43ac" , /* b1c1 */
487
+ ] ,
488
+ )
489
+ . with_sorting ( Sorting :: ByCommitTimeCutoff {
490
+ order : CommitTimeOrder :: OldestFirst ,
491
+ seconds : very_early,
492
+ } )
493
+ . check ( ) ?;
494
+ Ok ( ( ) )
495
+ }
496
+
497
+ #[ test]
498
+ fn date_order_with_cutoff_is_applied_to_starting_position ( ) -> crate :: Result {
499
+ for order in all_commit_time_orderings ( ) {
500
+ let dir =
501
+ gix_testtools:: scripted_fixture_read_only_standalone ( "make_traversal_repo_for_commits_with_dates.sh" ) ?;
502
+ let store = gix_odb:: at ( dir. join ( ".git" ) . join ( "objects" ) ) ?;
503
+ let iter = Simple :: new (
504
+ Some ( hex_to_id ( "9902e3c3e8f0c569b4ab295ddf473e6de763e1e7" /* c2 */ ) ) ,
505
+ & store,
506
+ )
507
+ . sorting ( Sorting :: ByCommitTimeCutoff {
508
+ order,
509
+ seconds : 978393600 , // =2001-01-02 00:00:00 +0000
510
+ } ) ?;
511
+ assert_eq ! (
512
+ iter. count( ) ,
513
+ 0 ,
514
+ "initial tips that don't pass cutoff value are not returned either"
515
+ ) ;
516
+ }
517
+ Ok ( ( ) )
518
+ }
519
+
520
+ #[ test]
521
+ fn head_date_order_first_parent_only ( ) -> crate :: Result {
522
+ for order in all_commit_time_orderings ( ) {
523
+ TraversalAssertion :: new (
524
+ "make_traversal_repo_for_commits_with_dates.sh" ,
525
+ & [ "288e509293165cb5630d08f4185bdf2445bf6170" ] , /* m1b1 */
526
+ & [
527
+ "9902e3c3e8f0c569b4ab295ddf473e6de763e1e7" , /* c2 */
528
+ "134385f6d781b7e97062102c6a483440bfda2a03" , /* c1 */
529
+ ] ,
530
+ )
531
+ . with_sorting ( Sorting :: ByCommitTime ( order) )
532
+ . with_parents ( Parents :: First )
533
+ . check ( ) ?;
534
+ }
535
+ Ok ( ( ) )
536
+ }
537
+
538
+ fn all_commit_time_orderings ( ) -> [ CommitTimeOrder ; 2 ] {
539
+ [ CommitTimeOrder :: NewestFirst , CommitTimeOrder :: OldestFirst ]
421
540
}
422
541
}
0 commit comments