blob: 706f7b2f6937f1599da5807d92f661a1ea5c2c7e [file] [log] [blame]
Jack Franklin0155f7d2021-03-02 09:11:22 +00001// Copyright 2021 The Chromium Authors. All rights reserved.
Jack Franklin1557a1c2020-06-08 15:22:13 +01002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5const fs = require('fs');
6const http = require('http');
7const path = require('path');
8const parseURL = require('url').parse;
9const {argv} = require('yargs');
Tim van der Lippe23283e12021-05-10 15:08:31 +010010
11const {createInstrumenter} = require('istanbul-lib-instrument');
12const convertSourceMap = require('convert-source-map');
13const defaultIstanbulSchema = require('@istanbuljs/schema');
14
Jack Franklina3dd06a2021-03-18 10:47:16 +000015const {getTestRunnerConfigSetting} = require('../test/test_config_helpers.js');
Jack Franklin1557a1c2020-06-08 15:22:13 +010016
Jack Franklinfe65bc62021-03-16 11:23:20 +000017const serverPort = parseInt(process.env.PORT, 10) || 8090;
Jack Franklin8742dc82021-02-26 09:17:59 +000018const target = argv.target || process.env.TARGET || 'Default';
19
20/**
21 * This configures the base of the URLs that are injected into each component
22 * doc example to load. By default it's /, so that we load /front_end/..., but
23 * this can be configured if you have a different file structure.
24 */
Jack Franklinfe65bc62021-03-16 11:23:20 +000025const sharedResourcesBase =
26 argv.sharedResourcesBase || getTestRunnerConfigSetting('component-server-shared-resources-path', '/');
Jack Franklin086ccd52020-11-27 11:00:14 +000027
28/**
Jack Franklin0155f7d2021-03-02 09:11:22 +000029 * The server assumes that examples live in
Tim van der Lippee622f552021-04-14 15:15:18 +010030 * devtoolsRoot/out/Target/gen/front_end/ui/components/docs, but if you need to add a
Jack Franklin0155f7d2021-03-02 09:11:22 +000031 * prefix you can pass this argument. Passing `foo` will redirect the server to
Tim van der Lippee622f552021-04-14 15:15:18 +010032 * look in devtoolsRoot/out/Target/gen/foo/front_end/ui/components/docs.
Jack Franklin0155f7d2021-03-02 09:11:22 +000033 */
Jack Franklinfe65bc62021-03-16 11:23:20 +000034const componentDocsBaseArg = argv.componentDocsBase || process.env.COMPONENT_DOCS_BASE ||
35 getTestRunnerConfigSetting('component-server-base-path', '');
Jack Franklin0155f7d2021-03-02 09:11:22 +000036
37/**
Jack Franklin086ccd52020-11-27 11:00:14 +000038 * When you run npm run components-server we run the script as is from scripts/,
39 * but when this server is run as part of a test suite it's run from
40 * out/Default/gen/scripts, so we have to do a bit of path mangling to figure
41 * out where we are.
42 */
Jack Franklin8742dc82021-02-26 09:17:59 +000043const isRunningInGen = __dirname.includes(path.join('out', path.sep, target));
Jack Franklinb36ad7e2020-12-07 10:20:52 +000044
Jack Franklin8742dc82021-02-26 09:17:59 +000045let pathToOutTargetDir = __dirname;
46/**
47 * If we are in the gen directory, we need to find the out/Default folder to use
48 * as our base to find files from. We could do this with path.join(x, '..',
49 * '..') until we get the right folder, but that's brittle. It's better to
50 * search up for out/Default to be robust to any folder structures.
51 */
52while (isRunningInGen && !pathToOutTargetDir.endsWith(`out${path.sep}${target}`)) {
53 pathToOutTargetDir = path.resolve(pathToOutTargetDir, '..');
54}
Jack Franklin0943df42021-02-26 11:12:13 +000055
56/* If we are not running in out/Default, we'll assume the script is running from the repo root, and navigate to {CWD}/out/Target */
Jack Franklin8742dc82021-02-26 09:17:59 +000057const pathToBuiltOutTargetDirectory =
Jack Franklin0943df42021-02-26 11:12:13 +000058 isRunningInGen ? pathToOutTargetDir : path.resolve(path.join(process.cwd(), 'out', target));
Jack Franklin8742dc82021-02-26 09:17:59 +000059
Jack Franklin90b66132021-01-05 11:33:43 +000060const devtoolsRootFolder = path.resolve(path.join(pathToBuiltOutTargetDirectory, 'gen'));
Jack Franklin0155f7d2021-03-02 09:11:22 +000061const componentDocsBaseFolder = path.join(devtoolsRootFolder, componentDocsBaseArg);
Jack Franklin1557a1c2020-06-08 15:22:13 +010062
Jack Franklin90b66132021-01-05 11:33:43 +000063if (!fs.existsSync(devtoolsRootFolder)) {
64 console.error(`ERROR: Generated front_end folder (${devtoolsRootFolder}) does not exist.`);
Jack Franklin1557a1c2020-06-08 15:22:13 +010065 console.log(
66 'The components server works from the built Ninja output; you may need to run Ninja to update your built DevTools.');
67 console.log('If you build to a target other than default, you need to pass --target=X as an argument');
68 process.exit(1);
69}
70
Jack Franklin086ccd52020-11-27 11:00:14 +000071const server = http.createServer(requestHandler);
72server.listen(serverPort);
73server.once('listening', () => {
74 if (process.send) {
75 process.send(serverPort);
76 }
77 console.log(`Started components server at http://localhost:${serverPort}\n`);
Tim van der Lippee622f552021-04-14 15:15:18 +010078 console.log(`ui/components/docs location: ${
79 path.relative(process.cwd(), path.join(componentDocsBaseFolder, 'front_end', 'ui', 'components', 'docs'))}`);
Jack Franklin086ccd52020-11-27 11:00:14 +000080});
81
82server.once('error', error => {
83 if (process.send) {
84 process.send('ERROR');
85 }
86 throw error;
87});
Jack Franklin1557a1c2020-06-08 15:22:13 +010088
89function createComponentIndexFile(componentPath, componentExamples) {
Tim van der Lippee622f552021-04-14 15:15:18 +010090 const componentName = componentPath.replace('/front_end/ui/components/docs/', '').replace(/_/g, ' ').replace('/', '');
Jack Franklin1557a1c2020-06-08 15:22:13 +010091 // clang-format off
92 return `<!DOCTYPE html>
93 <html>
94 <head>
95 <meta charset="UTF-8" />
96 <meta name="viewport" content="width=device-width" />
97 <title>DevTools component: ${componentName}</title>
98 <style>
99 h1 { text-transform: capitalize; }
100
101 .example {
102 padding: 5px;
103 margin: 10px;
104 }
Jack Franklin7a75e462021-01-08 16:17:13 +0000105
106 a:link,
107 a:visited {
108 color: blue;
109 text-decoration: underline;
110 }
111
112 a:hover {
113 text-decoration: none;
114 }
115 .example summary {
116 font-size: 20px;
117 }
118
119 .back-link {
120 padding-left: 5px;
121 font-size: 16px;
122 font-style: italic;
123 }
124
125 iframe { display: block; width: 100%; height: 400px; }
Jack Franklin1557a1c2020-06-08 15:22:13 +0100126 </style>
127 </head>
128 <body>
Jack Franklin7a75e462021-01-08 16:17:13 +0000129 <h1>
130 ${componentName}
131 <a class="back-link" href="/">Back to index</a>
132 </h1>
Jack Franklin1557a1c2020-06-08 15:22:13 +0100133 ${componentExamples.map(example => {
Jack Franklin90b66132021-01-05 11:33:43 +0000134 const fullPath = path.join(componentPath, example);
Jack Franklin7a75e462021-01-08 16:17:13 +0000135 return `<details class="example">
136 <summary><a href="${fullPath}">${example.replace('.html', '').replace(/-|_/g, ' ')}</a></summary>
Jack Franklin1557a1c2020-06-08 15:22:13 +0100137 <iframe src="${fullPath}"></iframe>
Jack Franklin7a75e462021-01-08 16:17:13 +0000138 </details>`;
Jack Franklin1557a1c2020-06-08 15:22:13 +0100139 }).join('\n')}
140 </body>
141 </html>`;
142 // clang-format on
143}
144
145function createServerIndexFile(componentNames) {
146 // clang-format off
147 return `<!DOCTYPE html>
148 <html>
149 <head>
150 <meta charset="UTF-8" />
151 <meta name="viewport" content="width=device-width" />
152 <title>DevTools components</title>
153 <style>
Jack Franklinb5997162020-11-25 17:28:51 +0000154 a:link, a:visited {
155 color: blue;
156 text-transform: capitalize;
157 text-decoration: none;
158 }
159 a:hover {
160 text-decoration: underline;
161 }
Jack Franklin1557a1c2020-06-08 15:22:13 +0100162 </style>
163 </head>
164 <body>
165 <h1>DevTools components</h1>
166 <ul>
167 ${componentNames.map(name => {
Jack Franklinb5997162020-11-25 17:28:51 +0000168 const niceName = name.replace(/_/g, ' ');
Tim van der Lippee622f552021-04-14 15:15:18 +0100169 return `<li><a href='/front_end/ui/components/docs/${name}'>${niceName}</a></li>`;
Jack Franklin1557a1c2020-06-08 15:22:13 +0100170 }).join('\n')}
171 </ul>
172 </body>
173 </html>`;
174 // clang-format on
175}
176
177async function getExamplesForPath(filePath) {
Jack Franklin0155f7d2021-03-02 09:11:22 +0000178 const componentDirectory = path.join(componentDocsBaseFolder, filePath);
Jack Franklinc1501222020-10-02 09:42:08 +0100179 const allFiles = await fs.promises.readdir(componentDirectory);
180 const htmlExampleFiles = allFiles.filter(file => {
181 return path.extname(file) === '.html';
182 });
Jack Franklin1557a1c2020-06-08 15:22:13 +0100183
Jack Franklinc1501222020-10-02 09:42:08 +0100184 return createComponentIndexFile(filePath, htmlExampleFiles);
Jack Franklin1557a1c2020-06-08 15:22:13 +0100185}
186
187function respondWithHtml(response, html) {
188 response.setHeader('Content-Type', 'text/html; charset=utf-8');
189 response.writeHead(200);
190 response.write(html, 'utf8');
191 response.end();
192}
193
194function send404(response, message) {
195 response.writeHead(404);
196 response.write(message, 'utf8');
197 response.end();
198}
199
Jack Franklin279564e2020-07-06 15:25:18 +0100200async function checkFileExists(filePath) {
201 try {
202 const errorsAccessingFile = await fs.promises.access(filePath, fs.constants.R_OK);
203 return !errorsAccessingFile;
204 } catch (e) {
205 return false;
206 }
207}
208
Tim van der Lippe23283e12021-05-10 15:08:31 +0100209const EXCLUDED_COVERAGE_FOLDERS = new Set(['third_party', 'ui/components/docs', 'Images']);
210
211/**
212 * @param {string} filePath
213 * @returns {boolean}
214 */
215function isIncludedForCoverageComputation(filePath) {
216 for (const excludedFolder of EXCLUDED_COVERAGE_FOLDERS) {
217 if (filePath.startsWith(`/front_end/${excludedFolder}/`)) {
218 return false;
219 }
220 }
221
222 return true;
223}
224
225const COVERAGE_INSTRUMENTER = createInstrumenter({
226 esModules: true,
227 parserPlugins: [
228 ...defaultIstanbulSchema.instrumenter.properties.parserPlugins.default,
229 'topLevelAwait',
230 ],
231});
232
233const instrumentedSourceCacheForFilePaths = new Map();
234
235const SHOULD_GATHER_COVERAGE_INFORMATION = process.env.COVERAGE === '1';
236
237/**
238 * @param {http.IncomingMessage} request
239 * @param {http.ServerResponse} response
240 */
Jack Franklin1557a1c2020-06-08 15:22:13 +0100241async function requestHandler(request, response) {
242 const filePath = parseURL(request.url).pathname;
Jack Franklin1557a1c2020-06-08 15:22:13 +0100243 if (filePath === '/favicon.ico') {
244 send404(response, '404, no favicon');
245 return;
246 }
247
248 if (filePath === '/' || filePath === '/index.html') {
Tim van der Lippee622f552021-04-14 15:15:18 +0100249 const components =
250 await fs.promises.readdir(path.join(componentDocsBaseFolder, 'front_end', 'ui', 'components', 'docs'));
Jack Franklinb5997162020-11-25 17:28:51 +0000251 const html = createServerIndexFile(components.filter(filePath => {
Tim van der Lippee622f552021-04-14 15:15:18 +0100252 const stats = fs.lstatSync(path.join(componentDocsBaseFolder, 'front_end', 'ui', 'components', 'docs', filePath));
Jack Franklinb5997162020-11-25 17:28:51 +0000253 // Filter out some build config files (tsconfig, d.ts, etc), and just list the directories.
254 return stats.isDirectory();
255 }));
Jack Franklin1557a1c2020-06-08 15:22:13 +0100256 respondWithHtml(response, html);
Tim van der Lippee622f552021-04-14 15:15:18 +0100257 } else if (filePath.startsWith('/front_end/ui/components/docs') && path.extname(filePath) === '') {
Jack Franklin1557a1c2020-06-08 15:22:13 +0100258 // This means it's a component path like /breadcrumbs.
259 const componentHtml = await getExamplesForPath(filePath);
260 respondWithHtml(response, componentHtml);
Jack Franklin36429002020-11-25 15:07:26 +0000261 return;
Tim van der Lippee622f552021-04-14 15:15:18 +0100262 } else if (/ui\/components\/docs\/(.+)\/(.+)\.html/.test(filePath)) {
Jack Franklin36429002020-11-25 15:07:26 +0000263 /** This conditional checks if we are viewing an individual example's HTML
Tim van der Lippee622f552021-04-14 15:15:18 +0100264 * file. e.g. localhost:8090/front_end/ui/components/docs/data_grid/basic.html For each
Jack Franklin36429002020-11-25 15:07:26 +0000265 * example we inject themeColors.css into the page so all CSS variables
266 * that components use are available.
267 */
Jack Franklin8742dc82021-02-26 09:17:59 +0000268
Jack Franklin0155f7d2021-03-02 09:11:22 +0000269 /**
270 * We also let the user provide a different base path for any shared
271 * resources that we load. But if this is provided along with the
272 * componentDocsBaseArg, and the two are the same, we don't want to use the
273 * shared resources base, as it's part of the componentDocsBaseArg and
274 * therefore the URL is already correct.
275 *
276 * If we didn't get a componentDocsBaseArg or we did and it's different to
277 * the sharedResourcesBase, we use sharedResourcesBase.
278 */
279 const baseUrlForSharedResource =
280 componentDocsBaseArg && componentDocsBaseArg.endsWith(sharedResourcesBase) ? '/' : `/${sharedResourcesBase}`;
281 const fileContents = await fs.promises.readFile(path.join(componentDocsBaseFolder, filePath), {encoding: 'utf8'});
Jack Franklin8742dc82021-02-26 09:17:59 +0000282 const themeColoursLink = `<link rel="stylesheet" href="${
Tim van der Lippee6583132021-04-08 10:10:57 +0100283 path.join(baseUrlForSharedResource, 'front_end', 'ui', 'legacy', 'themeColors.css')}" type="text/css" />`;
Jack Franklin343c1412021-02-26 15:08:10 +0000284 const inspectorCommonLink = `<link rel="stylesheet" href="${
Tim van der Lippee6583132021-04-08 10:10:57 +0100285 path.join(baseUrlForSharedResource, 'front_end', 'ui', 'legacy', 'inspectorCommon.css')}" type="text/css" />`;
Jack Franklin8742dc82021-02-26 09:17:59 +0000286 const toggleDarkModeScript = `<script type="module" src="${
Tim van der Lippee622f552021-04-14 15:15:18 +0100287 path.join(baseUrlForSharedResource, 'front_end', 'ui', 'components', 'docs', 'component_docs.js')}"></script>`;
Jack Franklin0f019a02021-04-09 08:50:29 +0000288 const newFileContents = fileContents.replace('</head>', `${themeColoursLink}\n${inspectorCommonLink}\n</head>`)
289 .replace('</body>', toggleDarkModeScript + '\n</body>');
Jack Franklin36429002020-11-25 15:07:26 +0000290 respondWithHtml(response, newFileContents);
291
Jack Franklin1557a1c2020-06-08 15:22:13 +0100292 } else {
Jack Franklin9d4ecf72020-09-16 14:04:30 +0100293 // This means it's an asset like a JS file or an image.
Jack Franklin49e33f92021-03-31 10:30:56 +0000294 let fullPath = path.join(componentDocsBaseFolder, filePath);
Jack Franklind0345122020-12-21 09:12:04 +0000295 if (fullPath.endsWith(path.join('locales', 'en-US.json'))) {
296 // Rewrite this path so we can load up the locale in the component-docs
Jack Franklin2ef4d052021-08-20 12:55:41 +0100297 fullPath =
298 path.join(componentDocsBaseFolder, sharedResourcesBase, 'front_end', 'core', 'i18n', 'locales', 'en-US.json');
Jack Franklind0345122020-12-21 09:12:04 +0000299 }
300
Jack Franklin90b66132021-01-05 11:33:43 +0000301 if (!fullPath.startsWith(devtoolsRootFolder) && !fileIsInTestFolder) {
Jack Franklin1557a1c2020-06-08 15:22:13 +0100302 console.error(`Path ${fullPath} is outside the DevTools Frontend root dir.`);
303 process.exit(1);
304 }
Jack Franklin1557a1c2020-06-08 15:22:13 +0100305
Jack Franklin279564e2020-07-06 15:25:18 +0100306 const fileExists = await checkFileExists(fullPath);
307
308 if (!fileExists) {
Jack Franklin1557a1c2020-06-08 15:22:13 +0100309 send404(response, '404, File not found');
310 return;
311 }
312
313 let encoding = 'utf8';
Jack Franklin1557a1c2020-06-08 15:22:13 +0100314 if (fullPath.endsWith('.js')) {
315 response.setHeader('Content-Type', 'text/javascript; charset=utf-8');
316 } else if (fullPath.endsWith('.css')) {
317 response.setHeader('Content-Type', 'text/css; charset=utf-8');
318 } else if (fullPath.endsWith('.wasm')) {
319 response.setHeader('Content-Type', 'application/wasm');
320 encoding = 'binary';
321 } else if (fullPath.endsWith('.svg')) {
322 response.setHeader('Content-Type', 'image/svg+xml; charset=utf-8');
323 } else if (fullPath.endsWith('.png')) {
324 response.setHeader('Content-Type', 'image/png');
325 encoding = 'binary';
326 } else if (fullPath.endsWith('.jpg')) {
327 response.setHeader('Content-Type', 'image/jpg');
328 encoding = 'binary';
Mathias Bynensc38abd42020-12-24 08:20:05 +0100329 } else if (fullPath.endsWith('.avif')) {
330 response.setHeader('Content-Type', 'image/avif');
331 encoding = 'binary';
Paul Lewisd6892872021-04-01 15:56:46 +0100332 } else if (fullPath.endsWith('.gz')) {
333 response.setHeader('Content-Type', 'application/gzip');
334 encoding = 'binary';
Jack Franklin1557a1c2020-06-08 15:22:13 +0100335 }
336
Tim van der Lippe23283e12021-05-10 15:08:31 +0100337 let fileContents = await fs.promises.readFile(fullPath, encoding);
338 const isComputingCoverageRequest = request.headers['devtools-compute-coverage'] === '1';
339
340 if (SHOULD_GATHER_COVERAGE_INFORMATION && fullPath.endsWith('.js') && filePath.startsWith('/front_end/') &&
341 isIncludedForCoverageComputation(filePath)) {
342 const previouslyGeneratedInstrumentedSource = instrumentedSourceCacheForFilePaths.get(fullPath);
343
344 if (previouslyGeneratedInstrumentedSource) {
345 fileContents = previouslyGeneratedInstrumentedSource;
346 } else {
347 if (!isComputingCoverageRequest) {
348 response.writeHead(400);
349 response.write(`Invalid coverage request. Attempted to load ${request.url}.`, 'utf8');
350 response.end();
351
352 console.error(
353 `Invalid coverage request. Attempted to load ${request.url} which was not available in the ` +
354 'code coverage instrumentation cache. Make sure that you call `preloadForCodeCoverage` in the describe block ' +
355 'of your interactions test, before declaring any tests.\n');
356 return;
357 }
358
359 fileContents = await new Promise(async (resolve, reject) => {
360 let sourceMap = convertSourceMap.fromSource(fileContents);
361 if (!sourceMap) {
362 sourceMap = convertSourceMap.fromMapFileSource(fileContents, path.dirname(fullPath));
363 }
364
365 COVERAGE_INSTRUMENTER.instrument(fileContents, fullPath, (error, instrumentedSource) => {
366 if (error) {
367 reject(error);
368 } else {
369 resolve(instrumentedSource);
370 }
371 }, sourceMap ? sourceMap.sourcemap : undefined);
372 });
373
374 instrumentedSourceCacheForFilePaths.set(fullPath, fileContents);
375 }
376 }
377
Jack Franklin1557a1c2020-06-08 15:22:13 +0100378 response.writeHead(200);
379 response.write(fileContents, encoding);
380 response.end();
381 }
382}