forked from npm/run-script
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun-script-pkg.js
300 lines (284 loc) · 7.26 KB
/
run-script-pkg.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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
const t = require('tap')
const spawk = require('spawk')
const runScript = require('..')
const isWindows = process.platform === 'win32'
const emptyDir = t.testdir({})
const pkill = process.kill
const output = []
const appendOutput = (level, ...args) => {
if (level === 'standard') {
output.push([...args])
}
}
process.on('output', appendOutput)
t.afterEach(() => output.length = 0)
t.teardown(() => process.removeListener('output', appendOutput))
t.test('run-script-pkg', async t => {
await t.test('stdio inherit no args and a pkgid', async t => {
spawk.spawn('sh', a => a.includes('bar\nbaz\n'))
await runScript({
event: 'foo',
path: emptyDir,
scriptShell: 'sh',
env: {
environ: 'value',
},
stdio: 'inherit',
cmd: 'bar\nbaz\n',
pkg: {
_id: 'foo@1.2.3',
scripts: {},
},
})
t.strictSame(output, [['\n> foo@1.2.3 foo\n> bar\n> baz\n']])
t.ok(spawk.done())
})
await t.test('stdio inherit args and no pkgid', async t => {
spawk.spawn('sh', a => a.includes('bar baz buzz'))
await runScript({
event: 'foo',
path: emptyDir,
scriptShell: 'sh',
env: {
environ: 'value',
},
stdio: 'inherit',
cmd: 'bar',
args: ['baz', 'buzz'],
pkg: {
scripts: {},
},
})
t.strictSame(output, [['\n> foo\n> bar baz buzz\n']])
t.ok(spawk.done())
})
await t.test('pkg has foo script, with stdio pipe', async t => {
spawk.spawn('sh', a => a.includes('bar'))
await runScript({
event: 'foo',
path: emptyDir,
scriptShell: 'sh',
env: {
environ: 'value',
},
stdio: 'pipe',
pkg: {
_id: 'foo@1.2.3',
scripts: {
foo: 'bar',
},
},
})
t.strictSame(output, [])
t.ok(spawk.done())
})
await t.test('pkg has foo script, with stdio pipe and args', async t => {
spawk.spawn('sh', a => a.includes('bar a b c'))
await runScript({
event: 'foo',
path: 'path',
scriptShell: 'sh',
env: {
environ: 'value',
},
stdio: 'pipe',
pkg: {
_id: 'foo@1.2.3',
scripts: {
foo: 'bar',
},
},
args: ['a', 'b', 'c'],
binPaths: false,
})
t.strictSame(output, [])
t.ok(spawk.done())
})
/* eslint-disable-next-line max-len */
await t.test('pkg has no install or preinstall script, node-gyp files present, stdio pipe', async t => {
const testdir = t.testdir({
'binding.gyp': 'exists',
})
spawk.spawn('sh', a => a.includes('node-gyp rebuild'))
await runScript({
event: 'install',
path: testdir,
scriptShell: 'sh',
env: {
environ: 'value',
},
stdio: 'pipe',
pkg: {
_id: 'foo@1.2.3',
scripts: {},
},
})
t.strictSame(output, [])
t.ok(spawk.done())
})
t.test('pkg has no install or preinstall script, but gypfile:false, stdio pipe', async t => {
const testdir = t.testdir({
'binding.gyp': 'exists',
})
const res = await runScript({
event: 'install',
path: testdir,
scriptShell: 'sh',
env: {
environ: 'value',
},
stdio: 'pipe',
pkg: {
_id: 'foo@1.2.3',
gypfile: false,
scripts: {
},
},
})
t.strictSame(output, [])
t.strictSame(res, { code: 0, signal: null })
})
t.test('end stdin if present', async t => {
const interceptor = spawk.spawn('sh', a => a.includes('cat'))
await runScript({
event: 'cat',
path: emptyDir,
scriptShell: 'sh',
pkg: {
_id: 'kitty@1.2.3',
scripts: {
cat: 'cat',
},
},
})
t.ok(spawk.done())
t.ok(interceptor.calledWith.stdio[0].writableEnded, 'stdin was ended properly')
})
await t.test('kill process when foreground process ends with signal, stdio inherit', async t => {
t.teardown(() => {
process.kill = pkill
})
let pid
let signal
process.kill = (p, s) => {
pid = p
signal = s
// make the process.kill actually stop things
throw new Error('process killed')
}
spawk.spawn('sh', a => a.includes('sleep 1000000')).signal('SIGFOO')
await t.rejects(runScript({
event: 'sleep',
path: emptyDir,
scriptShell: 'sh',
stdio: 'inherit',
banner: false,
signalTimeout: 1,
pkg: {
_id: 'husky@1.2.3',
name: 'husky',
version: '1.2.3',
scripts: {
sleep: 'sleep 1000000',
},
},
}))
t.strictSame(output, [['\n> husky@1.2.3 sleep\n> sleep 1000000\n']])
t.ok(spawk.done())
if (!isWindows) {
t.equal(signal, 'SIGFOO', 'process.kill got expected signal')
t.equal(pid, process.pid, 'process.kill got expected pid')
}
})
await t.test('kill process when foreground process ends with signal, stdio inherit', async t => {
t.teardown(() => {
process.kill = pkill
})
let pid
let signal
process.kill = (p, s) => {
pid = p
signal = s
// make the process.kill actually stop things
throw new Error('process killed')
}
spawk.spawn('sh', a => a.includes('sleep 1000000')).signal('SIGFOO')
await t.rejects(runScript({
event: 'sleep',
path: emptyDir,
scriptShell: 'sh',
stdio: 'inherit',
banner: false,
signalTimeout: 1,
pkg: {
_id: 'husky@1.2.3',
name: 'husky',
version: '1.2.3',
scripts: {
sleep: 'sleep 1000000',
},
},
}))
t.strictSame(output, [['\n> husky@1.2.3 sleep\n> sleep 1000000\n']])
t.ok(spawk.done())
if (!isWindows) {
t.equal(signal, 'SIGFOO', 'process.kill got expected signal')
t.equal(pid, process.pid, 'process.kill got expected pid')
}
})
t.test('rejects if process.kill fails to end process, stdio inherit', async t => {
t.teardown(() => {
process.kill = pkill
})
let pid
let signal
process.kill = (p, s) => {
pid = p
signal = s
// do nothing here to emulate process.kill not killing the process
}
spawk.spawn('sh', a => a.includes('sleep 1000000')).signal('SIGFOO')
await t.rejects(runScript({
event: 'sleep',
path: emptyDir,
stdio: 'inherit',
scriptShell: 'sh',
banner: false,
signalTimeout: 1,
pkg: {
_id: 'husky@1.2.3',
name: 'husky',
version: '1.2.3',
scripts: {
sleep: 'sleep 1000000',
},
},
}))
t.strictSame(output, [['\n> husky@1.2.3 sleep\n> sleep 1000000\n']])
t.ok(spawk.done())
if (!isWindows) {
t.equal(signal, 'SIGFOO', 'process.kill got expected signal')
t.equal(pid, process.pid, 'process.kill got expected pid')
}
})
t.test('rejects if stdio is not inherit', async t => {
spawk.spawn('sh', a => a.includes('sleep 1000000')).signal('SIGFOO')
await t.rejects(runScript({
event: 'sleep',
path: emptyDir,
banner: false,
scriptShell: 'sh',
signalTimeout: 1,
pkg: {
_id: 'husky@1.2.3',
name: 'husky',
version: '1.2.3',
scripts: {
sleep: 'sleep 1000000',
},
},
}))
t.strictSame(output, [])
t.ok(spawk.done())
})
})