chromium/third_party/blink/web_tests/crypto/subtle/exportKey-badParameters.html

<!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>