-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathdaemon.test.ts
More file actions
394 lines (347 loc) · 12.4 KB
/
Copy pathdaemon.test.ts
File metadata and controls
394 lines (347 loc) · 12.4 KB
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
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
import { EventEmitter } from 'events';
import fs from 'fs';
import os from 'os';
import path from 'path';
import { PassThrough } from 'stream';
import { SITE_RUNTIME_NATIVE_PHP } from '@studio/common/lib/site-runtime';
import { beforeEach, describe, expect, it, vi } from 'vitest';
const testProcessName = 'studio-site-process-manager-test';
const tmpDir = path.join( os.tmpdir(), 'studio-daemon-test' );
class MockChildProcess extends EventEmitter {
pid = 4321;
connected = true;
stdout = new PassThrough();
stderr = new PassThrough();
send = vi.fn(
( _message: unknown, callback?: ( error: Error | null ) => void ) => callback?.( null )
);
kill = vi.fn( () => {
this.connected = false;
this.emit( 'exit', 0 );
return true;
} );
}
const spawnMock = vi.fn();
const spawnSyncMock = vi.fn();
vi.mock( 'child_process', () => {
const mockedModule = {
spawn: spawnMock,
spawnSync: spawnSyncMock,
};
return {
...mockedModule,
default: mockedModule,
};
} );
vi.mock( '../socket', async ( importOriginal ) => {
const actual = await importOriginal< typeof import('../lib/socket') >();
return {
...actual,
SocketClient: class {
send = vi.fn().mockResolvedValue( undefined );
connect = vi.fn().mockResolvedValue( { destroy: vi.fn() } );
},
};
} );
describe( 'ProcessManagerDaemon', () => {
beforeEach( () => {
vi.clearAllMocks();
fs.mkdirSync( path.join( tmpDir, 'logs' ), { recursive: true } );
process.env.STUDIO_PROCESS_MANAGER_HOME = tmpDir;
} );
it( 'starts a process, emits events, and writes logs', async () => {
const child = new MockChildProcess();
spawnMock.mockReturnValue( child );
const { ProcessManagerDaemon } = await import( '../process-manager-daemon' );
const daemon = new ProcessManagerDaemon();
const daemonInternal = daemon as unknown as {
handleRequest: ( request: unknown ) => Promise< {
type: string;
payload: { process?: { pmId: number; name: string; status: string; pid?: number } };
} >;
broadcastEvent: ( event: unknown ) => Promise< void >;
};
const broadcastSpy = vi
.spyOn( daemonInternal, 'broadcastEvent' )
.mockResolvedValue( undefined );
const response = await daemonInternal.handleRequest( {
type: 'start-process',
requestId: '1',
processName: testProcessName,
scriptPath: '/tmp/test-child.js',
env: {},
args: [],
runtime: SITE_RUNTIME_NATIVE_PHP,
} );
expect( response ).toEqual(
expect.objectContaining( {
type: 'result',
payload: expect.objectContaining( {
process: expect.objectContaining( {
name: testProcessName,
status: 'online',
pid: 4321,
runtime: SITE_RUNTIME_NATIVE_PHP,
} ),
} ),
} )
);
child.stdout.write( 'fixture-stdout\n' );
child.stderr.write( 'fixture-stderr\n' );
child.emit( 'message', { topic: 'ready' } );
await new Promise( ( resolve ) => setTimeout( resolve, 25 ) );
expect( broadcastSpy ).toHaveBeenCalledWith(
expect.objectContaining( {
type: 'process-event',
payload: expect.objectContaining( { event: 'online' } ),
} )
);
expect( broadcastSpy ).toHaveBeenCalledWith(
expect.objectContaining( {
type: 'process-message',
payload: expect.objectContaining( {
process: expect.objectContaining( { name: testProcessName } ),
raw: expect.objectContaining( { topic: 'ready' } ),
} ),
} )
);
const now = new Date();
const dateTag = `${ now.getFullYear() }${ String( now.getMonth() + 1 ).padStart(
2,
'0'
) }${ String( now.getDate() ).padStart( 2, '0' ) }`;
expect(
fs.readFileSync(
path.join( tmpDir, 'logs', `${ testProcessName }-out-${ dateTag }.log` ),
'utf8'
)
).toContain( 'fixture-stdout' );
expect(
fs.readFileSync(
path.join( tmpDir, 'logs', `${ testProcessName }-error-${ dateTag }.log` ),
'utf8'
)
).toContain( 'fixture-stderr' );
} );
it( 'includes captured stderr in the exit event payload', async () => {
const child = new MockChildProcess();
spawnMock.mockReturnValue( child );
const { ProcessManagerDaemon } = await import( '../process-manager-daemon' );
const daemon = new ProcessManagerDaemon();
const daemonInternal = daemon as unknown as {
handleRequest: ( request: unknown ) => Promise< unknown >;
broadcastEvent: ( event: unknown ) => Promise< void >;
};
const broadcastSpy = vi
.spyOn( daemonInternal, 'broadcastEvent' )
.mockResolvedValue( undefined );
await daemonInternal.handleRequest( {
type: 'start-process',
requestId: '1',
processName: testProcessName,
scriptPath: '/tmp/test-child.js',
env: {},
args: [],
} );
child.stderr.write( 'SyntaxError: boom\n' );
child.stderr.write( ' at Module._compile\n' );
// Let readline consume the lines before triggering exit.
await new Promise( ( resolve ) => setTimeout( resolve, 25 ) );
child.emit( 'exit', 1 );
await new Promise( ( resolve ) => setTimeout( resolve, 25 ) );
const exitCall = broadcastSpy.mock.calls.find( ( [ event ] ) => {
const payload = ( event as { type: string; payload: { event: string } } ).payload;
return payload.event === 'exit';
} );
expect( exitCall ).toBeDefined();
const payload = ( exitCall![ 0 ] as { payload: { stderrTail?: string } } ).payload;
expect( payload.stderrTail ).toContain( 'SyntaxError: boom' );
expect( payload.stderrTail ).toContain( 'at Module._compile' );
} );
it( 'includes stdout error lines in the exit event payload, skipping other stdout output', async () => {
const child = new MockChildProcess();
spawnMock.mockReturnValue( child );
const { ProcessManagerDaemon } = await import( '../process-manager-daemon' );
const daemon = new ProcessManagerDaemon();
const daemonInternal = daemon as unknown as {
handleRequest: ( request: unknown ) => Promise< unknown >;
broadcastEvent: ( event: unknown ) => Promise< void >;
};
const broadcastSpy = vi
.spyOn( daemonInternal, 'broadcastEvent' )
.mockResolvedValue( undefined );
await daemonInternal.handleRequest( {
type: 'start-process',
requestId: '1',
processName: testProcessName,
scriptPath: '/tmp/test-child.js',
env: {},
args: [],
} );
// Playground CLI prints boot failures to stdout, followed by the crash-page HTML.
child.stdout.write( 'WordPress Playground CLI\n' );
child.stdout.write( 'Error: PHP.run() failed with exit code 255.\n' );
child.stdout.write( '<!DOCTYPE html>\n' );
// Let readline consume the lines before triggering exit.
await new Promise( ( resolve ) => setTimeout( resolve, 25 ) );
child.emit( 'exit', 1 );
await new Promise( ( resolve ) => setTimeout( resolve, 25 ) );
const exitCall = broadcastSpy.mock.calls.find( ( [ event ] ) => {
const payload = ( event as { type: string; payload: { event: string } } ).payload;
return payload.event === 'exit';
} );
expect( exitCall ).toBeDefined();
const payload = ( exitCall![ 0 ] as { payload: { stderrTail?: string } } ).payload;
expect( payload.stderrTail ).toContain( 'Error: PHP.run() failed with exit code 255.' );
expect( payload.stderrTail ).not.toContain( 'DOCTYPE' );
expect( payload.stderrTail ).not.toContain( 'WordPress Playground CLI' );
} );
it( 'reuses duplicate starts, forwards messages, and resolves missing stops', async () => {
const child = new MockChildProcess();
spawnMock.mockReturnValue( child );
const { ProcessManagerDaemon } = await import( '../process-manager-daemon' );
const daemon = new ProcessManagerDaemon();
const daemonInternal = daemon as unknown as {
handleRequest: ( request: unknown ) => Promise< {
type: string;
payload: { process?: { pmId: number; name: string; status: string; pid?: number } };
} >;
};
const first = await daemonInternal.handleRequest( {
type: 'start-process',
requestId: '1',
processName: testProcessName,
scriptPath: '/tmp/test-child.js',
env: {},
args: [],
} );
const second = await daemonInternal.handleRequest( {
type: 'start-process',
requestId: '2',
processName: testProcessName,
scriptPath: '/tmp/test-child.js',
env: {},
args: [],
} );
const firstProcess = first.payload.process;
const secondProcess = second.payload.process;
if ( ! firstProcess || ! secondProcess ) {
throw new Error( 'Expected both start-process responses to include a process' );
}
expect( secondProcess.pmId ).toBe( firstProcess.pmId );
expect( spawnMock ).toHaveBeenCalledTimes( 1 );
await daemonInternal.handleRequest( {
type: 'send-message-to-process',
requestId: '3',
processId: firstProcess.pmId,
message: { topic: 'stop-server', messageId: 'msg-1', data: {} },
} );
expect( child.send ).toHaveBeenCalledWith(
{ topic: 'stop-server', messageId: 'msg-1', data: {} },
expect.any( Function )
);
await expect(
daemonInternal.handleRequest( {
type: 'stop-process',
requestId: '4',
processName: 'missing-process',
} )
).resolves.toEqual( {
type: 'result',
payload: {},
} );
} );
it.skipIf( process.platform === 'win32' )(
'signals the wrapper group and each reported subprocess group when killing the wrapper',
async () => {
const child = new MockChildProcess();
spawnMock.mockReturnValue( child );
const { ProcessManagerDaemon } = await import( '../process-manager-daemon' );
const daemon = new ProcessManagerDaemon();
const daemonInternal = daemon as unknown as {
handleRequest: ( request: unknown ) => Promise< {
type: string;
payload: { process?: { pmId: number; name: string; status: string; pid?: number } };
} >;
managedProcesses: Map< number, unknown >;
signalProcessGroup: ( managedProcess: unknown, signal: NodeJS.Signals ) => Promise< void >;
};
const response = await daemonInternal.handleRequest( {
type: 'start-process',
requestId: '1',
processName: testProcessName,
scriptPath: '/tmp/test-child.js',
env: {},
args: [],
} );
const processDesc = response.payload.process;
if ( ! processDesc ) {
throw new Error( 'Expected start-process response to include a process' );
}
child.emit( 'message', { topic: 'server-process-started', data: { pid: 9876 } } );
const managedProcess = daemonInternal.managedProcesses.get( processDesc.pmId );
if ( ! managedProcess ) {
throw new Error( 'Expected process manager to store the managed process' );
}
const killSpy = vi.spyOn( process, 'kill' ).mockImplementation( () => true );
try {
await daemonInternal.signalProcessGroup( managedProcess, 'SIGKILL' );
expect( killSpy ).toHaveBeenCalledWith( -4321, 'SIGKILL' );
expect( killSpy ).toHaveBeenCalledWith( -9876, 'SIGKILL' );
} finally {
killSpy.mockRestore();
}
}
);
it( 'taskkills the wrapper and reported subprocess trees on Windows', async () => {
const child = new MockChildProcess();
spawnMock.mockReturnValue( child );
const { ProcessManagerDaemon } = await import( '../process-manager-daemon' );
const daemon = new ProcessManagerDaemon();
const daemonInternal = daemon as unknown as {
handleRequest: ( request: unknown ) => Promise< {
type: string;
payload: { process?: { pmId: number; name: string; status: string; pid?: number } };
} >;
managedProcesses: Map< number, unknown >;
signalProcessGroup: ( managedProcess: unknown, signal: NodeJS.Signals ) => Promise< void >;
};
const response = await daemonInternal.handleRequest( {
type: 'start-process',
requestId: '1',
processName: testProcessName,
scriptPath: '/tmp/test-child.js',
env: {},
args: [],
} );
const processDesc = response.payload.process;
if ( ! processDesc ) {
throw new Error( 'Expected start-process response to include a process' );
}
child.emit( 'message', { topic: 'server-process-started', data: { pid: 9876 } } );
const managedProcess = daemonInternal.managedProcesses.get( processDesc.pmId );
if ( ! managedProcess ) {
throw new Error( 'Expected process manager to store the managed process' );
}
const originalPlatform = process.platform;
Object.defineProperty( process, 'platform', { value: 'win32', configurable: true } );
try {
await daemonInternal.signalProcessGroup( managedProcess, 'SIGKILL' );
expect( spawnSyncMock ).toHaveBeenCalledWith(
'taskkill',
[ '/F', '/T', '/PID', '4321' ],
expect.objectContaining( { windowsHide: true } )
);
expect( spawnSyncMock ).toHaveBeenCalledWith(
'taskkill',
[ '/F', '/T', '/PID', '9876' ],
expect.objectContaining( { windowsHide: true } )
);
} finally {
Object.defineProperty( process, 'platform', {
value: originalPlatform,
configurable: true,
} );
}
} );
} );