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

Unified Diff: LayoutTests/crypto/hmac-generate-key.html

Issue 298023002: [webcrypto] Import WebKit's webcrypto tests. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: remove FIXME for unrecognized jwk usages (supported now) Created 6 years, 6 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
« no previous file with comments | « LayoutTests/crypto/hmac-export-key-expected.txt ('k') | LayoutTests/crypto/hmac-generate-key-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/crypto/hmac-generate-key.html
diff --git a/LayoutTests/crypto/hmac-generate-key.html b/LayoutTests/crypto/hmac-generate-key.html
new file mode 100644
index 0000000000000000000000000000000000000000..0da1f7292608d793399461ee688be76f4bb127af
--- /dev/null
+++ b/LayoutTests/crypto/hmac-generate-key.html
@@ -0,0 +1,58 @@
+<!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("Test generating a HMAC key.");
+
+jsTestIsAsync = true;
+
+var extractable = true;
+
+
+debug("\nGenerating a key with default length...");
+
+Promise.resolve(null).then(function(result) {
+ return crypto.subtle.generateKey("hmac", extractable, ["sign", "verify"]);
+}).then(failAndFinishJSTest, function(result) {
+ logError(result);
+ return crypto.subtle.generateKey({name: "hmac"}, extractable, ["sign", "verify"]);
+}).then(failAndFinishJSTest, function(result) {
+ logError(result);
+ return crypto.subtle.generateKey({name: "hmac", length: undefined, hash: {name: "sha-1"}}, extractable, ["sign", "verify"]);
+}).then(failAndFinishJSTest, function(result) {
+ logError(result);
+ return crypto.subtle.generateKey({name: "hmac", length: {}, hash: {name: "sha-1"}}, extractable, ["sign", "verify"]);
+}).then(failAndFinishJSTest, function(result) {
+ logError(result);
+ return crypto.subtle.generateKey({name: "hmac", hash: {name: "sha-1"}}, extractable, ["sign", "verify"]);
+}).then(function(result) {
+ key = result;
+
+ shouldBe("key.type", "'secret'");
+ shouldBe("key.extractable", "true");
+ shouldBe("key.algorithm.name", "'HMAC'");
+ shouldBe("key.algorithm.length", "512");
+ shouldBe("key.usages", '["sign", "verify"]');
+
+ debug("\nGenerating a key with custom length...");
+ return crypto.subtle.generateKey({name: "hmac", hash: {name: "sha-1"}, length: 40}, extractable, ["sign"]);
+}).then(function(result) {
+ key = result;
+
+ shouldBe("key.type", "'secret'");
+ shouldBe("key.extractable", "true");
+ shouldBe("key.algorithm.name", "'HMAC'");
+ shouldBe("key.algorithm.length", "40");
+ shouldBe("key.usages", '["sign"]');
+}).then(finishJSTest, failAndFinishJSTest);
+</script>
+
+</body>
+</html>
« no previous file with comments | « LayoutTests/crypto/hmac-export-key-expected.txt ('k') | LayoutTests/crypto/hmac-generate-key-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698