From 161308c673009c5deaa9cceeb88bd8b592ae4495 Mon Sep 17 00:00:00 2001 From: Jack Fletcher Date: Wed, 26 Jan 2022 23:47:40 +0000 Subject: [PATCH] Add comments to test helpers --- tests/end_to_end.rs | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/tests/end_to_end.rs b/tests/end_to_end.rs index 4f938345..2e2c9793 100644 --- a/tests/end_to_end.rs +++ b/tests/end_to_end.rs @@ -85,6 +85,7 @@ fn append() { } } +// Write a test zip archive to buffer. fn write_to_zip( file: &mut Cursor>, method: CompressionMethod, @@ -114,6 +115,7 @@ fn write_to_zip( Ok(()) } +// Load an archive from buffer and check for expected test data. fn read_zip(zip_file: R) -> zip::result::ZipResult> { let mut archive = zip::ZipArchive::new(zip_file).unwrap(); @@ -139,6 +141,7 @@ fn read_zip(zip_file: R) -> zip::result::ZipResult( archive: &mut zip::ZipArchive, name: &str, @@ -150,14 +153,16 @@ fn read_zip_file( Ok(contents) } +// Check a file in the archive contains expected data. fn check_zip_contents( zip_file: &mut Cursor>, name: &str, expected_method: Option, ) { - let mut archive = read_zip(zip_file).unwrap(); + let mut archive = check_test_archive(zip_file).unwrap(); if let Some(expected_method) = expected_method { + // Check the file's compression method. let file = archive.by_name(name).unwrap(); let real_method = file.compression(); @@ -167,10 +172,11 @@ fn check_zip_contents( ); } - check_zip_file_contents(&mut archive, name); + check_test_file_contents(&mut archive, name); } -fn check_zip_file_contents(archive: &mut zip::ZipArchive, name: &str) { +// Check a file in the archive contains the lorem string. +fn check_test_file_contents(archive: &mut zip::ZipArchive, name: &str) { let file_contents: String = read_zip_file(archive, name).unwrap(); assert_eq!(file_contents.as_bytes(), LOREM_IPSUM); }