summaryrefslogtreecommitdiffstats
path: root/remote/test/puppeteer/tools/download_chrome_bidi.mjs
blob: faa73d9a9598e2c076f85b23e82415dd7acbbf85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/**
 * @license
 * Copyright 2023 Google Inc.
 * SPDX-License-Identifier: Apache-2.0
 */

/* eslint-disable no-console */

/**
 * @fileoverview Installs a browser defined in `.browser` for Chromium-BiDi using
 * `@puppeteer/browsers` to the directory provided as the first argument
 * (default: cwd). The executable path is written to the `executablePath` output
 * param for GitHub actions.
 *
 * Examples:
 *
 * - `node install-browser.mjs`
 * - `node install-browser.mjs /tmp/cache`
 */
import {readFile} from 'node:fs/promises';
import {createRequire} from 'node:module';

import actions from '@actions/core';

import {computeExecutablePath, install} from '@puppeteer/browsers';

const require = createRequire(import.meta.url);

try {
  const browserSpec = await readFile(
    require.resolve('chromium-bidi/.browser', {
      paths: [require.resolve('puppeteer-core')],
    }),
    'utf-8'
  );
  const cacheDir = process.argv[2] || process.cwd();
  // See .browser for the format.
  const browser = browserSpec.split('@')[0];
  const buildId = browserSpec.split('@')[1];
  await install({
    browser,
    buildId,
    cacheDir,
  });
  const executablePath = computeExecutablePath({
    cacheDir,
    browser,
    buildId,
  });
  if (process.argv.indexOf('--shell') === -1) {
    actions.setOutput('executablePath', executablePath);
  }
  console.log(executablePath);
} catch (err) {
  actions.setFailed(`Failed to download the browser: ${err.message}`);
}