-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Copy pathfork.js
155 lines (125 loc) · 3.74 KB
/
fork.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
'use strict';
const childProcess = require('child_process');
const path = require('path');
const fs = require('fs');
const Promise = require('bluebird');
const debug = require('debug')('ava');
const AvaError = require('./ava-error');
if (fs.realpathSync(__filename) !== __filename) {
console.warn('WARNING: `npm link ava` and the `--preserve-symlink` flag are incompatible. We have detected that AVA is linked via `npm link`, and that you are using either an early version of Node 6, or the `--preserve-symlink` flag. This breaks AVA. You should upgrade to Node 6.2.0+, avoid the `--preserve-symlink` flag, or avoid using `npm link ava`.');
}
const env = Object.assign({NODE_ENV: 'test'}, process.env);
// Ensure NODE_PATH paths are absolute
if (env.NODE_PATH) {
env.NODE_PATH = env.NODE_PATH
.split(path.delimiter)
.map(x => path.resolve(x))
.join(path.delimiter);
}
// In case the test file imports a different AVA install,
// the presence of this variable allows it to require this one instead
env.AVA_PATH = path.resolve(__dirname, '..');
module.exports = (file, opts, execArgv) => {
opts = Object.assign({
file,
baseDir: process.cwd(),
tty: process.stdout.isTTY ? {
columns: process.stdout.columns,
rows: process.stdout.rows
} : false
}, opts);
const args = [JSON.stringify(opts), opts.color ? '--color' : '--no-color'].concat(opts.workerArgv);
const ps = childProcess.fork(path.join(__dirname, 'test-worker.js'), args, {
cwd: opts.projectDir,
silent: true,
env,
execArgv: execArgv || process.execArgv
});
const relFile = path.relative('.', file);
let exiting = false;
const send = (name, data) => {
if (!exiting) {
// This seems to trigger a Node bug which kills the AVA master process, at
// least while running AVA's tests. See
// <https://github.com/novemberborn/_ava-tap-crash> for more details.
ps.send({
name: `ava-${name}`,
data,
ava: true
});
}
};
let loadedFile = false;
const testResults = [];
let results;
const promise = new Promise((resolve, reject) => {
ps.on('error', reject);
// Emit `test` and `stats` events
ps.on('message', event => {
if (!event.ava) {
return;
}
event.name = event.name.replace(/^ava-/, '');
event.data.file = relFile;
debug('ipc %s:\n%o', event.name, event.data);
ps.emit(event.name, event.data);
});
ps.on('test', props => {
testResults.push(props);
});
ps.on('results', data => {
results = data;
data.tests = testResults;
send('teardown');
});
ps.on('exit', (code, signal) => {
if (code > 0) {
return reject(new AvaError(`${relFile} exited with a non-zero exit code: ${code}`));
}
if (code === null && signal) {
return reject(new AvaError(`${relFile} exited due to ${signal}`));
}
if (results) {
resolve(results);
} else if (loadedFile) {
reject(new AvaError(`No tests found in ${relFile}`));
} else {
reject(new AvaError(`Test results were not received from ${relFile}`));
}
});
ps.on('loaded-file', data => {
loadedFile = true;
if (!data.avaRequired) {
send('teardown');
reject(new AvaError(`No tests found in ${relFile}, make sure to import "ava" at the top of your test file`));
}
});
});
// Teardown finished, now exit
ps.on('teardown', () => {
send('exit');
exiting = true;
});
// Uncaught exception in fork, need to exit
ps.on('uncaughtException', () => {
send('teardown');
});
ps.stdout.on('data', data => {
ps.emit('stdout', data);
});
ps.stderr.on('data', data => {
ps.emit('stderr', data);
});
promise.on = function () {
ps.on.apply(ps, arguments);
return promise;
};
promise.exit = () => {
send('init-exit');
return promise;
};
promise.notifyOfPeerFailure = () => {
send('peer-failed');
};
return promise;
};