Skip to content

Instantly share code, notes, and snippets.

@sibelius
Created September 7, 2016 21:31
Show Gist options
  • Save sibelius/42f537890bd616e64116051f5cfc9b1f to your computer and use it in GitHub Desktop.
Save sibelius/42f537890bd616e64116051f5cfc9b1f to your computer and use it in GitHub Desktop.
prepareMongooseObject to use with jest snapshot
export function prepareMongooseObject(obj) {
const placeholder = {};
let counter = 0;
const objectIdToNumber = {};
// TODO - find a better way to extract objects id
Object.keys(obj.toJSON()).map((key) => {
const value = obj[key];
// Handle objectID
if (value != 0 && ObjectId.isValid(""+value)) {
if (value in objectIdToNumber) {
} else {
objectIdToNumber[value] = counter;
counter++;
}
const internalId = objectIdToNumber[value];
placeholder[key] = `OBJECTID_${internalId}`;
return;
}
// Handle Date
if (typeof value !== 'number' && isValidDate(value)) {
placeholder[key] = 'FAKE-DA-TET00:00:00.000Z';
return;
}
// Handle array
if (Array.isArray(value)) {
placeholder[key] = value.map((item) => prepareMongooseObject(item));
return;
}
placeholder[key] = value;
});
return placeholder;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment