Skip to content

Commit d2c6cc0

Browse files
jpumfordJustin Pumford
and
Justin Pumford
authoredAug 25, 2020
fix: return back checkMD5 config option which false by default (#342)
* pass through checkmd5 option * make md5 logs a little nicer Co-authored-by: Justin Pumford <justinpumford@workfront.com>
1 parent fbc11fe commit d2c6cc0

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed
 

‎packages/mongodb-memory-server-core/src/util/MongoBinary.ts

+5-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { execSync } from 'child_process';
88
import dedent from 'dedent';
99
import { promisify } from 'util';
1010
import MongoBinaryDownload from './MongoBinaryDownload';
11-
import resolveConfig from './resolve-config';
11+
import resolveConfig, { envToBool } from './resolve-config';
1212
import debug from 'debug';
1313

1414
const log = debug('MongoMS:MongoBinary');
@@ -27,6 +27,7 @@ export interface MongoBinaryOpts {
2727
downloadDir?: string;
2828
platform?: string;
2929
arch?: string;
30+
checkMD5?: boolean;
3031
}
3132

3233
export default class MongoBinary {
@@ -52,7 +53,7 @@ export default class MongoBinary {
5253
}
5354

5455
static async getDownloadPath(options: Required<MongoBinaryOpts>): Promise<string> {
55-
const { downloadDir, platform, arch, version } = options;
56+
const { downloadDir, platform, arch, version, checkMD5 } = options;
5657
// create downloadDir if not exists
5758
await mkdirp(downloadDir);
5859

@@ -82,6 +83,7 @@ export default class MongoBinary {
8283
platform,
8384
arch,
8485
version,
86+
checkMD5,
8587
});
8688
this.cache[version] = await downloader.getMongodPath();
8789
}
@@ -121,6 +123,7 @@ export default class MongoBinary {
121123
arch: resolveConfig('ARCH') || os.arch(),
122124
version: resolveConfig('VERSION') || LATEST_VERSION,
123125
systemBinary: resolveConfig('SYSTEM_BINARY'),
126+
checkMD5: envToBool(resolveConfig('MD5_CHECK') ?? ''),
124127
};
125128

126129
const options = { ...defaultOptions, ...opts };

‎packages/mongodb-memory-server-core/src/util/MongoBinaryDownload.ts

+2
Original file line numberDiff line numberDiff line change
@@ -120,11 +120,13 @@ export default class MongoBinaryDownload {
120120
if (!this.checkMD5) {
121121
return undefined;
122122
}
123+
log('Checking MD5 of downloaded binary...');
123124
const mongoDBArchiveMd5 = await this.download(urlForReferenceMD5);
124125
const signatureContent = fs.readFileSync(mongoDBArchiveMd5).toString('utf-8');
125126
const m = signatureContent.match(/(.*?)\s/);
126127
const md5Remote = m ? m[1] : null;
127128
const md5Local = md5File.sync(mongoDBArchive);
129+
log(`Local MD5: ${md5Local}, Remote MD5: ${md5Remote}`);
128130
if (md5Remote !== md5Local) {
129131
throw new Error('MongoBinaryDownload: md5 check failed');
130132
}

‎packages/mongodb-memory-server-core/src/util/__tests__/MongoBinary-test.ts

+1
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ describe('MongoBinary', () => {
5858
platform: os.platform(),
5959
arch: os.arch(),
6060
version,
61+
checkMD5: false,
6162
});
6263

6364
expect(mockGetMongodPath).toHaveBeenCalledTimes(1);

0 commit comments

Comments
 (0)
Please sign in to comment.