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

Unified Diff: LayoutTests/crypto/exportKey-badParameters.html

Issue 214233002: [webcrypto] Split exportKey.html test into smaller files. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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/exportKey.html ('k') | LayoutTests/crypto/exportKey-badParameters-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/crypto/exportKey-badParameters.html
diff --git a/LayoutTests/crypto/exportKey-badParameters.html b/LayoutTests/crypto/exportKey-badParameters.html
new file mode 100644
index 0000000000000000000000000000000000000000..638d8b47b5768c74ed29cbbcb8805ff839957756
--- /dev/null
+++ b/LayoutTests/crypto/exportKey-badParameters.html
@@ -0,0 +1,55 @@
+<!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;
+
+// Not keys
+shouldThrow("crypto.subtle.exportKey('raw', null)");
+shouldThrow("crypto.subtle.exportKey('raw', 3)");
+
+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);
+}
+
+importAesKey().then(function(result) {
+ key = result;
+
+ // Invalid export format
+ return crypto.subtle.exportKey(3, key);
+}).then(failAndFinishJSTest, function(result) {
+ error = result;
+ shouldBeNull("error");
+
+ // Invalid export format
+ return crypto.subtle.exportKey(null, key);
+}).then(failAndFinishJSTest, function(result) {
+ error = result;
+ shouldBeNull("error");
+
+ // Invalid export format
+ return crypto.subtle.exportKey('invalid', key);
+}).then(failAndFinishJSTest, function(result) {
+ error = result;
+ shouldBeNull("error");
+}).then(finishJSTest, failAndFinishJSTest);
+
+</script>
+
+</body>
+</html>
« no previous file with comments | « LayoutTests/crypto/exportKey.html ('k') | LayoutTests/crypto/exportKey-badParameters-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698