Turned clumsy if statements into matcher clause

This commit is contained in:
Benjamin Richner 2020-06-23 21:44:26 +02:00
parent 9e2b14f368
commit 2730ca7e76

View file

@ -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 => (),
_ => panic!(
"Expected PasswordRequired error when opening encrypted file without password" "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?!");
} }
} }