chore: update tests to use preferred method

This commit is contained in:
Marli Frost 2020-09-12 10:37:33 +01:00
parent 103003388c
commit a35c8ffa91
No known key found for this signature in database
GPG key ID: CB0BEA7CF9BD1245
4 changed files with 18 additions and 17 deletions

View file

@ -18,8 +18,10 @@ fn real_main() -> i32 {
for i in 0..archive.len() { for i in 0..archive.len() {
let mut file = archive.by_index(i).unwrap(); let mut file = archive.by_index(i).unwrap();
#[allow(deprecated)] let outpath = match file.name_as_child() {
let outpath = file.sanitized_name(); Some(path) => path,
None => continue,
};
{ {
let comment = file.comment(); let comment = file.comment();
@ -29,17 +31,13 @@ fn real_main() -> i32 {
} }
if (&*file.name()).ends_with('/') { if (&*file.name()).ends_with('/') {
println!( println!("File {} extracted to \"{}\"", i, outpath.display());
"File {} extracted to \"{}\"",
i,
outpath.as_path().display()
);
fs::create_dir_all(&outpath).unwrap(); fs::create_dir_all(&outpath).unwrap();
} else { } else {
println!( println!(
"File {} extracted to \"{}\" ({} bytes)", "File {} extracted to \"{}\" ({} bytes)",
i, i,
outpath.as_path().display(), outpath.display(),
file.size() file.size()
); );
if let Some(p) = outpath.parent() { if let Some(p) = outpath.parent() {

View file

@ -19,8 +19,13 @@ fn real_main() -> i32 {
for i in 0..archive.len() { for i in 0..archive.len() {
let file = archive.by_index(i).unwrap(); let file = archive.by_index(i).unwrap();
#[allow(deprecated)] let outpath = match file.name_as_child() {
let outpath = file.sanitized_name(); Some(path) => path,
None => {
println!("Entry {} has a suspicious path", file.name());
continue;
}
};
{ {
let comment = file.comment(); let comment = file.comment();
@ -33,13 +38,13 @@ fn real_main() -> i32 {
println!( println!(
"Entry {} is a directory with name \"{}\"", "Entry {} is a directory with name \"{}\"",
i, i,
outpath.as_path().display() outpath.display()
); );
} else { } else {
println!( println!(
"Entry {} is a file with name \"{}\" ({} bytes)", "Entry {} is a file with name \"{}\" ({} bytes)",
i, i,
outpath.as_path().display(), outpath.display(),
file.size() file.size()
); );
} }

View file

@ -195,12 +195,11 @@ fn zip64_large() {
for i in 0..archive.len() { for i in 0..archive.len() {
let mut file = archive.by_index(i).unwrap(); let mut file = archive.by_index(i).unwrap();
#[allow(deprecated)] let outpath = file.name_as_child().unwrap();
let outpath = file.sanitized_name();
println!( println!(
"Entry {} has name \"{}\" ({} bytes)", "Entry {} has name \"{}\" ({} bytes)",
i, i,
outpath.as_path().display(), outpath.display(),
file.size() file.size()
); );

View file

@ -75,8 +75,7 @@ fn encrypted_file() {
.by_index_decrypt(0, "test".as_bytes()) .by_index_decrypt(0, "test".as_bytes())
.unwrap() .unwrap()
.unwrap(); .unwrap();
#[allow(deprecated)] let file_name = file.name_as_child().unwrap();
let file_name = file.sanitized_name();
assert_eq!(file_name, std::path::PathBuf::from("test.txt")); assert_eq!(file_name, std::path::PathBuf::from("test.txt"));
let mut data = Vec::new(); let mut data = Vec::new();