diff options
author | Aaron O'Mullan <aaron.omullan@gmail.com> | 2021-11-07 15:33:56 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-07 15:33:56 +0100 |
commit | 0f8299d011420408b9a432a2c01af387af9d5fb2 (patch) | |
tree | a00012efc8c3d2fdd0a0234cc95a62f2b4251c55 | |
parent | ed761bf83f47c706d345622eda0920fdbab94787 (diff) |
fix(cli): don't panic when mapping unknown errors (#12659)
Instead fallback to generic "Error" class, fixes #12590, also update WPT expectations
-rw-r--r-- | cli/errors.rs | 3 | ||||
-rw-r--r-- | tools/wpt/expectation.json | 42 |
2 files changed, 42 insertions, 3 deletions
diff --git a/cli/errors.rs b/cli/errors.rs index b09c3c01a..bd5793430 100644 --- a/cli/errors.rs +++ b/cli/errors.rs @@ -70,12 +70,13 @@ pub(crate) fn get_error_class_name(e: &AnyError) -> &'static str { .map(get_resolution_error_class) }) .unwrap_or_else(|| { - panic!( + eprintln!( "Error '{}' contains boxed error of unknown type:{}", e, e.chain() .map(|e| format!("\n {:?}", e)) .collect::<String>() ); + "Error" }) } diff --git a/tools/wpt/expectation.json b/tools/wpt/expectation.json index 5afc59cd5..e9718b500 100644 --- a/tools/wpt/expectation.json +++ b/tools/wpt/expectation.json @@ -3089,8 +3089,46 @@ "digest.https.any.worker.html": true }, "encrypt_decrypt": { - "aes_cbc.https.any.html": false, - "aes_cbc.https.any.worker.html": false, + "aes_cbc.https.any.html": [ + "AES-CBC 128-bit key without encrypt usage", + "AES-CBC 192-bit key without encrypt usage", + "AES-CBC 256-bit key without encrypt usage", + "AES-CBC 128-bit key with mismatched key and algorithm", + "AES-CBC 192-bit key with mismatched key and algorithm", + "AES-CBC 256-bit key with mismatched key and algorithm", + "AES-CBC 128-bit key without decrypt usage", + "AES-CBC 192-bit key without decrypt usage", + "AES-CBC 256-bit key without decrypt usage", + "AES-CBC 128-bit key, zeroPadChar", + "AES-CBC 128-bit key, bigPadChar", + "AES-CBC 128-bit key, inconsistentPadChars", + "AES-CBC 192-bit key, zeroPadChar", + "AES-CBC 192-bit key, bigPadChar", + "AES-CBC 192-bit key, inconsistentPadChars", + "AES-CBC 256-bit key, zeroPadChar", + "AES-CBC 256-bit key, bigPadChar", + "AES-CBC 256-bit key, inconsistentPadChars" + ], + "aes_cbc.https.any.worker.html": [ + "AES-CBC 128-bit key without encrypt usage", + "AES-CBC 192-bit key without encrypt usage", + "AES-CBC 256-bit key without encrypt usage", + "AES-CBC 128-bit key with mismatched key and algorithm", + "AES-CBC 192-bit key with mismatched key and algorithm", + "AES-CBC 256-bit key with mismatched key and algorithm", + "AES-CBC 128-bit key without decrypt usage", + "AES-CBC 192-bit key without decrypt usage", + "AES-CBC 256-bit key without decrypt usage", + "AES-CBC 128-bit key, zeroPadChar", + "AES-CBC 128-bit key, bigPadChar", + "AES-CBC 128-bit key, inconsistentPadChars", + "AES-CBC 192-bit key, zeroPadChar", + "AES-CBC 192-bit key, bigPadChar", + "AES-CBC 192-bit key, inconsistentPadChars", + "AES-CBC 256-bit key, zeroPadChar", + "AES-CBC 256-bit key, bigPadChar", + "AES-CBC 256-bit key, inconsistentPadChars" + ], "aes_ctr.https.any.html": [ "AES-CTR 128-bit key", "AES-CTR 192-bit key", |