| 
									
										
										
										
											2019-11-19 10:18:28 +08:00
										 |  |  | #!/usr/bin/env node
 | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * Copyright 2017 Google Inc. All rights reserved. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * 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 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  *     http://www.apache.org/licenses/LICENSE-2.0
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * 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-01-14 09:36:46 +08:00
										 |  |  | const playwright = require('../../index.js').chromium; | 
					
						
							| 
									
										
										
										
											2019-11-19 10:18:28 +08:00
										 |  |  | const path = require('path'); | 
					
						
							|  |  |  | const Source = require('./Source'); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const PROJECT_DIR = path.join(__dirname, '..', '..'); | 
					
						
							|  |  |  | const VERSION = require(path.join(PROJECT_DIR, 'package.json')).version; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const RED_COLOR = '\x1b[31m'; | 
					
						
							|  |  |  | const YELLOW_COLOR = '\x1b[33m'; | 
					
						
							|  |  |  | const RESET_COLOR = '\x1b[0m'; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | run(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | async function run() { | 
					
						
							|  |  |  |   const startTime = Date.now(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   /** @type {!Array<!Message>} */ | 
					
						
							|  |  |  |   const messages = []; | 
					
						
							|  |  |  |   let changedFiles = false; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   // Documentation checks.
 | 
					
						
							|  |  |  |   { | 
					
						
							|  |  |  |     const readme = await Source.readFile(path.join(PROJECT_DIR, 'README.md')); | 
					
						
							|  |  |  |     const api = await Source.readFile(path.join(PROJECT_DIR, 'docs', 'api.md')); | 
					
						
							| 
									
										
										
										
											2020-01-24 07:54:09 +08:00
										 |  |  |     const troubleshooting = await Source.readFile(path.join(PROJECT_DIR, 'docs', 'troubleshooting.md')); | 
					
						
							|  |  |  |     const mdSources = [readme, api, troubleshooting]; | 
					
						
							| 
									
										
										
										
											2019-11-19 10:18:28 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     const preprocessor = require('./preprocessor'); | 
					
						
							|  |  |  |     messages.push(...await preprocessor.runCommands(mdSources, VERSION)); | 
					
						
							|  |  |  |     messages.push(...await preprocessor.ensureReleasedAPILinks([readme], VERSION)); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     const browser = await playwright.launch(); | 
					
						
							| 
									
										
										
										
											2020-02-06 04:41:55 +08:00
										 |  |  |     const page = await browser.newPage(); | 
					
						
							| 
									
										
										
										
											2019-11-19 10:18:28 +08:00
										 |  |  |     const checkPublicAPI = require('./check_public_api'); | 
					
						
							|  |  |  |     const jsSources = await Source.readdir(path.join(PROJECT_DIR, 'src')); | 
					
						
							| 
									
										
										
										
											2020-01-11 08:03:10 +08:00
										 |  |  |     const externalDependencies = Object.keys(require('../../src/web.webpack.config').externals); | 
					
						
							|  |  |  |     messages.push(...await checkPublicAPI(page, mdSources, jsSources, externalDependencies)); | 
					
						
							| 
									
										
										
										
											2019-11-19 10:18:28 +08:00
										 |  |  |     await browser.close(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for (const source of mdSources) { | 
					
						
							|  |  |  |       if (!source.hasUpdatedText()) | 
					
						
							|  |  |  |         continue; | 
					
						
							|  |  |  |       await source.save(); | 
					
						
							|  |  |  |       changedFiles = true; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2020-01-22 09:24:47 +08:00
										 |  |  |      | 
					
						
							|  |  |  |     await readme.saveAs(path.join(PROJECT_DIR, 'packages', 'playwright', 'README.md')); | 
					
						
							| 
									
										
										
										
											2019-11-19 10:18:28 +08:00
										 |  |  |   } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |   // Report results.
 | 
					
						
							|  |  |  |   const errors = messages.filter(message => message.type === 'error'); | 
					
						
							|  |  |  |   if (errors.length) { | 
					
						
							|  |  |  |     console.log('DocLint Failures:'); | 
					
						
							|  |  |  |     for (let i = 0; i < errors.length; ++i) { | 
					
						
							|  |  |  |       let error = errors[i].text; | 
					
						
							|  |  |  |       error = error.split('\n').join('\n      '); | 
					
						
							|  |  |  |       console.log(`  ${i + 1}) ${RED_COLOR}${error}${RESET_COLOR}`); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   const warnings = messages.filter(message => message.type === 'warning'); | 
					
						
							|  |  |  |   if (warnings.length) { | 
					
						
							|  |  |  |     console.log('DocLint Warnings:'); | 
					
						
							|  |  |  |     for (let i = 0; i < warnings.length; ++i) { | 
					
						
							|  |  |  |       let warning = warnings[i].text; | 
					
						
							|  |  |  |       warning = warning.split('\n').join('\n      '); | 
					
						
							|  |  |  |       console.log(`  ${i + 1}) ${YELLOW_COLOR}${warning}${RESET_COLOR}`); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   let clearExit = messages.length === 0; | 
					
						
							|  |  |  |   if (changedFiles) { | 
					
						
							|  |  |  |     if (clearExit) | 
					
						
							|  |  |  |       console.log(`${YELLOW_COLOR}Some files were updated.${RESET_COLOR}`); | 
					
						
							|  |  |  |     clearExit = false; | 
					
						
							|  |  |  |   } | 
					
						
							|  |  |  |   console.log(`${errors.length} failures, ${warnings.length} warnings.`); | 
					
						
							|  |  |  |   const runningTime = Date.now() - startTime; | 
					
						
							|  |  |  |   console.log(`DocLint Finished in ${runningTime / 1000} seconds`); | 
					
						
							|  |  |  |   process.exit(clearExit ? 0 : 1); | 
					
						
							|  |  |  | } |