Skip to content

Commit ae69923

Browse files
committedMay 10, 2024·
add sql report roundtrip conversion integration test
1 parent 05ff467 commit ae69923

File tree

1 file changed

+61
-6
lines changed

1 file changed

+61
-6
lines changed
 

‎tests/test_pyreport_shim.rs

+61-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
use std::{
22
collections::HashMap,
33
fs::File,
4+
io::Seek,
45
path::{Path, PathBuf},
56
};
67

@@ -10,7 +11,9 @@ use codecov_rs::{
1011
pyreport,
1112
pyreport::{chunks, report_json},
1213
},
13-
report::{models, Report, ReportBuilder, SqliteReport, SqliteReportBuilder},
14+
report::{
15+
models, pyreport::ToPyreport, Report, ReportBuilder, SqliteReport, SqliteReportBuilder,
16+
},
1417
};
1518
use tempfile::TempDir;
1619
use winnow::Parser;
@@ -22,18 +25,15 @@ type ReportJsonStream<'a> =
2225
type ChunksStream<'a> = chunks::ReportOutputStream<&'a str, SqliteReport, SqliteReportBuilder>;
2326

2427
struct Ctx {
25-
_temp_dir: TempDir,
28+
temp_dir: TempDir,
2629
db_file: PathBuf,
2730
}
2831

2932
fn setup() -> Ctx {
3033
let temp_dir = TempDir::new().ok().unwrap();
3134
let db_file = temp_dir.path().to_owned().join("db.sqlite");
3235

33-
Ctx {
34-
_temp_dir: temp_dir,
35-
db_file,
36-
}
36+
Ctx { temp_dir, db_file }
3737
}
3838

3939
fn hash_id(key: &str) -> i64 {
@@ -316,3 +316,58 @@ fn test_parse_pyreport() {
316316
);
317317
}
318318
}
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

Comments
 (0)
Please sign in to comment.