mirror of
				https://github.com/microsoft/playwright.git
				synced 2025-06-26 21:40:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			86 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			86 lines
		
	
	
		
			2.7 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| /**
 | |
|  * Copyright Microsoft Corporation. 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.
 | |
|  */
 | |
| const path = require('path');
 | |
| const fs = require('fs');
 | |
| const {installCoverageHooks} = require('./coverage');
 | |
| 
 | |
| const browserName = process.argv[2] || 'chromium';
 | |
| 
 | |
| let api = new Set(installCoverageHooks(browserName).coverage.keys());
 | |
| 
 | |
| // coverage exceptions
 | |
| 
 | |
| if (browserName === 'chromium') {
 | |
|   // Sometimes we already have a background page while launching, before adding a listener.
 | |
|   api.delete('browserContext.emit("backgroundpage")');
 | |
| }
 | |
| 
 | |
| if (browserName !== 'chromium') {
 | |
|   // we don't have CDPSession in non-chromium browsers
 | |
|   api.delete('browser.newBrowserCDPSession');
 | |
|   api.delete('browser.startTracing');
 | |
|   api.delete('browser.stopTracing');
 | |
|   api.delete('browserContext.backgroundPages');
 | |
|   api.delete('browserContext.serviceWorkers');
 | |
|   api.delete('browserContext.newCDPSession');
 | |
|   api.delete('browserContext.emit("backgroundpage")');
 | |
|   api.delete('browserContext.emit("serviceworker")');
 | |
|   api.delete('cDPSession.send');
 | |
|   api.delete('cDPSession.detach');
 | |
|   api.delete('coverage.startJSCoverage');
 | |
|   api.delete('coverage.stopJSCoverage');
 | |
|   api.delete('coverage.startCSSCoverage');
 | |
|   api.delete('coverage.stopCSSCoverage');
 | |
|   api.delete('page.pdf');
 | |
|   api.delete('download._cancel');
 | |
| }
 | |
| 
 | |
| // Some permissions tests are disabled in webkit. See permissions.jest.js
 | |
| if (browserName === 'webkit')
 | |
|   api.delete('browserContext.clearPermissions');
 | |
| 
 | |
| // Response interception is not implemented in Firefox yet.
 | |
| if (browserName === 'firefox')
 | |
|   api.delete('route.intercept');
 | |
| 
 | |
| const coverageDir = path.join(__dirname, '..', 'coverage-report');
 | |
| 
 | |
| const coveredMethods = new Set();
 | |
| for (const file of getCoverageFiles(coverageDir)) {
 | |
|   for (const method of JSON.parse(fs.readFileSync(file, 'utf8')))
 | |
|     coveredMethods.add(method);
 | |
| }
 | |
| 
 | |
| 
 | |
| let success = true;
 | |
| for (const method of api) {
 | |
|   if (coveredMethods.has(method))
 | |
|     continue;
 | |
|   success = false;
 | |
|   console.log(`ERROR: Missing coverage for "${method}"`)
 | |
| }
 | |
| 
 | |
| process.exit(success ? 0 : 1);
 | |
| 
 | |
| function * getCoverageFiles(dir) {
 | |
|   for (const entry of fs.readdirSync(dir, {withFileTypes: true})) {
 | |
|     if (entry.isDirectory())
 | |
|       yield * getCoverageFiles(path.join(dir, entry.name))
 | |
|     else
 | |
|       yield path.join(dir, entry.name);
 | |
|   }
 | |
| }
 | 
