Create meaningful panic messages in ZipCrypto test
This commit is contained in:
parent
4737f145ff
commit
9e2b14f368
1 changed files with 6 additions and 4 deletions
|
@ -50,10 +50,12 @@ fn encrypted_file() {
|
||||||
if let Err(error) = file {
|
if let Err(error) = file {
|
||||||
match error {
|
match error {
|
||||||
zip::result::ZipError::PasswordRequired => (),
|
zip::result::ZipError::PasswordRequired => (),
|
||||||
_ => panic!(),
|
_ => panic!(
|
||||||
|
"Expected PasswordRequired error when opening encrypted file without password"
|
||||||
|
),
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
panic!();
|
panic!("Error: Successfully opened encrypted file without password?!");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -64,10 +66,10 @@ fn encrypted_file() {
|
||||||
if let Err(error) = file {
|
if let Err(error) = file {
|
||||||
match error {
|
match error {
|
||||||
zip::result::ZipError::InvalidPassword => (),
|
zip::result::ZipError::InvalidPassword => (),
|
||||||
_ => panic!(),
|
_ => panic!("Expected InvalidPassword error when opening encrypted file with wrong password"),
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
panic!();
|
panic!("Error: Successfully opened encrypted file with wrong password?!");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue