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

Unified Diff: LayoutTests/crypto/wrapKey-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/wrapKey-badParameters.html
diff --git a/LayoutTests/crypto/wrapKey-badParameters.html b/LayoutTests/crypto/wrapKey-badParameters.html
deleted file mode 100644
index 2caee5a721d5b7813ddf8ceeaaef1ca9e4f4d4a0..0000000000000000000000000000000000000000
--- a/LayoutTests/crypto/wrapKey-badParameters.html
+++ /dev/null
@@ -1,78 +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 calls to wrapKey() with bad inputs.");
-
-jsTestIsAsync = true;
-
-function importWrappingKey()
-{
- var data = new Uint8Array(16);
- var extractable = true;
- var keyUsages = ['wrapKey'];
-
- return crypto.subtle.importKey('raw', data, {name: 'AES-CBC'}, extractable, keyUsages);
-}
-
-function importKeyToWrap()
-{
- var data = new Uint8Array(16);
- var extractable = true;
- var keyUsages = ['sign'];
-
- return crypto.subtle.importKey('raw', data, {name: 'HMAC', hash: {name: 'SHA-1'}}, extractable, keyUsages);
-}
-
-importWrappingKey().then(function(result) {
- wrappingKey = result;
- return importKeyToWrap();
-}).then(function(result) {
- key = result;
-
- wrapAlgorithm = {name: 'aes-cbc', iv: new Uint8Array(16)};
-
- // Invalid key
- return crypto.subtle.wrapKey('raw', 1, wrappingKey, wrapAlgorithm);
-}).then(failAndFinishJSTest, function(result) {
- logError(result);
-
- // Invalid wrappingKey
- return crypto.subtle.wrapKey('raw', key, '', wrapAlgorithm);
-}).then(failAndFinishJSTest, function(result) {
- logError(result);
-
- // Invalid wrapAlgorithm
- return crypto.subtle.wrapKey('raw', key, wrappingKey, undefined);
-}).then(failAndFinishJSTest, function(result) {
- logError(result);
-
- // Invalid format for wrapKey
- return crypto.subtle.wrapKey('bad-format', key, wrappingKey, wrapAlgorithm);
-}).then(failAndFinishJSTest, function(result) {
- logError(result);
-
- // SHA-1 isn't a valid wrapKey algorithm.
- return crypto.subtle.wrapKey('raw', key, wrappingKey, {name: 'SHA-1'});
-}).then(failAndFinishJSTest, function(result) {
- logError(result);
-
- // Wrap algorithm doesn't match the wrapping key's algorithm (AES-CBC key
- // with AES-CTR wrap algorithm)
- aesCtrAlgorithm = {name: 'AES-CTR', counter: new Uint8Array(16), length: 0};
- return crypto.subtle.wrapKey('raw', key, wrappingKey, aesCtrAlgorithm);
-}).then(failAndFinishJSTest, function(result) {
- logError(result);
-}).then(finishJSTest, failAndFinishJSTest);
-
-</script>
-
-</body>
-</html>
« no previous file with comments | « LayoutTests/crypto/worker-subtle-crypto-concurrent.html ('k') | LayoutTests/crypto/wrapKey-badParameters-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698