Skip to content

Commit

Permalink
fix(firefox): do not run firefox as a part of the installation process (
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelfeldman committed May 6, 2020
1 parent 10cca04 commit 793a2bf
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 44 deletions.
17 changes: 1 addition & 16 deletions src/install/installer.ts
Expand Up @@ -22,7 +22,6 @@ import * as util from 'util';
import * as removeFolder from 'rimraf';
import * as browserPaths from '../install/browserPaths';
import * as browserFetcher from '../install/browserFetcher';
import { Playwright } from '../server/playwright';

const fsMkdirAsync = util.promisify(fs.mkdir.bind(fs));
const fsReaddirAsync = util.promisify(fs.readdir.bind(fs));
Expand Down Expand Up @@ -74,24 +73,10 @@ async function validateCache(packagePath: string, browsersPath: string, linksDir
const myBrowsers = JSON.parse((await fsReadFileAsync(path.join(packagePath, 'browsers.json'))).toString())['browsers'];
for (const browser of myBrowsers) {
const browserPath = browserPaths.browserDirectory(browsersPath, browser);
if (await browserFetcher.downloadBrowserWithProgressBar(browserPath, browser))
await installBrowser(packagePath, browserPath, browser);
await browserFetcher.downloadBrowserWithProgressBar(browserPath, browser);
}
}

async function installBrowser(packagePath: string, browserPath: string, browser: browserPaths.BrowserDescriptor) {
if (browser.name !== 'firefox')
return;
const firefox = new Playwright(packagePath, [browser]).firefox!;
const userDataDir = path.join(browserPath, 'cached-profile');
await fsMkdirAsync(userDataDir, { recursive: true });
logPolitely('Pre-compiling Firefox scripts at ' + userDataDir);
const browserContext = await firefox.launchPersistentContext(userDataDir);
const page = await browserContext.newPage();
await page.goto('data:text/html,<html>Hello world</html>');
await browserContext.close();
}

function sha1(data: string): string {
const sum = crypto.createHash('sha1');
sum.update(data);
Expand Down
5 changes: 2 additions & 3 deletions src/server/browserType.ts
Expand Up @@ -54,14 +54,13 @@ export interface BrowserType<Browser> {

export abstract class AbstractBrowserType<Browser> implements BrowserType<Browser> {
private _name: string;
readonly _browserPath: string;
private _executablePath: string | undefined;

constructor(packagePath: string, browser: browserPaths.BrowserDescriptor) {
this._name = browser.name;
const browsersPath = browserPaths.browsersPath(packagePath);
this._browserPath = browserPaths.browserDirectory(browsersPath, browser);
this._executablePath = browserPaths.executablePath(this._browserPath, browser);
const browserPath = browserPaths.browserDirectory(browsersPath, browser);
this._executablePath = browserPaths.executablePath(browserPath, browser);
}

executablePath(): string {
Expand Down
26 changes: 1 addition & 25 deletions src/server/firefox.ts
Expand Up @@ -91,7 +91,7 @@ export class Firefox extends AbstractBrowserType<FFBrowser> {

let temporaryProfileDir = null;
if (!userDataDir) {
userDataDir = await this._createTemporaryProfile();
userDataDir = await mkdtempAsync(path.join(os.tmpdir(), 'playwright_dev_firefox_profile-'));
temporaryProfileDir = userDataDir;
}

Expand Down Expand Up @@ -189,15 +189,6 @@ export class Firefox extends AbstractBrowserType<FFBrowser> {

return firefoxArguments;
}

async _createTemporaryProfile(): Promise<string> {
const userDataDir = await mkdtempAsync(path.join(os.tmpdir(), 'playwright_dev_firefox_profile-'));
const cachedProfileDir = path.join(this._browserPath, 'cached-profile');
const files = fs.readdirSync(cachedProfileDir);
for (const file of files)
copyRecursiveSync(path.join(cachedProfileDir, file), userDataDir);
return userDataDir;
}
}

function wrapTransportWithWebSocket(transport: ConnectionTransport, logger: InnerLogger, port: number): WebSocketWrapper {
Expand Down Expand Up @@ -328,18 +319,3 @@ function wrapTransportWithWebSocket(transport: ConnectionTransport, logger: Inne
return new WebSocketWrapper(wsEndpoint,
[pendingBrowserContextCreations, pendingBrowserContextDeletions, browserContextIds, sessionToSocket, sockets]);
}

function copyRecursiveSync(source: string, targetFolder: string) {
const target = path.join(targetFolder, path.basename(source));
const stat = fs.lstatSync(source);
if (stat.isFile()) {
fs.copyFileSync(source, target);
return;
}
if (stat.isDirectory()) {
fs.mkdirSync(target, { recursive: true });
const files = fs.readdirSync(source);
for (const file of files)
copyRecursiveSync(path.join(source, file), target);
}
}

0 comments on commit 793a2bf

Please sign in to comment.