UNPKG

fast-check

Version:

Property based testing framework for JavaScript (like QuickCheck)

24 lines (23 loc) 1.29 kB
import { buildPartialRecordArbitrary } from './_internals/builders/PartialRecordArbitraryBuilder.js'; /**@__NO_SIDE_EFFECTS__*/function record(recordModel, constraints) { const noNullPrototype = constraints !== undefined && !!constraints.noNullPrototype; if (constraints == null) { return buildPartialRecordArbitrary(recordModel, undefined, noNullPrototype); } const requireDeletedKeys = 'requiredKeys' in constraints && constraints.requiredKeys !== undefined; if (!requireDeletedKeys) { return buildPartialRecordArbitrary(recordModel, undefined, noNullPrototype); } const requiredKeys = ('requiredKeys' in constraints ? constraints.requiredKeys : undefined) || []; for (let idx = 0; idx !== requiredKeys.length; ++idx) { const descriptor = Object.getOwnPropertyDescriptor(recordModel, requiredKeys[idx]); if (descriptor === undefined) { throw new Error(`requiredKeys cannot reference keys that have not been defined in recordModel`); } if (!descriptor.enumerable) { throw new Error(`requiredKeys cannot reference keys that have are enumerable in recordModel`); } } return buildPartialRecordArbitrary(recordModel, requiredKeys, noNullPrototype); } export { record };