1
1
use std:: {
2
2
collections:: HashMap ,
3
3
fs:: File ,
4
+ io:: Seek ,
4
5
path:: { Path , PathBuf } ,
5
6
} ;
6
7
@@ -10,7 +11,9 @@ use codecov_rs::{
10
11
pyreport,
11
12
pyreport:: { chunks, report_json} ,
12
13
} ,
13
- report:: { models, Report , ReportBuilder , SqliteReport , SqliteReportBuilder } ,
14
+ report:: {
15
+ models, pyreport:: ToPyreport , Report , ReportBuilder , SqliteReport , SqliteReportBuilder ,
16
+ } ,
14
17
} ;
15
18
use tempfile:: TempDir ;
16
19
use winnow:: Parser ;
@@ -22,18 +25,15 @@ type ReportJsonStream<'a> =
22
25
type ChunksStream < ' a > = chunks:: ReportOutputStream < & ' a str , SqliteReport , SqliteReportBuilder > ;
23
26
24
27
struct Ctx {
25
- _temp_dir : TempDir ,
28
+ temp_dir : TempDir ,
26
29
db_file : PathBuf ,
27
30
}
28
31
29
32
fn setup ( ) -> Ctx {
30
33
let temp_dir = TempDir :: new ( ) . ok ( ) . unwrap ( ) ;
31
34
let db_file = temp_dir. path ( ) . to_owned ( ) . join ( "db.sqlite" ) ;
32
35
33
- Ctx {
34
- _temp_dir : temp_dir,
35
- db_file,
36
- }
36
+ Ctx { temp_dir, db_file }
37
37
}
38
38
39
39
fn hash_id ( key : & str ) -> i64 {
@@ -316,3 +316,58 @@ fn test_parse_pyreport() {
316
316
) ;
317
317
}
318
318
}
319
+
320
+ #[ test]
321
+ fn test_sql_to_pyreport_to_sql_totals_match ( ) {
322
+ let report_json_input_file =
323
+ File :: open ( common:: sample_data_path ( ) . join ( "codecov-rs-reports-json-d2a9ba1.txt" ) )
324
+ . expect ( "Failed to open report json file" ) ;
325
+ let chunks_input_file =
326
+ File :: open ( common:: sample_data_path ( ) . join ( "codecov-rs-chunks-d2a9ba1.txt" ) )
327
+ . expect ( "Failed to open chunks file" ) ;
328
+ let test_ctx = setup ( ) ;
329
+
330
+ let report = pyreport:: parse_pyreport (
331
+ & report_json_input_file,
332
+ & chunks_input_file,
333
+ test_ctx. db_file ,
334
+ )
335
+ . expect ( "Failed to parse pyreport" ) ;
336
+
337
+ let report_json_output_path = test_ctx. temp_dir . path ( ) . join ( "report_json.json" ) ;
338
+ let chunks_output_path = test_ctx. temp_dir . path ( ) . join ( "chunks.txt" ) ;
339
+ let mut report_json_output_file = File :: options ( )
340
+ . create ( true )
341
+ . truncate ( true )
342
+ . read ( true )
343
+ . write ( true )
344
+ . open ( report_json_output_path)
345
+ . unwrap ( ) ;
346
+ let mut chunks_output_file = File :: options ( )
347
+ . create ( true )
348
+ . truncate ( true )
349
+ . read ( true )
350
+ . write ( true )
351
+ . open ( chunks_output_path)
352
+ . unwrap ( ) ;
353
+
354
+ report
355
+ . to_pyreport ( & mut report_json_output_file, & mut chunks_output_file)
356
+ . expect ( "Failed to write to output files" ) ;
357
+
358
+ let original_totals = report. totals ( ) . unwrap ( ) ;
359
+
360
+ let _ = report_json_output_file. rewind ( ) . unwrap ( ) ;
361
+ let _ = chunks_output_file. rewind ( ) . unwrap ( ) ;
362
+
363
+ let roundtrip_db_path = test_ctx. temp_dir . path ( ) . join ( "roundtrip.sqlite" ) ;
364
+ let report = pyreport:: parse_pyreport (
365
+ & report_json_output_file,
366
+ & chunks_output_file,
367
+ roundtrip_db_path,
368
+ )
369
+ . expect ( "Failed to parse roundtrip report" ) ;
370
+ let roundtrip_totals = report. totals ( ) . unwrap ( ) ;
371
+
372
+ assert_eq ! ( original_totals, roundtrip_totals) ;
373
+ }
0 commit comments