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

Unified Diff: LayoutTests/crypto/subtle/aes-cbc-generate-key.html

Issue 957713004: [WebCrypto] Split LayoutTests/crypto/subtle into per-algorithm directories (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Updated to latest master Created 5 years, 10 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/subtle/aes-cbc-generate-key.html
diff --git a/LayoutTests/crypto/subtle/aes-cbc-generate-key.html b/LayoutTests/crypto/subtle/aes-cbc-generate-key.html
deleted file mode 100644
index 21a0caf40fc49c55c25f4bac3a1ba3046d465f21..0000000000000000000000000000000000000000
--- a/LayoutTests/crypto/subtle/aes-cbc-generate-key.html
+++ /dev/null
@@ -1,43 +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("Test generating an AES key using AES-CBC algorithm.");
-
-jsTestIsAsync = true;
-
-var extractable = true;
-
-debug("Generating a key...");
-
-Promise.resolve(null).then(function(result) {
- return crypto.subtle.generateKey({name: "aes-cbc"}, extractable, ["encrypt", "decrypt"]);
-}).then(failAndFinishJSTest, function(result) {
- logError(result);
- return crypto.subtle.generateKey({name: "aes-cbc", length: undefined}, extractable, ["encrypt", "decrypt"]);
-}).then(failAndFinishJSTest, function(result) {
- logError(result);
- return crypto.subtle.generateKey({name: "aes-cbc", length: {}}, extractable, ["encrypt", "decrypt"]);
-}).then(failAndFinishJSTest, function(result) {
- logError(result);
- return crypto.subtle.generateKey({name: "aes-cbc", length: 128}, extractable, ["encrypt", "decrypt"]);
-}).then(function(result) {
- key = result;
-
- shouldBe("key.type", "'secret'");
- shouldBe("key.extractable", "true");
- shouldBe("key.algorithm.name", "'AES-CBC'");
- shouldBe("key.algorithm.length", "128");
- shouldBe("key.usages", "['encrypt', 'decrypt']");
-}).then(finishJSTest, failAndFinishJSTest);
-</script>
-
-</body>
-</html>
« no previous file with comments | « LayoutTests/crypto/subtle/aes-cbc-failures-expected.txt ('k') | LayoutTests/crypto/subtle/aes-cbc-generate-key-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698