Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(38)

Unified Diff: LayoutTests/crypto/wrapKey-badParameters.html

Issue 243853004: [webcrypto] Reject failed operations with a DOMException rather than null. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix compile warning Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/crypto/wrapKey-badParameters.html
diff --git a/LayoutTests/crypto/wrapKey-badParameters.html b/LayoutTests/crypto/wrapKey-badParameters.html
index 21029e3b8a8e216648a8d7e9cb0cc68789e3a240..2caee5a721d5b7813ddf8ceeaaef1ca9e4f4d4a0 100644
--- a/LayoutTests/crypto/wrapKey-badParameters.html
+++ b/LayoutTests/crypto/wrapKey-badParameters.html
@@ -42,40 +42,34 @@ importWrappingKey().then(function(result) {
// Invalid key
return crypto.subtle.wrapKey('raw', 1, wrappingKey, wrapAlgorithm);
}).then(failAndFinishJSTest, function(result) {
- error = result;
- shouldBeNull("error");
+ logError(result);
// Invalid wrappingKey
return crypto.subtle.wrapKey('raw', key, '', wrapAlgorithm);
}).then(failAndFinishJSTest, function(result) {
- error = result;
- shouldBeNull("error");
+ logError(result);
// Invalid wrapAlgorithm
return crypto.subtle.wrapKey('raw', key, wrappingKey, undefined);
}).then(failAndFinishJSTest, function(result) {
- error = result;
- shouldBeNull("error");
+ logError(result);
// Invalid format for wrapKey
return crypto.subtle.wrapKey('bad-format', key, wrappingKey, wrapAlgorithm);
}).then(failAndFinishJSTest, function(result) {
- error = result;
- shouldBeNull("error");
+ logError(result);
// SHA-1 isn't a valid wrapKey algorithm.
return crypto.subtle.wrapKey('raw', key, wrappingKey, {name: 'SHA-1'});
}).then(failAndFinishJSTest, function(result) {
- error = result;
- shouldBeNull("error");
+ logError(result);
// Wrap algorithm doesn't match the wrapping key's algorithm (AES-CBC key
// with AES-CTR wrap algorithm)
aesCtrAlgorithm = {name: 'AES-CTR', counter: new Uint8Array(16), length: 0};
return crypto.subtle.wrapKey('raw', key, wrappingKey, aesCtrAlgorithm);
}).then(failAndFinishJSTest, function(result) {
- error = result;
- shouldBeNull("error");
+ logError(result);
}).then(finishJSTest, failAndFinishJSTest);
</script>
« no previous file with comments | « LayoutTests/crypto/unwrapKey-lacks-usage-expected.txt ('k') | LayoutTests/crypto/wrapKey-badParameters-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698