Add test changes from other branch
This commit is contained in:
parent
c5cfb27b6c
commit
6dcadff21d
1 changed files with 79 additions and 38 deletions
|
@ -4,25 +4,30 @@ use std::io::prelude::*;
|
|||
use std::io::{Cursor, Seek};
|
||||
use std::iter::FromIterator;
|
||||
use zip::write::FileOptions;
|
||||
use zip::CompressionMethod;
|
||||
use zip::{CompressionMethod, SUPPORTED_METHODS};
|
||||
|
||||
// This test asserts that after creating a zip file, then reading its contents back out,
|
||||
// the extracted data will *always* be exactly the same as the original data.
|
||||
#[test]
|
||||
fn end_to_end() {
|
||||
for &method in SUPPORTED_METHODS {
|
||||
let file = &mut Cursor::new(Vec::new());
|
||||
|
||||
write_to_zip(file).expect("file written");
|
||||
println!("Writing file with {} compression", method);
|
||||
write_to_zip(file, method).expect("Couldn't write to test file");
|
||||
|
||||
check_zip_contents(file, ENTRY_NAME);
|
||||
println!("Checking file contents");
|
||||
check_zip_contents(file, ENTRY_NAME, Some(method));
|
||||
}
|
||||
}
|
||||
|
||||
// This test asserts that after copying a `ZipFile` to a new `ZipWriter`, then reading its
|
||||
// contents back out, the extracted data will *always* be exactly the same as the original data.
|
||||
#[test]
|
||||
fn copy() {
|
||||
for &method in SUPPORTED_METHODS {
|
||||
let src_file = &mut Cursor::new(Vec::new());
|
||||
write_to_zip(src_file).expect("file written");
|
||||
write_to_zip(src_file, method).expect("Couldn't write to test file");
|
||||
|
||||
let mut tgt_file = &mut Cursor::new(Vec::new());
|
||||
|
||||
|
@ -31,13 +36,20 @@ fn copy() {
|
|||
let mut zip = zip::ZipWriter::new(&mut tgt_file);
|
||||
|
||||
{
|
||||
let file = src_archive.by_name(ENTRY_NAME).expect("file found");
|
||||
zip.raw_copy_file(file).unwrap();
|
||||
let file = src_archive
|
||||
.by_name(ENTRY_NAME)
|
||||
.expect("Missing expected file");
|
||||
|
||||
zip.raw_copy_file(file).expect("Couldn't copy file");
|
||||
}
|
||||
|
||||
{
|
||||
let file = src_archive.by_name(ENTRY_NAME).expect("file found");
|
||||
zip.raw_copy_file_rename(file, COPY_ENTRY_NAME).unwrap();
|
||||
let file = src_archive
|
||||
.by_name(ENTRY_NAME)
|
||||
.expect("Missing expected file");
|
||||
|
||||
zip.raw_copy_file_rename(file, COPY_ENTRY_NAME)
|
||||
.expect("Couldn't copy and rename file");
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -45,18 +57,24 @@ fn copy() {
|
|||
|
||||
check_zip_file_contents(&mut tgt_archive, ENTRY_NAME);
|
||||
check_zip_file_contents(&mut tgt_archive, COPY_ENTRY_NAME);
|
||||
}
|
||||
}
|
||||
|
||||
// This test asserts that after appending to a `ZipWriter`, then reading its contents back out,
|
||||
// both the prior data and the appended data will be exactly the same as their originals.
|
||||
#[test]
|
||||
fn append() {
|
||||
for &method in SUPPORTED_METHODS {
|
||||
let mut file = &mut Cursor::new(Vec::new());
|
||||
write_to_zip(file).expect("file written");
|
||||
write_to_zip(file, method).expect("Couldn't write to test file");
|
||||
|
||||
{
|
||||
let mut zip = zip::ZipWriter::new_append(&mut file).unwrap();
|
||||
zip.start_file(COPY_ENTRY_NAME, Default::default()).unwrap();
|
||||
zip.start_file(
|
||||
COPY_ENTRY_NAME,
|
||||
FileOptions::default().compression_method(method),
|
||||
)
|
||||
.unwrap();
|
||||
zip.write_all(LOREM_IPSUM).unwrap();
|
||||
zip.finish().unwrap();
|
||||
}
|
||||
|
@ -64,27 +82,32 @@ fn append() {
|
|||
let mut zip = zip::ZipArchive::new(&mut file).unwrap();
|
||||
check_zip_file_contents(&mut zip, ENTRY_NAME);
|
||||
check_zip_file_contents(&mut zip, COPY_ENTRY_NAME);
|
||||
}
|
||||
}
|
||||
|
||||
fn write_to_zip(file: &mut Cursor<Vec<u8>>) -> zip::result::ZipResult<()> {
|
||||
fn write_to_zip(
|
||||
file: &mut Cursor<Vec<u8>>,
|
||||
method: CompressionMethod,
|
||||
) -> zip::result::ZipResult<()> {
|
||||
let mut zip = zip::ZipWriter::new(file);
|
||||
|
||||
zip.add_directory("test/", Default::default())?;
|
||||
|
||||
let options = FileOptions::default()
|
||||
.compression_method(CompressionMethod::Stored)
|
||||
.compression_method(method)
|
||||
.unix_permissions(0o755);
|
||||
|
||||
zip.start_file("test/☃.txt", options)?;
|
||||
zip.write_all(b"Hello, World!\n")?;
|
||||
|
||||
zip.start_file_with_extra_data("test_with_extra_data/🐢.txt", Default::default())?;
|
||||
zip.start_file_with_extra_data("test_with_extra_data/🐢.txt", options)?;
|
||||
zip.write_u16::<LittleEndian>(0xbeef)?;
|
||||
zip.write_u16::<LittleEndian>(EXTRA_DATA.len() as u16)?;
|
||||
zip.write_all(EXTRA_DATA)?;
|
||||
zip.end_extra_data()?;
|
||||
zip.write_all(b"Hello, World! Again.\n")?;
|
||||
|
||||
zip.start_file(ENTRY_NAME, Default::default())?;
|
||||
zip.start_file(ENTRY_NAME, options)?;
|
||||
zip.write_all(LOREM_IPSUM)?;
|
||||
|
||||
zip.finish()?;
|
||||
|
@ -127,8 +150,26 @@ fn read_zip_file<R: Read + Seek>(
|
|||
Ok(contents)
|
||||
}
|
||||
|
||||
fn check_zip_contents(zip_file: &mut Cursor<Vec<u8>>, name: &str) {
|
||||
fn check_zip_contents(
|
||||
zip_file: &mut Cursor<Vec<u8>>,
|
||||
name: &str,
|
||||
expected_method: Option<CompressionMethod>,
|
||||
) {
|
||||
let mut archive = read_zip(zip_file).unwrap();
|
||||
|
||||
match expected_method {
|
||||
Some(method) => {
|
||||
let file = archive.by_name(name).unwrap();
|
||||
|
||||
assert_eq!(
|
||||
method,
|
||||
file.compression(),
|
||||
"File does not have expected compression method"
|
||||
)
|
||||
}
|
||||
None => {}
|
||||
}
|
||||
|
||||
check_zip_file_contents(&mut archive, name);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue