Backed out changeset 577158be08e8 (bug 1290598)

This commit is contained in:
Carsten "Tomcat" Book 2016-08-03 15:12:29 +02:00
Родитель 6a26598a10
Коммит f8a2c19083
3 изменённых файлов: 70 добавлений и 82 удалений

Просмотреть файл

@ -9,4 +9,3 @@ support-files =
[test_ext_native_messaging.js]
[test_ext_native_messaging_perf.js]
[test_ext_native_messaging_unresponsive.js]

Просмотреть файл

@ -34,6 +34,33 @@ const INFO_BODY = String.raw`
sys.exit(0)
`;
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 STDERR_LINES = ["hello stderr", "this should be a separate line"];
let STDERR_MSG = STDERR_LINES.join("\\n");
@ -53,6 +80,11 @@ const SCRIPTS = [
description: "a native app that gives some info about how it was started",
script: INFO_BODY.replace(/^ {2}/gm, ""),
},
{
name: "wontdie",
description: "a native app that does not exit when stdin closes or on SIGTERM",
script: WONTDIE_BODY.replace(/^ {2}/gm, ""),
},
{
name: "stderr",
description: "a native app that writes to stderr and then exits",
@ -431,6 +463,44 @@ add_task(function* test_child_process() {
yield exitPromise;
});
// 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: {
permissions: ["nativeMessaging"],
},
}, ID);
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");
});
add_task(function* test_stderr() {
function background() {
let port = browser.runtime.connectNative("stderr");

Просмотреть файл

@ -1,81 +0,0 @@
/* -*- 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: {
permissions: ["nativeMessaging"],
},
}, ID);
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");
});