2019-11-19 05:18:28 +03:00
|
|
|
/**
|
2020-01-21 23:22:17 +03:00
|
|
|
* Copyright (c) Microsoft Corporation.
|
2019-11-19 05:18:28 +03:00
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
2020-01-21 23:22:17 +03:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2019-11-19 05:18:28 +03:00
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
2020-03-19 21:43:35 +03:00
|
|
|
const fs = require('fs');
|
|
|
|
const browserFetcher = require('./lib/server/browserFetcher.js');
|
|
|
|
const packageJSON = require('./package.json');
|
2019-11-19 05:18:28 +03:00
|
|
|
|
2020-03-19 21:43:35 +03:00
|
|
|
async function downloadBrowserWithProgressBar(downloadPath, browser, version = '') {
|
2019-11-19 05:18:28 +03:00
|
|
|
let progressBar = null;
|
|
|
|
let lastDownloadedBytes = 0;
|
2020-03-19 21:43:35 +03:00
|
|
|
const revision = packageJSON.playwright[`${browser}_revision`];
|
|
|
|
function progress(downloadedBytes, totalBytes) {
|
2019-11-19 05:18:28 +03:00
|
|
|
if (!progressBar) {
|
|
|
|
const ProgressBar = require('progress');
|
2020-03-19 21:43:35 +03:00
|
|
|
progressBar = new ProgressBar(`Downloading ${browser} r${revision} - ${toMegabytes(totalBytes)} [:bar] :percent :etas `, {
|
2019-11-19 05:18:28 +03:00
|
|
|
complete: '=',
|
|
|
|
incomplete: ' ',
|
|
|
|
width: 20,
|
|
|
|
total: totalBytes,
|
2020-03-19 21:43:35 +03:00
|
|
|
host: getFromENV('PLAYWRIGHT_DOWNLOAD_HOST'),
|
2019-11-19 05:18:28 +03:00
|
|
|
});
|
|
|
|
}
|
|
|
|
const delta = downloadedBytes - lastDownloadedBytes;
|
|
|
|
lastDownloadedBytes = downloadedBytes;
|
|
|
|
progressBar.tick(delta);
|
|
|
|
}
|
2020-03-19 21:43:35 +03:00
|
|
|
const executablePath = await browserFetcher.downloadBrowser({
|
|
|
|
downloadPath,
|
|
|
|
browser,
|
|
|
|
revision,
|
|
|
|
progress,
|
|
|
|
});
|
|
|
|
logPolitely(`${browser} downloaded to ${downloadPath}`);
|
|
|
|
return executablePath;
|
2019-11-19 05:18:28 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
function toMegabytes(bytes) {
|
|
|
|
const mb = bytes / 1024 / 1024;
|
|
|
|
return `${Math.round(mb * 10) / 10} Mb`;
|
|
|
|
}
|
|
|
|
|
|
|
|
function logPolitely(toBeLogged) {
|
|
|
|
const logLevel = process.env.npm_config_loglevel;
|
|
|
|
const logLevelDisplay = ['silent', 'error', 'warn'].indexOf(logLevel) > -1;
|
|
|
|
|
|
|
|
if (!logLevelDisplay)
|
|
|
|
console.log(toBeLogged);
|
|
|
|
}
|
|
|
|
|
2020-03-19 21:43:35 +03:00
|
|
|
function getFromENV(name) {
|
|
|
|
let value = process.env[name];
|
|
|
|
value = value || process.env[`npm_config_${name.toLowerCase()}`];
|
|
|
|
value = value || process.env[`npm_package_config_${name.toLowerCase()}`];
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = {downloadBrowserWithProgressBar};
|