Turned clumsy if statements into matcher clause
This commit is contained in:
parent
9e2b14f368
commit
2730ca7e76
1 changed files with 12 additions and 18 deletions
|
@ -46,30 +46,24 @@ fn encrypted_file() {
|
||||||
{
|
{
|
||||||
// No password
|
// No password
|
||||||
let file = archive.by_index(0);
|
let file = archive.by_index(0);
|
||||||
assert!(file.is_err());
|
match file {
|
||||||
if let Err(error) = file {
|
Err(zip::result::ZipError::PasswordRequired) => (),
|
||||||
match error {
|
Err(_) => panic!(
|
||||||
zip::result::ZipError::PasswordRequired => (),
|
"Expected PasswordRequired error when opening encrypted file without password"
|
||||||
_ => panic!(
|
),
|
||||||
"Expected PasswordRequired error when opening encrypted file without password"
|
Ok(_) => panic!("Error: Successfully opened encrypted file without password?!"),
|
||||||
),
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
panic!("Error: Successfully opened encrypted file without password?!");
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
{
|
{
|
||||||
// Wrong password
|
// Wrong password
|
||||||
let file = archive.by_index_decrypt(0, b"wrong password");
|
let file = archive.by_index_decrypt(0, b"wrong password");
|
||||||
assert!(file.is_err());
|
match file {
|
||||||
if let Err(error) = file {
|
Err(zip::result::ZipError::InvalidPassword) => (),
|
||||||
match error {
|
Err(_) => panic!(
|
||||||
zip::result::ZipError::InvalidPassword => (),
|
"Expected InvalidPassword error when opening encrypted file with wrong password"
|
||||||
_ => panic!("Expected InvalidPassword error when opening encrypted file with wrong password"),
|
),
|
||||||
}
|
Ok(_) => panic!("Error: Successfully opened encrypted file with wrong password?!"),
|
||||||
} else {
|
|
||||||
panic!("Error: Successfully opened encrypted file with wrong password?!");
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue