-
-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathtest.js
150 lines (120 loc) · 4.09 KB
/
test.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
import process from 'node:process';
import childProcess from 'node:child_process';
import test from 'ava';
import noopProcess from 'noop-process';
import {processExists} from 'process-exists';
import delay from 'delay';
import getPort from 'get-port';
import {execa} from 'execa';
import fkill from './index.js';
async function noopProcessKilled(t, pid) {
// Ensure the noop process has time to exit.
await delay(100);
t.false(await processExists(pid));
}
test('pid', async t => {
const pid = await noopProcess();
await fkill(pid, {force: true});
await noopProcessKilled(t, pid);
});
if (process.platform === 'win32') {
test.serial('title - windows', async t => {
const title = 'notepad.exe';
const {pid} = childProcess.spawn(title);
await fkill(title, {force: true});
t.false(await processExists(pid));
});
test.serial('default ignore case - windows', async t => {
const title = 'notepad.exe';
const {pid} = childProcess.spawn(title);
await fkill('NOTEPAD.EXE', {force: true});
t.false(await processExists(pid));
});
} else {
test('title', async t => {
const title = 'fkill-test';
const pid = await noopProcess({title});
await fkill(title);
await noopProcessKilled(t, pid);
});
test('ignore case', async t => {
const pid = await noopProcess({title: 'Capitalized'});
await fkill('capitalized', {ignoreCase: true});
await noopProcessKilled(t, pid);
});
test('exact match', async t => {
const title = 'foo-bar';
const pid = await noopProcess({title});
await t.throwsAsync(fkill('foo'), {message: /Process doesn't exist/});
t.true(await processExists(pid));
// Cleanup
await fkill(title);
});
test('force', async t => {
const pid = await noopProcess({title: 'force'});
await fkill('force', {force: true});
await noopProcessKilled(t, pid);
});
}
test('fail', async t => {
const error = await t.throwsAsync(fkill(['123456', '654321']));
t.regex(error.message, /123456/);
t.regex(error.message, /654321/);
});
test.serial('don\'t kill self', async t => {
const originalFkillPid = process.pid;
const pid = await noopProcess();
Object.defineProperty(process, 'pid', {value: pid});
await fkill(process.pid);
await delay(noopProcessKilled(t, pid));
t.true(await processExists(pid));
Object.defineProperty(process, 'pid', {value: originalFkillPid});
});
test.serial('don\'t kill `fkill` when killing `node` or `node.exe`', async t => {
const result = await execa('node', ['./fixture2.js'], {detached: true});
t.is(result.exitCode, 0);
});
test('ignore ignore-case for pid', async t => {
const pid = await noopProcess();
await fkill(pid, {force: true, ignoreCase: true});
await noopProcessKilled(t, pid);
});
test('kill from port', async t => {
const port = await getPort();
const {pid} = childProcess.spawn(process.execPath, ['fixture.js', port]);
await fkill(pid, {force: true});
await noopProcessKilled(t, pid);
});
test('error when process is not found', async t => {
await t.throwsAsync(
fkill(['notFoundProcess']),
{message: /Killing process notFoundProcess failed: Process doesn't exist/},
);
});
test('error when process is not found (force: true)', async t => {
await t.throwsAsync(
fkill(['notFoundProcess'], {force: true}),
{message: /Killing process notFoundProcess failed: Process doesn't exist/},
);
});
test('suppress errors when silent', async t => {
await t.notThrowsAsync(fkill(['123456', '654321'], {silent: true}));
await t.notThrowsAsync(fkill(['notFoundProcess'], {silent: true}));
});
test('force works properly for process ignoring SIGTERM', async t => {
const {pid} = childProcess.spawn(process.execPath, ['fixture-ignore-sigterm.js']);
await fkill(pid, {});
await delay(100);
t.true(await processExists(pid));
await fkill(pid, {force: true});
await noopProcessKilled(t, pid);
});
test('forceAfterTimeout works properly for process ignoring SIGTERM', async t => {
const {pid} = childProcess.spawn(process.execPath, ['fixture-ignore-sigterm.js']);
const promise = fkill(pid, {forceAfterTimeout: 100});
t.true(await processExists(pid));
await delay(50);
t.true(await processExists(pid));
await promise;
await noopProcessKilled(t, pid);
});