Created
December 8, 2021 22:12
-
-
Save sibelius/2656cca0f20bf0bf4f57ca94b7f09fe7 to your computer and use it in GitHub Desktop.
crypto module mock
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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