Skip to content

Commit d4c9edb

Browse files
authoredJul 28, 2020
fix(MongoBinaryDownload): add debug log for url (#327)
fix(MongoBinaryDownload): put "stdout.write" in an "isTTY" and otherwise use "console.log"
1 parent 3d25eef commit d4c9edb

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed
 

‎packages/mongodb-memory-server-core/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
"mongodb": "^3.5.9"
8181
},
8282
"scripts": {
83-
"cleanup": "rimraf tmp lib coverage node_modules/.cache",
83+
"clean": "rimraf tmp lib coverage node_modules/.cache",
8484
"build": "npm-run-all build:*",
8585
"build:ts": "rimraf ./lib && tsc -p ./tsconfig.build.json",
8686
"watch": "cross-env MONGOMS_DOWNLOAD_DIR=./tmp jest --watchAll",

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

+8-3
Original file line numberDiff line numberDiff line change
@@ -315,6 +315,7 @@ export default class MongoBinaryDownload {
315315
return new Promise((resolve, reject) => {
316316
const fileStream = fs.createWriteStream(tempDownloadLocation);
317317

318+
log(`trying to download https://${httpOptions.hostname}${httpOptions.path}`);
318319
https
319320
.get(httpOptions as any, (response) => {
320321
// "as any" because otherwise the "agent" wouldnt match
@@ -391,9 +392,13 @@ export default class MongoBinaryDownload {
391392
const mbComplete = Math.round((this.dlProgress.current / 1048576) * 10) / 10;
392393

393394
const crReturn = this.platform === 'win32' ? '\x1b[0G' : '\r';
394-
process.stdout.write(
395-
`Downloading MongoDB ${this.version}: ${percentComplete} % (${mbComplete}mb / ${this.dlProgress.totalMb}mb)${crReturn}`
396-
);
395+
const message = `Downloading MongoDB ${this.version}: ${percentComplete} % (${mbComplete}mb / ${this.dlProgress.totalMb}mb)${crReturn}`;
396+
if (process.stdout.isTTY) {
397+
// if TTY overwrite last line over and over until finished
398+
process.stdout.write(message);
399+
} else {
400+
console.log(message);
401+
}
397402
}
398403

399404
/**

0 commit comments

Comments
 (0)
Please sign in to comment.