Skip to content

Commit

Permalink
Merge pull request atom#21715 from UziTech/transpiled-testPath
Browse files Browse the repository at this point in the history
check if testRunner is es module
  • Loading branch information
darangi authored Dec 11, 2020
2 parents 30ba00a + bd544cf commit f1b0e3b
Show file tree
Hide file tree
Showing 2 changed files with 161 additions and 112 deletions.
112 changes: 0 additions & 112 deletions src/initialize-test-window.coffee

This file was deleted.

161 changes: 161 additions & 0 deletions src/initialize-test-window.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,161 @@
const ipcHelpers = require('./ipc-helpers');
const { requireModule } = require('./module-utils');

function cloneObject(object) {
const clone = {};
for (const key in object) {
clone[key] = object[key];
}
return clone;
}

module.exports = async function({ blobStore }) {
const { remote } = require('electron');
const getWindowLoadSettings = require('./get-window-load-settings');

const exitWithStatusCode = function(status) {
remote.app.emit('will-quit');
remote.process.exit(status);
};

try {
const path = require('path');
const { ipcRenderer } = require('electron');
const CompileCache = require('./compile-cache');
const AtomEnvironment = require('../src/atom-environment');
const ApplicationDelegate = require('../src/application-delegate');
const Clipboard = require('../src/clipboard');
const TextEditor = require('../src/text-editor');
const { updateProcessEnv } = require('./update-process-env');
require('./electron-shims');

ipcRenderer.on('environment', (event, env) => updateProcessEnv(env));

const {
testRunnerPath,
legacyTestRunnerPath,
headless,
logFile,
testPaths,
env
} = getWindowLoadSettings();

if (headless) {
// Install console functions that output to stdout and stderr.
const util = require('util');

Object.defineProperties(process, {
stdout: { value: remote.process.stdout },
stderr: { value: remote.process.stderr }
});

console.log = (...args) =>
process.stdout.write(`${util.format(...args)}\n`);
console.error = (...args) =>
process.stderr.write(`${util.format(...args)}\n`);
} else {
// Show window synchronously so a focusout doesn't fire on input elements
// that are focused in the very first spec run.
remote.getCurrentWindow().show();
}

const handleKeydown = function(event) {
// Reload: cmd-r / ctrl-r
if ((event.metaKey || event.ctrlKey) && event.keyCode === 82) {
ipcHelpers.call('window-method', 'reload');
}

// Toggle Dev Tools: cmd-alt-i (Mac) / ctrl-shift-i (Linux/Windows)
if (
event.keyCode === 73 &&
((process.platform === 'darwin' && event.metaKey && event.altKey) ||
(process.platform !== 'darwin' && event.ctrlKey && event.shiftKey))
) {
ipcHelpers.call('window-method', 'toggleDevTools');
}

// Close: cmd-w / ctrl-w
if ((event.metaKey || event.ctrlKey) && event.keyCode === 87) {
ipcHelpers.call('window-method', 'close');
}

// Copy: cmd-c / ctrl-c
if ((event.metaKey || event.ctrlKey) && event.keyCode === 67) {
atom.clipboard.write(window.getSelection().toString());
}
};

window.addEventListener('keydown', handleKeydown, { capture: true });

// Add 'exports' to module search path.
const exportsPath = path.join(
getWindowLoadSettings().resourcePath,
'exports'
);
require('module').globalPaths.push(exportsPath);
process.env.NODE_PATH = exportsPath; // Set NODE_PATH env variable since tasks may need it.

updateProcessEnv(env);

// Set up optional transpilation for packages under test if any
const FindParentDir = require('find-parent-dir');
const packageRoot = FindParentDir.sync(testPaths[0], 'package.json');
if (packageRoot) {
const packageMetadata = require(path.join(packageRoot, 'package.json'));
if (packageMetadata.atomTranspilers) {
CompileCache.addTranspilerConfigForPath(
packageRoot,
packageMetadata.name,
packageMetadata,
packageMetadata.atomTranspilers
);
}
}

document.title = 'Spec Suite';

const clipboard = new Clipboard();
TextEditor.setClipboard(clipboard);
TextEditor.viewForItem = item => atom.views.getView(item);

const testRunner = requireModule(testRunnerPath);
const legacyTestRunner = require(legacyTestRunnerPath);
const buildDefaultApplicationDelegate = () => new ApplicationDelegate();
const buildAtomEnvironment = function(params) {
params = cloneObject(params);
if (!params.hasOwnProperty('clipboard')) {
params.clipboard = clipboard;
}
if (!params.hasOwnProperty('blobStore')) {
params.blobStore = blobStore;
}
if (!params.hasOwnProperty('onlyLoadBaseStyleSheets')) {
params.onlyLoadBaseStyleSheets = true;
}
const atomEnvironment = new AtomEnvironment(params);
atomEnvironment.initialize(params);
TextEditor.setScheduler(atomEnvironment.views);
return atomEnvironment;
};

const statusCode = await testRunner({
logFile,
headless,
testPaths,
buildAtomEnvironment,
buildDefaultApplicationDelegate,
legacyTestRunner
});

if (getWindowLoadSettings().headless) {
exitWithStatusCode(statusCode);
}
} catch (error) {
if (getWindowLoadSettings().headless) {
console.error(error.stack || error);
exitWithStatusCode(1);
} else {
throw error;
}
}
};

0 comments on commit f1b0e3b

Please sign in to comment.