39 lines
1 KiB
JavaScript
39 lines
1 KiB
JavaScript
"use strict";
|
|
/* global NodeHTTPServer, NodeHTTPProxyServer*/
|
|
|
|
// We don't normally allow localhost channels to be proxied, but this
|
|
// is easier than updating all the certs and/or domains.
|
|
Services.prefs.setBoolPref("network.proxy.allow_hijacking_localhost", true);
|
|
registerCleanupFunction(() => {
|
|
Services.prefs.clearUserPref("network.proxy.allow_hijacking_localhost");
|
|
});
|
|
|
|
add_task(async function run_test() {
|
|
let proxy = new NodeHTTPProxyServer();
|
|
await proxy.start();
|
|
registerCleanupFunction(async () => {
|
|
await proxy.stop();
|
|
});
|
|
|
|
let server = new NodeHTTPServer();
|
|
|
|
await server.start();
|
|
registerCleanupFunction(async () => {
|
|
await server.stop();
|
|
});
|
|
|
|
await server.registerPathHandler("/test", (req, resp) => {
|
|
let content = "content";
|
|
resp.writeHead(200);
|
|
resp.end(content);
|
|
});
|
|
|
|
do_await_remote_message("start-test").then(() => {
|
|
do_send_remote_message(
|
|
"start-test-done",
|
|
`http://localhost:${server.port()}/test`
|
|
);
|
|
});
|
|
|
|
run_test_in_child("child_is_proxy_used.js");
|
|
});
|