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

Unified Diff: LayoutTests/crypto/aes-cbc-generateKey-parseAlgorithm-failures.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/aes-cbc-generateKey-parseAlgorithm-failures.html
diff --git a/LayoutTests/crypto/aes-cbc-generateKey-parseAlgorithm-failures.html b/LayoutTests/crypto/aes-cbc-generateKey-parseAlgorithm-failures.html
deleted file mode 100644
index a7e60ab9b1a6cc2a84f06d3edc2a2c0b218af515..0000000000000000000000000000000000000000
--- a/LayoutTests/crypto/aes-cbc-generateKey-parseAlgorithm-failures.html
+++ /dev/null
@@ -1,58 +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 generateKey() with bad AES-CBC parameters.");
-jsTestIsAsync = true;
-
-extractable = true;
-keyUsages = ['encrypt', 'decrypt'];
-
-Promise.resolve(null).then(function() {
- debug("\ngenerateKey() with invalid keyUsages value that is -1...");
- return crypto.subtle.generateKey({ name: 'aes-cbc', length: 1024 }, extractable, -1);
-}).then(failAndFinishJSTest, function(result) {
- logError(result);
-
- debug("\ngenerateKey() with invalid keyUsages value that is null...");
- return crypto.subtle.generateKey({ name: 'aes-cbc', length: 1024 }, extractable, null);
-}).then(failAndFinishJSTest, function(result) {
- logError(result);
-
- debug("\ngenerateKey() with an invalid key usage of 'boo'...");
- return crypto.subtle.generateKey({ name: 'aes-cbc', length: 1024 }, extractable, ['boo']);
-}).then(failAndFinishJSTest, function(result) {
- logError(result);
-
- debug("\ngenerateKey() without length...");
- return crypto.subtle.generateKey({ name: 'aes-cbc' }, extractable, keyUsages);
-}).then(failAndFinishJSTest, function(result) {
- logError(result);
-
- debug("\ngenerateKey() with a length of 70000...");
- return crypto.subtle.generateKey({ name: 'aes-cbc', length: 70000 }, extractable, keyUsages);
-}).then(failAndFinishJSTest, function(result) {
- logError(result);
-
- debug("\ngenerateKey() with a length of -3...");
- return crypto.subtle.generateKey({ name: 'aes-cbc', length: -3 }, extractable, keyUsages);
-}).then(failAndFinishJSTest, function(result) {
- logError(result);
-
- debug("\ngenerateKey() with length that is minus Infinity...");
- return crypto.subtle.generateKey({ name: 'aes-cbc', length: -Infinity }, extractable, keyUsages);
-}).then(failAndFinishJSTest, function(result) {
- logError(result);
-}).then(finishJSTest, failAndFinishJSTest);
-
-</script>
-
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698