@@ -2,7 +2,7 @@ use std::collections::{HashMap, HashSet};
2
2
use std:: path:: PathBuf ;
3
3
4
4
use anyhow:: Context ;
5
- use build_helper:: metrics:: { JsonRoot , TestOutcome } ;
5
+ use build_helper:: metrics:: { JsonRoot , TestOutcome , TestSuiteMetadata } ;
6
6
7
7
use crate :: jobs:: JobDatabase ;
8
8
use crate :: metrics:: get_test_suites;
@@ -177,6 +177,7 @@ struct TestSuiteData {
177
177
#[ derive( Hash , PartialEq , Eq , Debug , Clone ) ]
178
178
struct Test {
179
179
name : String ,
180
+ is_doctest : bool ,
180
181
}
181
182
182
183
/// Extracts all tests from the passed metrics and map them to their outcomes.
@@ -185,7 +186,10 @@ fn aggregate_tests(metrics: &JsonRoot) -> TestSuiteData {
185
186
let test_suites = get_test_suites ( & metrics) ;
186
187
for suite in test_suites {
187
188
for test in & suite. tests {
188
- let test_entry = Test { name : normalize_test_name ( & test. name ) } ;
189
+ // Poor man's detection of doctests based on the "(line XYZ)" suffix
190
+ let is_doctest = matches ! ( suite. metadata, TestSuiteMetadata :: CargoPackage { .. } )
191
+ && test. name . contains ( "(line" ) ;
192
+ let test_entry = Test { name : normalize_test_name ( & test. name ) , is_doctest } ;
189
193
tests. insert ( test_entry, test. outcome . clone ( ) ) ;
190
194
}
191
195
}
@@ -198,7 +202,7 @@ fn normalize_test_name(name: &str) -> String {
198
202
}
199
203
200
204
/// Prints test changes in Markdown format to stdout.
201
- fn report_test_diffs ( mut diff : AggregatedTestDiffs ) {
205
+ fn report_test_diffs ( diff : AggregatedTestDiffs ) {
202
206
println ! ( "## Test differences" ) ;
203
207
if diff. diffs . is_empty ( ) {
204
208
println ! ( "No test diffs found" ) ;
@@ -233,6 +237,10 @@ fn report_test_diffs(mut diff: AggregatedTestDiffs) {
233
237
}
234
238
}
235
239
240
+ fn format_job_group ( group : u64 ) -> String {
241
+ format ! ( "**J{group}**" )
242
+ }
243
+
236
244
// It would be quite noisy to repeat the jobs that contained the test changes after/next to
237
245
// every test diff. At the same time, grouping the test diffs by
238
246
// [unique set of jobs that contained them] also doesn't work well, because the test diffs
@@ -243,12 +251,20 @@ fn report_test_diffs(mut diff: AggregatedTestDiffs) {
243
251
let mut job_list_to_group: HashMap < & [ JobName ] , u64 > = HashMap :: new ( ) ;
244
252
let mut job_index: Vec < & [ JobName ] > = vec ! [ ] ;
245
253
246
- for ( _, jobs) in diff. diffs . iter_mut ( ) {
247
- jobs. sort ( ) ;
248
- }
254
+ let original_diff_count = diff. diffs . len ( ) ;
255
+ let diffs = diff
256
+ . diffs
257
+ . into_iter ( )
258
+ . filter ( |( diff, _) | !diff. test . is_doctest )
259
+ . map ( |( diff, mut jobs) | {
260
+ jobs. sort ( ) ;
261
+ ( diff, jobs)
262
+ } )
263
+ . collect :: < Vec < _ > > ( ) ;
264
+ let doctest_count = original_diff_count. saturating_sub ( diffs. len ( ) ) ;
249
265
250
266
let max_diff_count = 100 ;
251
- for ( diff, jobs) in diff . diffs . iter ( ) . take ( max_diff_count) {
267
+ for ( diff, jobs) in diffs. iter ( ) . take ( max_diff_count) {
252
268
let jobs = & * jobs;
253
269
let job_group = match job_list_to_group. get ( jobs. as_slice ( ) ) {
254
270
Some ( id) => * id,
@@ -266,18 +282,34 @@ fn report_test_diffs(mut diff: AggregatedTestDiffs) {
266
282
grouped_diffs. sort_by ( |( d1, g1) , ( d2, g2) | g1. cmp ( & g2) . then ( d1. test . name . cmp ( & d2. test . name ) ) ) ;
267
283
268
284
for ( diff, job_group) in grouped_diffs {
269
- println ! ( "- `{}`: {} (*J{job_group}*)" , diff. test. name, format_diff( & diff. diff) ) ;
285
+ println ! (
286
+ "- `{}`: {} ({})" ,
287
+ diff. test. name,
288
+ format_diff( & diff. diff) ,
289
+ format_job_group( job_group)
290
+ ) ;
270
291
}
271
292
272
- let extra_diffs = diff . diffs . len ( ) . saturating_sub ( max_diff_count) ;
293
+ let extra_diffs = diffs. len ( ) . saturating_sub ( max_diff_count) ;
273
294
if extra_diffs > 0 {
274
295
println ! ( "\n (and {extra_diffs} additional {})" , pluralize( "test diff" , extra_diffs) ) ;
275
296
}
276
297
277
- // Now print the job index
278
- println ! ( "\n **Job index**\n " ) ;
298
+ if doctest_count > 0 {
299
+ println ! (
300
+ "\n Additionally, {doctest_count} doctest {} were found." ,
301
+ pluralize( "diff" , doctest_count)
302
+ ) ;
303
+ }
304
+
305
+ // Now print the job group index
306
+ println ! ( "\n **Job group index**\n " ) ;
279
307
for ( group, jobs) in job_index. into_iter ( ) . enumerate ( ) {
280
- println ! ( "- J{group}: `{}`" , jobs. join( ", " ) ) ;
308
+ println ! (
309
+ "- {}: {}" ,
310
+ format_job_group( group as u64 ) ,
311
+ jobs. iter( ) . map( |j| format!( "`{j}`" ) ) . collect:: <Vec <_>>( ) . join( ", " )
312
+ ) ;
281
313
}
282
314
}
283
315
0 commit comments