mirror of
https://github.com/denoland/deno.git
synced 2024-12-18 13:22:55 -05:00
fb24fd37c9
This PR enables node compat test cases found passing by using the tool added in #27122 The percentage of passing test case increases from 16.16% to 30.43% by this change.
50 lines
1.3 KiB
JavaScript
50 lines
1.3 KiB
JavaScript
// deno-fmt-ignore-file
|
|
// deno-lint-ignore-file
|
|
|
|
// Copyright Joyent and Node contributors. All rights reserved. MIT license.
|
|
// Taken from Node 20.11.1
|
|
// This file is automatically generated by `tests/node_compat/runner/setup.ts`. Do not modify this file manually.
|
|
|
|
'use strict';
|
|
|
|
const common = require('../common');
|
|
if (!common.hasCrypto)
|
|
common.skip('missing crypto');
|
|
|
|
const assert = require('assert');
|
|
const {
|
|
generateKeyPair,
|
|
generateKeyPairSync,
|
|
getCurves,
|
|
} = require('crypto');
|
|
|
|
// This test creates EC key pairs on curves without associated OIDs.
|
|
// Specifying a key encoding should not crash.
|
|
{
|
|
if (process.versions.openssl >= '1.1.1i') {
|
|
for (const namedCurve of ['Oakley-EC2N-3', 'Oakley-EC2N-4']) {
|
|
if (!getCurves().includes(namedCurve))
|
|
continue;
|
|
|
|
const expectedErrorCode =
|
|
common.hasOpenSSL3 ? 'ERR_OSSL_MISSING_OID' : 'ERR_OSSL_EC_MISSING_OID';
|
|
const params = {
|
|
namedCurve,
|
|
publicKeyEncoding: {
|
|
format: 'der',
|
|
type: 'spki'
|
|
}
|
|
};
|
|
|
|
assert.throws(() => {
|
|
generateKeyPairSync('ec', params);
|
|
}, {
|
|
code: expectedErrorCode
|
|
});
|
|
|
|
generateKeyPair('ec', params, common.mustCall((err) => {
|
|
assert.strictEqual(err.code, expectedErrorCode);
|
|
}));
|
|
}
|
|
}
|
|
}
|