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

Unified Diff: LayoutTests/crypto/sign-verify-badParameters.html

Issue 806913006: [WebCrypto] Move LayoutTests from crypto to crypto/subtle (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Update path for deserialize legacy tests 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/sign-verify-badParameters.html
diff --git a/LayoutTests/crypto/sign-verify-badParameters.html b/LayoutTests/crypto/sign-verify-badParameters.html
deleted file mode 100644
index f301e709b5949d51826fa576e34269eb28630c72..0000000000000000000000000000000000000000
--- a/LayoutTests/crypto/sign-verify-badParameters.html
+++ /dev/null
@@ -1,62 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
-<script src="../resources/js-test.js"></script>
-<script src="resources/common.js"></script>
-</head>
-<body>
-<p id="description"></p>
-<div id="console"></div>
-
-<script>
-description("Tests calling cypto.subtle.sign and crypto.subtle.verify with incorrect inputs");
-
-jsTestIsAsync = true;
-
-function importHmacKey()
-{
- var importAlgorithm = {name: 'HMAC', hash: {name: 'sha-1'}};
- var keyData = new Uint8Array(16);
- var extractable = true;
- var usages = ['sign', 'verify'];
-
- return crypto.subtle.importKey('raw', keyData, importAlgorithm, extractable, usages);
-}
-
-data = asciiToUint8Array("hello");
-hmac = {name: 'HMAC', hash: {name: 'sha-1'}};
-
-importHmacKey().then(function(result) {
- key = result;
-
- // Pass invalid signature parameters to verify()
- return crypto.subtle.verify(hmac, key, null, data);
-}).then(failAndFinishJSTest, function(result) {
- logError(result);
-
- // Pass invalid signature parameters to verify()
- return crypto.subtle.verify(hmac, key, 'a', data);
-}).then(failAndFinishJSTest, function(result) {
- logError(result);
-
- // Pass invalid signature parameters to verify()
- return crypto.subtle.verify(hmac, key, [], data);
-}).then(failAndFinishJSTest, function(result) {
- logError(result);
-
- // Operation does not support signing.
- return crypto.subtle.sign({name: 'sha-1'}, key, data);
-}).then(failAndFinishJSTest, function(result) {
- logError(result);
-
- // Operation doesn't support signing (also given an invalid key, but the
- // first failure takes priority)
- return crypto.subtle.sign({name: 'AES-CBC'}, key, data);
-}).then(failAndFinishJSTest, function(result) {
- logError(result);
-}).then(finishJSTest, failAndFinishJSTest);
-
-</script>
-
-</body>
-</html>
« no previous file with comments | « LayoutTests/crypto/sha-digest-expected.txt ('k') | LayoutTests/crypto/sign-verify-badParameters-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698