Skip to content

Instantly share code, notes, and snippets.

@sibelius
Created December 8, 2021 22:12
Show Gist options
  • Save sibelius/2656cca0f20bf0bf4f57ca94b7f09fe7 to your computer and use it in GitHub Desktop.
Save sibelius/2656cca0f20bf0bf4f57ca94b7f09fe7 to your computer and use it in GitHub Desktop.
crypto module mock
const crypto = jest.requireActual('crypto');
const Chance = require('chance');
const chances = {};
const mockCrypto = Object.create(crypto);
mockCrypto.randomBytes = (size, seed = 42, callback) => {
if (typeof seed === 'function') {
// eslint-disable-next-line no-param-reassign
callback = seed;
// eslint-disable-next-line no-param-reassign
seed = 42;
}
chances[seed] = chances[seed] || new Chance(seed);
const chance = chances[seed];
const randomByteArray = chance.n(chance.natural, size, { max: 255 });
const buffer = Buffer.from(randomByteArray);
if (typeof callback === 'function') {
callback(null, buffer);
}
return buffer;
};
module.exports = mockCrypto;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment