index.js 1.7 KB
Newer Older
J
Johannes Rieken 已提交
1 2 3 4 5 6 7 8 9 10 11
/*---------------------------------------------------------------------------------------------
 *  Copyright (c) Microsoft Corporation. All rights reserved.
 *  Licensed under the MIT License. See License.txt in the project root for license information.
 *--------------------------------------------------------------------------------------------*/

const { app, BrowserWindow, ipcMain } = require('electron');
const { tmpdir } = require('os');
const { join } = require('path');

const optimist = require('optimist')
	.describe('grep', 'only run tests matching <pattern>').string('grep').alias('grep', 'g').string('g')
J
Johannes Rieken 已提交
12
	.describe('run', 'only run tests from <file>').string('run')
13
	.describe('debug', 'open dev tools, keep window open, reuse app data').string('debug');
J
Johannes Rieken 已提交
14

J
Johannes Rieken 已提交
15 16
const argv = optimist.argv;
const { debug, grep, run } = argv;
J
Johannes Rieken 已提交
17

18 19 20
if (!debug) {
	app.setPath('userData', join(tmpdir(), `vscode-tests-${Date.now()}`));
}
J
Johannes Rieken 已提交
21 22 23 24 25 26

app.on('ready', () => {

	const win = new BrowserWindow({
		height: 600,
		width: 800,
27 28 29 30
		webPreferences: {
			backgroundThrottling: false,
			webSecurity: false
		}
J
Johannes Rieken 已提交
31 32 33 34 35 36 37
	});

	win.webContents.on('did-finish-load', () => {
		win.show();
		if (debug) {
			win.webContents.openDevTools('right');
		}
J
Johannes Rieken 已提交
38
		win.webContents.send('run', { grep, run });
J
Johannes Rieken 已提交
39 40
	});

J
Johannes Rieken 已提交
41
	win.loadURL(`file://${__dirname}/renderer.html`);
J
Johannes Rieken 已提交
42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67


	const _failures = [];
	ipcMain.on('fail', (e, test) => {
		_failures.push(test);
		process.stdout.write('X');
	});
	ipcMain.on('pass', () => {
		process.stdout.write('.');
	});

	ipcMain.on('done', () => {

		console.log(`\nDone with ${_failures.length} failures.\n`);

		for (const fail of _failures) {
			console.error(fail.title);
			console.error(fail.stack);
			console.error('\n');
		}

		if (!debug) {
			app.exit(_failures.length > 0 ? 1 : 0);
		}
	});
});