blob: fb6c62f8c605cb048e80c4661dcc5a91286ec0a6 [file] [log] [blame]
<!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 HMAC parameters.");
jsTestIsAsync = true;
extractable = true;
keyUsages = ['sign', 'verify'];
Promise.resolve(null).then(function() {
debug("\ngenerateKey() with a length of -3...");
return crypto.subtle.generateKey({name: 'hmac', hash: {name: 'sha-256'}, length: -3}, extractable , keyUsages);
}).then(failAndFinishJSTest, function(result) {
logError(result);
debug("\ngenerateKey() with hash name empty string...");
return crypto.subtle.generateKey({name: 'hmac', hash: {name: ''}, length: 48}, extractable , keyUsages);
}).then(failAndFinishJSTest, function(result) {
logError(result);
debug("\ngenerateKey() with a length of 5000000000 ...");
return crypto.subtle.generateKey({name: 'hmac', hash: {name: 'sha-256'}, length: 5000000000}, extractable , keyUsages);
}).then(failAndFinishJSTest, function(result) {
logError(result);
debug("\ngenerateKey() with length NaN...");
return crypto.subtle.generateKey({name: 'hmac', hash: {name: 'sha-256'}, length: NaN}, extractable , keyUsages);
}).then(failAndFinishJSTest, function(result) {
logError(result);
debug("\ngenerateKey() with length that is Infinity...");
return crypto.subtle.generateKey({name: 'hmac', hash: {name: 'sha-256'}, length: Infinity}, extractable , keyUsages);
}).then(failAndFinishJSTest, function(result) {
logError(result);
debug("\ngenerateKey() with length that is minus Infinity...");
return crypto.subtle.generateKey({name: 'hmac', hash: {name: 'sha-256'}, length: -Infinity}, extractable , keyUsages);
}).then(failAndFinishJSTest, function(result) {
logError(result);
debug("\ngenerateKey() with length that is a string...");
return crypto.subtle.generateKey({name: 'hmac', hash: {name: 'sha-256'}, length: crypto}, extractable , keyUsages);
}).then(failAndFinishJSTest, function(result) {
logError(result);
debug("\ngenerateKey() with length that is a undefined...");
return crypto.subtle.generateKey({name: 'hmac', hash: {name: 'sha-256'}, length: undefined}, extractable , keyUsages);
}).then(failAndFinishJSTest, function(result) {
logError(result);
}).then(finishJSTest, failAndFinishJSTest);
</script>
</body>
</html>