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

Unified Diff: LayoutTests/crypto/hmac-generateKey-parseAlgorithm-failures.html

Issue 801793003: Improve LayoutTest output for Errors (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years 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/hmac-generateKey-parseAlgorithm-failures.html
diff --git a/LayoutTests/crypto/hmac-generateKey-parseAlgorithm-failures.html b/LayoutTests/crypto/hmac-generateKey-parseAlgorithm-failures.html
index c61b478981fbd46135138d72f976dd05cc0313c4..5aad6102a6b83eb4541c442f26656c5b1156bff6 100644
--- a/LayoutTests/crypto/hmac-generateKey-parseAlgorithm-failures.html
+++ b/LayoutTests/crypto/hmac-generateKey-parseAlgorithm-failures.html
@@ -16,34 +16,42 @@ extractable = true;
keyUsages = ['sign', 'verify'];
Promise.resolve(null).then(function() {
+ debug("\ngenerateKey() with a length of -3...");
return crypto.subtle.generateKey({name: 'hmac', hash: {name: 'sha-256'}, length: -3}, extractable , keyUsages);
}).then(failAndFinishJSTest, function(result) {
logError(result);
+ debug("\ngenerateKey() with hash name empty string...");
return crypto.subtle.generateKey({name: 'hmac', hash: {name: ''}, length: 48}, extractable , keyUsages);
}).then(failAndFinishJSTest, function(result) {
logError(result);
+ debug("\ngenerateKey() with a length of 5000000000 ...");
return crypto.subtle.generateKey({name: 'hmac', hash: {name: 'sha-256'}, length: 5000000000}, extractable , keyUsages);
}).then(failAndFinishJSTest, function(result) {
logError(result);
+ debug("\ngenerateKey() with length NaN...");
return crypto.subtle.generateKey({name: 'hmac', hash: {name: 'sha-256'}, length: NaN}, extractable , keyUsages);
}).then(failAndFinishJSTest, function(result) {
logError(result);
+ debug("\ngenerateKey() with length that is Infinity...");
return crypto.subtle.generateKey({name: 'hmac', hash: {name: 'sha-256'}, length: Infinity}, extractable , keyUsages);
}).then(failAndFinishJSTest, function(result) {
logError(result);
+ debug("\ngenerateKey() with length that is minus Infinity...");
return crypto.subtle.generateKey({name: 'hmac', hash: {name: 'sha-256'}, length: -Infinity}, extractable , keyUsages);
}).then(failAndFinishJSTest, function(result) {
logError(result);
+ debug("\ngenerateKey() with length that is a string...");
return crypto.subtle.generateKey({name: 'hmac', hash: {name: 'sha-256'}, length: crypto}, extractable , keyUsages);
}).then(failAndFinishJSTest, function(result) {
logError(result);
+ debug("\ngenerateKey() with length that is a undefined...");
return crypto.subtle.generateKey({name: 'hmac', hash: {name: 'sha-256'}, length: undefined}, extractable , keyUsages);
}).then(failAndFinishJSTest, function(result) {
logError(result);

Powered by Google App Engine
This is Rietveld 408576698