Created
September 7, 2016 21:31
-
-
Save sibelius/42f537890bd616e64116051f5cfc9b1f to your computer and use it in GitHub Desktop.
prepareMongooseObject to use with jest snapshot
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
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