chore: update tests to use preferred method
This commit is contained in:
parent
103003388c
commit
a35c8ffa91
4 changed files with 18 additions and 17 deletions
|
@ -18,8 +18,10 @@ fn real_main() -> i32 {
|
|||
|
||||
for i in 0..archive.len() {
|
||||
let mut file = archive.by_index(i).unwrap();
|
||||
#[allow(deprecated)]
|
||||
let outpath = file.sanitized_name();
|
||||
let outpath = match file.name_as_child() {
|
||||
Some(path) => path,
|
||||
None => continue,
|
||||
};
|
||||
|
||||
{
|
||||
let comment = file.comment();
|
||||
|
@ -29,17 +31,13 @@ fn real_main() -> i32 {
|
|||
}
|
||||
|
||||
if (&*file.name()).ends_with('/') {
|
||||
println!(
|
||||
"File {} extracted to \"{}\"",
|
||||
i,
|
||||
outpath.as_path().display()
|
||||
);
|
||||
println!("File {} extracted to \"{}\"", i, outpath.display());
|
||||
fs::create_dir_all(&outpath).unwrap();
|
||||
} else {
|
||||
println!(
|
||||
"File {} extracted to \"{}\" ({} bytes)",
|
||||
i,
|
||||
outpath.as_path().display(),
|
||||
outpath.display(),
|
||||
file.size()
|
||||
);
|
||||
if let Some(p) = outpath.parent() {
|
||||
|
|
|
@ -19,8 +19,13 @@ fn real_main() -> i32 {
|
|||
|
||||
for i in 0..archive.len() {
|
||||
let file = archive.by_index(i).unwrap();
|
||||
#[allow(deprecated)]
|
||||
let outpath = file.sanitized_name();
|
||||
let outpath = match file.name_as_child() {
|
||||
Some(path) => path,
|
||||
None => {
|
||||
println!("Entry {} has a suspicious path", file.name());
|
||||
continue;
|
||||
}
|
||||
};
|
||||
|
||||
{
|
||||
let comment = file.comment();
|
||||
|
@ -33,13 +38,13 @@ fn real_main() -> i32 {
|
|||
println!(
|
||||
"Entry {} is a directory with name \"{}\"",
|
||||
i,
|
||||
outpath.as_path().display()
|
||||
outpath.display()
|
||||
);
|
||||
} else {
|
||||
println!(
|
||||
"Entry {} is a file with name \"{}\" ({} bytes)",
|
||||
i,
|
||||
outpath.as_path().display(),
|
||||
outpath.display(),
|
||||
file.size()
|
||||
);
|
||||
}
|
||||
|
|
|
@ -195,12 +195,11 @@ fn zip64_large() {
|
|||
|
||||
for i in 0..archive.len() {
|
||||
let mut file = archive.by_index(i).unwrap();
|
||||
#[allow(deprecated)]
|
||||
let outpath = file.sanitized_name();
|
||||
let outpath = file.name_as_child().unwrap();
|
||||
println!(
|
||||
"Entry {} has name \"{}\" ({} bytes)",
|
||||
i,
|
||||
outpath.as_path().display(),
|
||||
outpath.display(),
|
||||
file.size()
|
||||
);
|
||||
|
||||
|
|
|
@ -75,8 +75,7 @@ fn encrypted_file() {
|
|||
.by_index_decrypt(0, "test".as_bytes())
|
||||
.unwrap()
|
||||
.unwrap();
|
||||
#[allow(deprecated)]
|
||||
let file_name = file.sanitized_name();
|
||||
let file_name = file.name_as_child().unwrap();
|
||||
assert_eq!(file_name, std::path::PathBuf::from("test.txt"));
|
||||
|
||||
let mut data = Vec::new();
|
||||
|
|
Loading…
Add table
Reference in a new issue