Skip to content
Navigation Menu
{{ message }}
forked from Unitech/pm2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprogrammatic.js
More file actions
433 lines (381 loc) · 10.7 KB
/
Copy pathprogrammatic.js
File metadata and controls
433 lines (381 loc) · 10.7 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
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
/**
* PM2 programmatic API tests
*/
//process.env.NODE_ENV ='test';
var PM2 = require('../..');
var should = require('should');
var path = require('path');
describe('PM2 programmatic calls', function() {
this.timeout(10000);
var proc1 = null;
var procs = [];
var bus = null;
var pm2 = new PM2.custom({
cwd : __dirname + '/../fixtures',
independent : true
});
after(function(done) {
pm2.destroy(done);
});
before(function(done) {
pm2.connect(function() {
pm2.launchBus(function(err, _bus) {
bus = _bus;
pm2.delete('all', function(err, ret) {
done();
});
});
});
});
describe('General methods', function() {
it('should start a script', function(done) {
pm2.start({
script : './child.js',
name : 'child',
instances : 1
}, function(err, data) {
proc1 = data[0];
should(err).be.null()
done();
});
});
it('should get id', function(done) {
pm2.getProcessIdByName('child', function(err, data) {
data[0].should.eql(0);
should(err).be.null()
setTimeout(done, 300);
});
});
it('should get node.js version application running', function(done) {
pm2.describe('child', function(err, data) {
should(err).be.null()
data[0].pm2_env.node_version.should.eql(process.versions.node);
done();
});
});
it('should start a script and force to launch it', function(done) {
pm2.start({
script : './child.js',
force : true,
name : 'toto',
instances : 1
}, function(err, data) {
should(err).be.null()
data.length.should.eql(1);
done();
});
});
it('should start a script in a specified cwd', function(done) {
var target_cwd = path.join(__dirname, '/../fixtures/');
pm2.start({
script : './cron.js',
cwd: target_cwd,
instances : 1
}, function(err, data) {
should(err).be.null();
proc1 = data[0];
proc1.pm2_env.cwd.should.eql(target_cwd);
should(err).be.null()
done();
});
});
it('should notice error if wrong file passed', function(done) {
pm2.start('./UNKNOWN_SCRIPT.js', {
force : true,
name : 'tota',
instances : 3
}, function(err, data) {
console.log(err)
should.exists(err);
done();
});
});
it('should start a script and force to launch it', function(done) {
pm2.start('./child.js', {
force : true,
name : 'tota',
instances : 6
}, function(err, data) {
should(err).be.null()
data.length.should.eql(6);
done();
});
});
it('should get pm2 version', function(done) {
pm2.getVersion(function(err, data) {
should(err).be.null()
should.exists(data);
done();
});
});
it('should list processes', function(done) {
pm2.list(function(err, ret) {
should(err).be.null()
ret.length.should.eql(9);
done();
});
});
it('should delete one process', function(done) {
pm2.delete(proc1.pm2_env.pm_id, function(err, ret) {
should(err).be.null()
pm2.list(function(err, ret) {
should(err).be.null()
ret.length.should.eql(8);
done();
});
});
});
it('should save/dump all processes', function(done) {
pm2.dump(function(err, ret) {
should(err).be.null()
done();
});
});
it('should delete processes', function(done) {
this.timeout(5000);
pm2.delete('all', function(err, ret) {
should(err).be.null()
pm2.list(function(err, ret) {
should(err).be.null()
ret.length.should.eql(0);
done();
});
});
});
it('should resurrect processes', function(done) {
pm2.resurrect(function(err, ret) {
should(err).be.null()
pm2.list(function(err, ret) {
should(err).be.null()
ret.length.should.eql(8);
done();
});
});
});
it('should ping pm2', function(done) {
pm2.ping(function(err, ret) {
should(err).be.null()
done();
});
});
it('should launch pm2 web API', function(done) {
pm2.web(function(err, ret) {
should(err).be.null()
pm2.list(function(err, ret) {
should(err).be.null()
ret.length.should.eql(9);
done();
});
});
});
it('should reload all', function(done) {
pm2.reload('all', function(err, ret) {
should(err).be.null()
done();
});
});
it('should reload only one application', function(done) {
pm2.reload('tota', function(err, ret) {
should(err).be.null()
pm2.describe('tota', function(err, proc) {
should(err).be.null()
procs = proc;
proc[0].pm2_env.restart_time.should.eql(2);
done();
});
});
});
it('should describe all process with name', function(done) {
pm2.describe('tota', function(err, proc) {
should(err).be.null()
proc.length.should.eql(6);
done();
});
});
});
describe('Restart methods', function() {
it('should restart all', function(done) {
pm2.restart('all', function(err, ret) {
should(err).be.null()
pm2.describe('tota', function(err, proc) {
should(err).be.null()
proc.length.should.eql(6);
proc[0].pm2_env.restart_time.should.eql(3);
done();
});
});
});
it('should restart process by name', function(done) {
pm2.restart('tota', function(err, ret) {
should(err).be.null()
pm2.describe('tota', function(err, proc) {
should(err).be.null()
proc.length.should.eql(6);
proc[0].pm2_env.restart_time.should.eql(4);
done();
});
});
});
it('should restart process by id', function(done) {
pm2.restart(procs[0].pm2_env.pm_id, function(err, ret) {
should(err).be.null()
pm2.describe(procs[0].pm2_env.pm_id, function(err, proc) {
should(err).be.null()
proc.length.should.eql(1);
proc[0].pm2_env.restart_time.should.eql(5);
done();
});
});
});
});
describe('Stop methods', function() {
it('should stop process name', function(done) {
pm2.stop(procs[0].pm2_env.name, function(err, ret) {
should(err).be.null()
pm2.describe(procs[0].pm2_env.name, function(err, procs) {
should(err).be.null()
procs[0].pm2_env.status.should.eql('stopped');
done();
});
});
});
it('should stop process id', function(done) {
pm2.stop(procs[1].pm2_env.pm_id, function(err, ret) {
should(err).be.null()
pm2.describe(procs[1].pm2_env.pm_id, function(err, procs) {
should(err).be.null()
procs[0].pm2_env.status.should.eql('stopped');
done();
});
});
});
it('should stop process all', function(done) {
pm2.stop('all', function(err, ret) {
should(err).be.null()
pm2.describe(procs[0].pm2_env.pm_id, function(err, procs) {
should(err).be.null()
procs[0].pm2_env.status.should.eql('stopped');
done();
});
});
});
});
describe('start OR restart', function() {
beforeEach(function(done) {
pm2.delete('all', function(err, ret) {
done();
});
});
it('should start a JSON object in cluster mode', function(done) {
pm2.start({
script : './echo.js',
instances : 4,
exec_mode : 'cluster'
}, function(err, dt) {
should(err).be.null()
pm2.list(function(err, ret) {
should(err).be.null()
ret.length.should.eql(4);
ret[0].pm2_env.exec_mode.should.eql('cluster_mode');
done();
});
});
});
it('should start a JSON object in fork mode', function(done) {
pm2.start({
script : './echo.js',
instances : 4,
exec_mode : 'fork'
}, function(err, dt) {
should(err).be.null()
pm2.list(function(err, ret) {
should(err).be.null()
ret.length.should.eql(4);
ret[0].pm2_env.exec_mode.should.eql('fork_mode');
done();
});
});
});
it('should start a JSON file', function(done) {
pm2.start('./all2.json', function(err, dt) {
should(err).be.null()
pm2.list(function(err, ret) {
should(err).be.null()
ret.length.should.eql(4);
done();
});
});
});
});
describe('start OR restart', function() {
before(function(done) {
pm2.delete('all', function(err, ret) {
pm2.list(function(err, ret) {
should(err).be.null()
ret.length.should.eql(0);
done();
});
});
});
it('should start', function(done) {
pm2._startJson('./all2.json', {}, 'restartProcessId', function(err, data) {
should(err).be.null()
pm2.list(function(err, ret) {
should(err).be.null()
ret.length.should.eql(4);
done();
});
});
});
it('should NOW restart action', function(done) {
pm2._startJson('./all2.json', {}, 'restartProcessId', function(err, data) {
should(err).be.null()
pm2.list(function(err, ret) {
should(err).be.null()
ret.forEach(function(app) {
app.pm2_env.restart_time.should.eql(1);
});
done();
});
});
});
it('should reset status', function(done) {
pm2.delete('all', function(err, ret) {
done();
});
});
it('should start with specific environment variables depending on the env type', function(done) {
pm2._startJson('../fixtures/all2.json', {
env : 'production'
}, 'restartProcessId', function(err, data) {
should(err).be.null()
pm2.list(function(err, ret) {
should(err).be.null();
ret[0].pm2_env['NODE_ENV'].should.eql('production');
ret[0].pm2_env['TOTO'].should.eql('heymoto');
done();
});
});
});
});
describe('Connect / Disconnect', function() {
it('should disconnect', function() {
pm2.disconnect();
});
it('should connect', function(done) {
pm2.connect(function() {
done();
});
});
it('should disconnect with callback', function(done) {
pm2.disconnect(function() {
done();
});
});
it('should connect', function(done) {
pm2.connect(function() {
done();
});
});
});
});
You can’t perform that action at this time.
