Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / crypto / subtle / wrapKey-badParameters.html
blobe5e4a662027b9cf3696189f9429f19b26eac61f0
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script src="../../resources/js-test.js"></script>
5 <script src="resources/common.js"></script>
6 </head>
7 <body>
8 <p id="description"></p>
9 <div id="console"></div>
11 <script>
12 description("Tests calls to wrapKey() with bad inputs.");
14 jsTestIsAsync = true;
16 function importWrappingKey()
18 var data = new Uint8Array(16);
19 var extractable = true;
20 var keyUsages = ['wrapKey'];
22 return crypto.subtle.importKey('raw', data, {name: 'AES-CBC'}, extractable, keyUsages);
25 function importKeyToWrap()
27 var data = new Uint8Array(16);
28 var extractable = true;
29 var keyUsages = ['sign'];
31 return crypto.subtle.importKey('raw', data, {name: 'HMAC', hash: {name: 'SHA-1'}}, extractable, keyUsages);
34 importWrappingKey().then(function(result) {
35 wrappingKey = result;
36 return importKeyToWrap();
37 }).then(function(result) {
38 key = result;
40 wrapAlgorithm = {name: 'aes-cbc', iv: new Uint8Array(16)};
42 // Invalid key
43 return crypto.subtle.wrapKey('raw', 1, wrappingKey, wrapAlgorithm);
44 }).then(failAndFinishJSTest, function(result) {
45 logError(result);
47 // Invalid wrappingKey
48 return crypto.subtle.wrapKey('raw', key, '', wrapAlgorithm);
49 }).then(failAndFinishJSTest, function(result) {
50 logError(result);
52 // Invalid wrapAlgorithm
53 return crypto.subtle.wrapKey('raw', key, wrappingKey, undefined);
54 }).then(failAndFinishJSTest, function(result) {
55 logError(result);
57 // Invalid format for wrapKey
58 return crypto.subtle.wrapKey('bad-format', key, wrappingKey, wrapAlgorithm);
59 }).then(failAndFinishJSTest, function(result) {
60 logError(result);
62 // SHA-1 isn't a valid wrapKey algorithm.
63 return crypto.subtle.wrapKey('raw', key, wrappingKey, {name: 'SHA-1'});
64 }).then(failAndFinishJSTest, function(result) {
65 logError(result);
67 // Wrap algorithm doesn't match the wrapping key's algorithm (AES-CBC key
68 // with AES-CTR wrap algorithm)
69 aesCtrAlgorithm = {name: 'AES-CTR', counter: new Uint8Array(16), length: 0};
70 return crypto.subtle.wrapKey('raw', key, wrappingKey, aesCtrAlgorithm);
71 }).then(failAndFinishJSTest, function(result) {
72 logError(result);
73 }).then(finishJSTest, failAndFinishJSTest);
75 </script>
77 </body>
78 </html>