deno/cli/tests/unit/signal_test.ts

196 lines
4.5 KiB
TypeScript
Raw Normal View History

2020-01-24 13:15:31 +00:00
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import {
unitTest,
2020-01-24 13:15:31 +00:00
assert,
assertEquals,
assertThrows,
createResolvable,
2020-01-24 13:15:31 +00:00
} from "./test_util.ts";
function defer(n: number): Promise<void> {
return new Promise((resolve: () => void, _) => {
2020-01-24 13:15:31 +00:00
setTimeout(resolve, n);
});
}
unitTest(
{ ignore: Deno.build.os !== "windows" },
2020-03-20 13:38:34 +00:00
function signalsNotImplemented(): void {
2020-01-24 13:15:31 +00:00
assertThrows(
() => {
Deno.signal(1);
},
Error,
"not implemented",
2020-01-24 13:15:31 +00:00
);
assertThrows(
() => {
Deno.signals.alarm(); // for SIGALRM
},
Error,
"not implemented",
2020-01-24 13:15:31 +00:00
);
assertThrows(
() => {
Deno.signals.child(); // for SIGCHLD
},
Error,
"not implemented",
2020-01-24 13:15:31 +00:00
);
assertThrows(
() => {
Deno.signals.hungup(); // for SIGHUP
},
Error,
"not implemented",
2020-01-24 13:15:31 +00:00
);
assertThrows(
() => {
Deno.signals.interrupt(); // for SIGINT
},
Error,
"not implemented",
2020-01-24 13:15:31 +00:00
);
assertThrows(
() => {
Deno.signals.io(); // for SIGIO
},
Error,
"not implemented",
2020-01-24 13:15:31 +00:00
);
assertThrows(
() => {
Deno.signals.pipe(); // for SIGPIPE
},
Error,
"not implemented",
2020-01-24 13:15:31 +00:00
);
assertThrows(
() => {
Deno.signals.quit(); // for SIGQUIT
},
Error,
"not implemented",
2020-01-24 13:15:31 +00:00
);
assertThrows(
() => {
Deno.signals.terminate(); // for SIGTERM
},
Error,
"not implemented",
2020-01-24 13:15:31 +00:00
);
assertThrows(
() => {
Deno.signals.userDefined1(); // for SIGUSR1
},
Error,
"not implemented",
2020-01-24 13:15:31 +00:00
);
assertThrows(
() => {
Deno.signals.userDefined2(); // for SIGURS2
},
Error,
"not implemented",
2020-01-24 13:15:31 +00:00
);
assertThrows(
() => {
Deno.signals.windowChange(); // for SIGWINCH
},
Error,
"not implemented",
2020-01-24 13:15:31 +00:00
);
},
);
unitTest(
{ ignore: Deno.build.os === "windows", perms: { run: true, net: true } },
async function signalStreamTest(): Promise<void> {
const resolvable = createResolvable();
2020-01-24 13:15:31 +00:00
// This prevents the program from exiting.
const t = setInterval(() => {}, 1000);
let c = 0;
const sig = Deno.signal(Deno.Signal.SIGUSR1);
setTimeout(async () => {
await defer(20);
for (const _ of Array(3)) {
// Sends SIGUSR1 3 times.
Deno.kill(Deno.pid, Deno.Signal.SIGUSR1);
await defer(20);
}
sig.dispose();
resolvable.resolve();
2020-01-24 13:15:31 +00:00
});
for await (const _ of sig) {
c += 1;
}
assertEquals(c, 3);
clearInterval(t);
await resolvable;
},
);
2020-01-24 13:15:31 +00:00
unitTest(
{ ignore: Deno.build.os === "windows", perms: { run: true } },
async function signalPromiseTest(): Promise<void> {
const resolvable = createResolvable();
// This prevents the program from exiting.
const t = setInterval(() => {}, 1000);
2020-01-24 13:15:31 +00:00
const sig = Deno.signal(Deno.Signal.SIGUSR1);
setTimeout(() => {
Deno.kill(Deno.pid, Deno.Signal.SIGUSR1);
resolvable.resolve();
}, 20);
await sig;
sig.dispose();
2020-01-24 13:15:31 +00:00
clearInterval(t);
await resolvable;
},
);
2020-01-24 13:15:31 +00:00
unitTest(
{ ignore: Deno.build.os === "windows", perms: { run: true } },
2020-03-20 13:38:34 +00:00
function signalShorthandsTest(): void {
2020-01-24 13:15:31 +00:00
let s: Deno.SignalStream;
s = Deno.signals.alarm(); // for SIGALRM
assert(s instanceof Deno.SignalStream);
s.dispose();
s = Deno.signals.child(); // for SIGCHLD
assert(s instanceof Deno.SignalStream);
s.dispose();
s = Deno.signals.hungup(); // for SIGHUP
assert(s instanceof Deno.SignalStream);
s.dispose();
s = Deno.signals.interrupt(); // for SIGINT
assert(s instanceof Deno.SignalStream);
s.dispose();
s = Deno.signals.io(); // for SIGIO
assert(s instanceof Deno.SignalStream);
s.dispose();
s = Deno.signals.pipe(); // for SIGPIPE
assert(s instanceof Deno.SignalStream);
s.dispose();
s = Deno.signals.quit(); // for SIGQUIT
assert(s instanceof Deno.SignalStream);
s.dispose();
s = Deno.signals.terminate(); // for SIGTERM
assert(s instanceof Deno.SignalStream);
s.dispose();
s = Deno.signals.userDefined1(); // for SIGUSR1
assert(s instanceof Deno.SignalStream);
s.dispose();
s = Deno.signals.userDefined2(); // for SIGURS2
assert(s instanceof Deno.SignalStream);
s.dispose();
s = Deno.signals.windowChange(); // for SIGWINCH
assert(s instanceof Deno.SignalStream);
s.dispose();
},
);