Add missing alignment setter
This commit is contained in:
parent
d03ac6a75b
commit
0594f5ef32
1 changed files with 32 additions and 0 deletions
32
src/write.rs
32
src/write.rs
|
@ -279,6 +279,13 @@ impl FileOptions {
|
|||
}
|
||||
self
|
||||
}
|
||||
|
||||
/// Sets the alignment to the given number of bytes.
|
||||
#[must_use]
|
||||
pub fn with_alignment(mut self, alignment: u16) -> FileOptions {
|
||||
self.alignment = alignment;
|
||||
self
|
||||
}
|
||||
}
|
||||
|
||||
impl Default for FileOptions {
|
||||
|
@ -1399,6 +1406,7 @@ mod test {
|
|||
use std::io;
|
||||
use std::io::{Read, Write};
|
||||
use std::sync::Arc;
|
||||
use crate::result::ZipResult;
|
||||
|
||||
#[test]
|
||||
fn write_empty_zip() {
|
||||
|
@ -1739,6 +1747,30 @@ mod test {
|
|||
println!("{:02x?}", zip.get_ref());
|
||||
let _ = ZipArchive::new(zip).unwrap();
|
||||
}
|
||||
|
||||
#[test]
|
||||
fn test_filename_looks_like_zip64_locator_5() -> ZipResult<()> {
|
||||
let mut writer = ZipWriter::new(io::Cursor::new(Vec::new()));
|
||||
writer
|
||||
.add_directory("", FileOptions::default().with_alignment(21))
|
||||
.unwrap();
|
||||
let mut writer = ZipWriter::new_append(writer.finish().unwrap()).unwrap();
|
||||
writer.shallow_copy_file("/", "").unwrap();
|
||||
writer.shallow_copy_file("", "\0").unwrap();
|
||||
writer.shallow_copy_file("\0", "PK\u{6}\u{6}").unwrap();
|
||||
let mut writer = ZipWriter::new_append(writer.finish().unwrap()).unwrap();
|
||||
writer
|
||||
.start_file("\0\0\0\0\0\0", FileOptions::default())
|
||||
.unwrap();
|
||||
let mut writer = ZipWriter::new_append(writer.finish().unwrap()).unwrap();
|
||||
writer
|
||||
.start_file("#PK\u{6}\u{7}\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0", FileOptions::default())
|
||||
.unwrap();
|
||||
let zip = writer.finish().unwrap();
|
||||
println!("{:02x?}", zip.get_ref());
|
||||
let _ = ZipArchive::new(zip).unwrap();
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(not(feature = "unreserved"))]
|
||||
|
|
Loading…
Add table
Reference in a new issue