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

Unified Diff: LayoutTests/crypto/exportKey-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/exportKey-badParameters.html
diff --git a/LayoutTests/crypto/exportKey-badParameters.html b/LayoutTests/crypto/exportKey-badParameters.html
deleted file mode 100644
index 2ea3e0d092422c4aa98711fc68a0a50dbbf0b752..0000000000000000000000000000000000000000
--- a/LayoutTests/crypto/exportKey-badParameters.html
+++ /dev/null
@@ -1,60 +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 exportKey() given bad inputs.");
-
-jsTestIsAsync = true;
-
-function importAesKey()
-{
- var keyData = new Uint8Array(16);
- var usages = ['encrypt'];
- var extractable = true;
- var algorithm = {name: 'aes-cbc'};
-
- return crypto.subtle.importKey('raw', keyData, algorithm, extractable, usages);
-}
-
-Promise.resolve(null).then(function(result) {
- // null is not a valid Key.
- return crypto.subtle.exportKey('raw', null);
-}).then(failAndFinishJSTest, function(result) {
- logError(result);
-
- // 3 is not a valid Key.
- return crypto.subtle.exportKey('raw', 3);
-}).then(failAndFinishJSTest, function(result) {
- logError(result);
-
- return importAesKey();
-}).then(function(result) {
- key = result;
-
- // Invalid export format
- return crypto.subtle.exportKey(3, key);
-}).then(failAndFinishJSTest, function(result) {
- logError(result);
-
- // Invalid export format
- return crypto.subtle.exportKey(null, key);
-}).then(failAndFinishJSTest, function(result) {
- logError(result);
-
- // Invalid export format
- return crypto.subtle.exportKey('invalid', key);
-}).then(failAndFinishJSTest, function(result) {
- logError(result);
-}).then(finishJSTest, failAndFinishJSTest);
-
-</script>
-
-</body>
-</html>
« no previous file with comments | « LayoutTests/crypto/ecdsa-sign-verify-expected.txt ('k') | LayoutTests/crypto/exportKey-badParameters-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698