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
|
/* -*- Mode: indent-tabs-mode: nil; js-indent-level: 2 -*- */
/* vim: set sts=2 sw=2 et tw=80: */
"use strict";
const WONTDIE_BODY = String.raw`
import signal
import struct
import sys
import time
signal.signal(signal.SIGTERM, signal.SIG_IGN)
def spin():
while True:
try:
signal.pause()
except AttributeError:
time.sleep(5)
while True:
rawlen = sys.stdin.read(4)
if len(rawlen) == 0:
spin()
msglen = struct.unpack('@I', rawlen)[0]
msg = sys.stdin.read(msglen)
sys.stdout.write(struct.pack('@I', msglen))
sys.stdout.write(msg)
`;
const SCRIPTS = [
{
name: "wontdie",
description: "a native app that does not exit when stdin closes or on SIGTERM",
script: WONTDIE_BODY.replace(/^ {2}/gm, ""),
},
];
add_task(function* setup() {
yield setupHosts(SCRIPTS);
});
// Test that an unresponsive native application still gets killed eventually
add_task(function* test_unresponsive_native_app() {
// XXX expose GRACEFUL_SHUTDOWN_TIME as a pref and reduce it
// just for this test?
function background() {
let port = browser.runtime.connectNative("wontdie");
const MSG = "echo me";
// bounce a message to make sure the process actually starts
port.onMessage.addListener(msg => {
browser.test.assertEq(msg, MSG, "Received echoed message");
browser.test.sendMessage("ready");
});
port.postMessage(MSG);
}
let extension = ExtensionTestUtils.loadExtension({
background,
manifest: {
applications: {gecko: {id: ID}},
permissions: ["nativeMessaging"],
},
});
yield extension.startup();
yield extension.awaitMessage("ready");
let procCount = yield getSubprocessCount();
equal(procCount, 1, "subprocess is running");
let exitPromise = waitForSubprocessExit();
yield extension.unload();
yield exitPromise;
procCount = yield getSubprocessCount();
equal(procCount, 0, "subprocess was succesfully killed");
});
|