Skip to content

Commit 31ac64c

Browse files
as-ajitsinghnodkz
authored andcommittedSep 21, 2020
feat: skip binary download when binary tar exists
1 parent 3a9083b commit 31ac64c

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed
 

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

+10-1
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ export default class MongoBinaryDownload {
6868
async getMongodPath(): Promise<string> {
6969
const binaryName = this.platform === 'win32' ? 'mongod.exe' : 'mongod';
7070
const mongodPath = path.resolve(this.downloadDir, this.version, binaryName);
71+
7172
if (await this.locationExists(mongodPath)) {
7273
return mongodPath;
7374
}
@@ -99,7 +100,7 @@ export default class MongoBinaryDownload {
99100
}
100101

101102
const downloadUrl = await mbdUrl.getDownloadUrl();
102-
this._downloadingUrl = downloadUrl;
103+
103104
const mongoDBArchive = await this.download(downloadUrl);
104105

105106
await this.makeMD5check(`${downloadUrl}.md5`, mongoDBArchive);
@@ -172,6 +173,14 @@ export default class MongoBinaryDownload {
172173
const downloadLocation = path.resolve(this.downloadDir, filename);
173174
const tempDownloadLocation = path.resolve(this.downloadDir, `${filename}.downloading`);
174175
log(`Downloading${proxy ? ` via proxy ${proxy}` : ''}: "${downloadUrl}"`);
176+
177+
if (await this.locationExists(downloadLocation)) {
178+
log('Already downloaded archive found, skipping download');
179+
return downloadLocation;
180+
}
181+
182+
this._downloadingUrl = downloadUrl;
183+
175184
const downloadedFile = await this.httpDownload(
176185
downloadOptions,
177186
downloadLocation,

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

+14
Original file line numberDiff line numberDiff line change
@@ -32,19 +32,31 @@ MONGOMS_MD5_CHECK environment variable`, () => {
3232

3333
const du = new MongoBinaryDownload({});
3434
du.httpDownload = jest.fn();
35+
du.locationExists = jest.fn().mockReturnValue(false);
3536

3637
await du.download('https://fastdl.mongodb.org/osx/mongodb-osx-ssl-x86_64-3.6.3.tgz');
3738
expect(du.httpDownload).toHaveBeenCalledTimes(1);
3839
const callArg1 = (du.httpDownload as jest.Mock).mock.calls[0][0];
3940
expect(callArg1.agent).toBeUndefined();
4041
});
4142

43+
it('should skip download if binary tar exists', async () => {
44+
const du = new MongoBinaryDownload({});
45+
du.httpDownload = jest.fn();
46+
du.locationExists = jest.fn().mockReturnValue(true);
47+
48+
await du.download('https://fastdl.mongodb.org/osx/mongodb-osx-ssl-x86_64-3.6.3.tgz');
49+
50+
expect(du.httpDownload).not.toHaveBeenCalled();
51+
});
52+
4253
it('should pick up proxy from env vars', async () => {
4354
process.env['yarn_https-proxy'] = 'http://user:pass@proxy:8080';
4455

4556
const du = new MongoBinaryDownload({});
4657
// $FlowFixMe
4758
du.httpDownload = jest.fn();
59+
du.locationExists = jest.fn().mockReturnValue(false);
4860

4961
await du.download('https://fastdl.mongodb.org/osx/mongodb-osx-ssl-x86_64-3.6.3.tgz');
5062
expect(du.httpDownload).toHaveBeenCalledTimes(1);
@@ -59,6 +71,7 @@ MONGOMS_MD5_CHECK environment variable`, () => {
5971

6072
const du = new MongoBinaryDownload({});
6173
du.httpDownload = jest.fn();
74+
du.locationExists = jest.fn().mockReturnValue(false);
6275

6376
await du.download('https://fastdl.mongodb.org/osx/mongodb-osx-ssl-x86_64-3.6.3.tgz');
6477
expect(du.httpDownload).toHaveBeenCalledTimes(1);
@@ -73,6 +86,7 @@ MONGOMS_MD5_CHECK environment variable`, () => {
7386

7487
const du = new MongoBinaryDownload({});
7588
du.httpDownload = jest.fn();
89+
du.locationExists = jest.fn().mockReturnValue(false);
7690

7791
await du.download('https://fastdl.mongodb.org/osx/mongodb-osx-ssl-x86_64-3.6.3.tgz');
7892
expect(du.httpDownload).toHaveBeenCalledTimes(1);

0 commit comments

Comments
 (0)
Please sign in to comment.