File size: 11,280 Bytes
96af7c9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 |
import { safeFilter, safeGetTime, safeIndexOf, safeJoin, safeMap, safePush, safeToISOString, safeToString, Map, String, Symbol as StableSymbol, } from './globals.js';
const safeArrayFrom = Array.from;
const safeBufferIsBuffer = typeof Buffer !== 'undefined' ? Buffer.isBuffer : undefined;
const safeJsonStringify = JSON.stringify;
const safeNumberIsNaN = Number.isNaN;
const safeObjectKeys = Object.keys;
const safeObjectGetOwnPropertySymbols = Object.getOwnPropertySymbols;
const safeObjectGetOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
const safeObjectGetPrototypeOf = Object.getPrototypeOf;
const safeNegativeInfinity = Number.NEGATIVE_INFINITY;
const safePositiveInfinity = Number.POSITIVE_INFINITY;
export const toStringMethod = Symbol.for('fast-check/toStringMethod');
export function hasToStringMethod(instance) {
return (instance !== null &&
(typeof instance === 'object' || typeof instance === 'function') &&
toStringMethod in instance &&
typeof instance[toStringMethod] === 'function');
}
export const asyncToStringMethod = Symbol.for('fast-check/asyncToStringMethod');
export function hasAsyncToStringMethod(instance) {
return (instance !== null &&
(typeof instance === 'object' || typeof instance === 'function') &&
asyncToStringMethod in instance &&
typeof instance[asyncToStringMethod] === 'function');
}
const findSymbolNameRegex = /^Symbol\((.*)\)$/;
function getSymbolDescription(s) {
if (s.description !== undefined)
return s.description;
const m = findSymbolNameRegex.exec(String(s));
return m && m[1].length ? m[1] : null;
}
function stringifyNumber(numValue) {
switch (numValue) {
case 0:
return 1 / numValue === safeNegativeInfinity ? '-0' : '0';
case safeNegativeInfinity:
return 'Number.NEGATIVE_INFINITY';
case safePositiveInfinity:
return 'Number.POSITIVE_INFINITY';
default:
return numValue === numValue ? String(numValue) : 'Number.NaN';
}
}
function isSparseArray(arr) {
let previousNumberedIndex = -1;
for (const index in arr) {
const numberedIndex = Number(index);
if (numberedIndex !== previousNumberedIndex + 1)
return true;
previousNumberedIndex = numberedIndex;
}
return previousNumberedIndex + 1 !== arr.length;
}
export function stringifyInternal(value, previousValues, getAsyncContent) {
const currentValues = [...previousValues, value];
if (typeof value === 'object') {
if (safeIndexOf(previousValues, value) !== -1) {
return '[cyclic]';
}
}
if (hasAsyncToStringMethod(value)) {
const content = getAsyncContent(value);
if (content.state === 'fulfilled') {
return content.value;
}
}
if (hasToStringMethod(value)) {
try {
return value[toStringMethod]();
}
catch (err) {
}
}
switch (safeToString(value)) {
case '[object Array]': {
const arr = value;
if (arr.length >= 50 && isSparseArray(arr)) {
const assignments = [];
for (const index in arr) {
if (!safeNumberIsNaN(Number(index)))
safePush(assignments, `${index}:${stringifyInternal(arr[index], currentValues, getAsyncContent)}`);
}
return assignments.length !== 0
? `Object.assign(Array(${arr.length}),{${safeJoin(assignments, ',')}})`
: `Array(${arr.length})`;
}
const stringifiedArray = safeJoin(safeMap(arr, (v) => stringifyInternal(v, currentValues, getAsyncContent)), ',');
return arr.length === 0 || arr.length - 1 in arr ? `[${stringifiedArray}]` : `[${stringifiedArray},]`;
}
case '[object BigInt]':
return `${value}n`;
case '[object Boolean]': {
const unboxedToString = value == true ? 'true' : 'false';
return typeof value === 'boolean' ? unboxedToString : `new Boolean(${unboxedToString})`;
}
case '[object Date]': {
const d = value;
return safeNumberIsNaN(safeGetTime(d)) ? `new Date(NaN)` : `new Date(${safeJsonStringify(safeToISOString(d))})`;
}
case '[object Map]':
return `new Map(${stringifyInternal(Array.from(value), currentValues, getAsyncContent)})`;
case '[object Null]':
return `null`;
case '[object Number]':
return typeof value === 'number' ? stringifyNumber(value) : `new Number(${stringifyNumber(Number(value))})`;
case '[object Object]': {
try {
const toStringAccessor = value.toString;
if (typeof toStringAccessor === 'function' && toStringAccessor !== Object.prototype.toString) {
return value.toString();
}
}
catch (err) {
return '[object Object]';
}
const mapper = (k) => `${k === '__proto__'
? '["__proto__"]'
: typeof k === 'symbol'
? `[${stringifyInternal(k, currentValues, getAsyncContent)}]`
: safeJsonStringify(k)}:${stringifyInternal(value[k], currentValues, getAsyncContent)}`;
const stringifiedProperties = [
...safeMap(safeObjectKeys(value), mapper),
...safeMap(safeFilter(safeObjectGetOwnPropertySymbols(value), (s) => {
const descriptor = safeObjectGetOwnPropertyDescriptor(value, s);
return descriptor && descriptor.enumerable;
}), mapper),
];
const rawRepr = '{' + safeJoin(stringifiedProperties, ',') + '}';
if (safeObjectGetPrototypeOf(value) === null) {
return rawRepr === '{}' ? 'Object.create(null)' : `Object.assign(Object.create(null),${rawRepr})`;
}
return rawRepr;
}
case '[object Set]':
return `new Set(${stringifyInternal(Array.from(value), currentValues, getAsyncContent)})`;
case '[object String]':
return typeof value === 'string' ? safeJsonStringify(value) : `new String(${safeJsonStringify(value)})`;
case '[object Symbol]': {
const s = value;
if (StableSymbol.keyFor(s) !== undefined) {
return `Symbol.for(${safeJsonStringify(StableSymbol.keyFor(s))})`;
}
const desc = getSymbolDescription(s);
if (desc === null) {
return 'Symbol()';
}
const knownSymbol = desc.startsWith('Symbol.') && StableSymbol[desc.substring(7)];
return s === knownSymbol ? desc : `Symbol(${safeJsonStringify(desc)})`;
}
case '[object Promise]': {
const promiseContent = getAsyncContent(value);
switch (promiseContent.state) {
case 'fulfilled':
return `Promise.resolve(${stringifyInternal(promiseContent.value, currentValues, getAsyncContent)})`;
case 'rejected':
return `Promise.reject(${stringifyInternal(promiseContent.value, currentValues, getAsyncContent)})`;
case 'pending':
return `new Promise(() => {/*pending*/})`;
case 'unknown':
default:
return `new Promise(() => {/*unknown*/})`;
}
}
case '[object Error]':
if (value instanceof Error) {
return `new Error(${stringifyInternal(value.message, currentValues, getAsyncContent)})`;
}
break;
case '[object Undefined]':
return `undefined`;
case '[object Int8Array]':
case '[object Uint8Array]':
case '[object Uint8ClampedArray]':
case '[object Int16Array]':
case '[object Uint16Array]':
case '[object Int32Array]':
case '[object Uint32Array]':
case '[object Float32Array]':
case '[object Float64Array]':
case '[object BigInt64Array]':
case '[object BigUint64Array]': {
if (typeof safeBufferIsBuffer === 'function' && safeBufferIsBuffer(value)) {
return `Buffer.from(${stringifyInternal(safeArrayFrom(value.values()), currentValues, getAsyncContent)})`;
}
const valuePrototype = safeObjectGetPrototypeOf(value);
const className = valuePrototype && valuePrototype.constructor && valuePrototype.constructor.name;
if (typeof className === 'string') {
const typedArray = value;
const valuesFromTypedArr = typedArray.values();
return `${className}.from(${stringifyInternal(safeArrayFrom(valuesFromTypedArr), currentValues, getAsyncContent)})`;
}
break;
}
}
try {
return value.toString();
}
catch (_a) {
return safeToString(value);
}
}
export function stringify(value) {
return stringifyInternal(value, [], () => ({ state: 'unknown', value: undefined }));
}
export function possiblyAsyncStringify(value) {
const stillPendingMarker = StableSymbol();
const pendingPromisesForCache = [];
const cache = new Map();
function createDelay0() {
let handleId = null;
const cancel = () => {
if (handleId !== null) {
clearTimeout(handleId);
}
};
const delay = new Promise((resolve) => {
handleId = setTimeout(() => {
handleId = null;
resolve(stillPendingMarker);
}, 0);
});
return { delay, cancel };
}
const unknownState = { state: 'unknown', value: undefined };
const getAsyncContent = function getAsyncContent(data) {
const cacheKey = data;
if (cache.has(cacheKey)) {
return cache.get(cacheKey);
}
const delay0 = createDelay0();
const p = asyncToStringMethod in data
? Promise.resolve().then(() => data[asyncToStringMethod]())
: data;
p.catch(() => { });
pendingPromisesForCache.push(Promise.race([p, delay0.delay]).then((successValue) => {
if (successValue === stillPendingMarker)
cache.set(cacheKey, { state: 'pending', value: undefined });
else
cache.set(cacheKey, { state: 'fulfilled', value: successValue });
delay0.cancel();
}, (errorValue) => {
cache.set(cacheKey, { state: 'rejected', value: errorValue });
delay0.cancel();
}));
cache.set(cacheKey, unknownState);
return unknownState;
};
function loop() {
const stringifiedValue = stringifyInternal(value, [], getAsyncContent);
if (pendingPromisesForCache.length === 0) {
return stringifiedValue;
}
return Promise.all(pendingPromisesForCache.splice(0)).then(loop);
}
return loop();
}
export async function asyncStringify(value) {
return Promise.resolve(possiblyAsyncStringify(value));
}
|