1
0
Fork 0
firefox/netwerk/test/unit/test_bug412945.js
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

44 lines
960 B
JavaScript

"use strict";
const { HttpServer } = ChromeUtils.importESModule(
"resource://testing-common/httpd.sys.mjs"
);
var httpserv;
function TestListener() {}
TestListener.prototype.onStartRequest = function () {};
TestListener.prototype.onStopRequest = function () {
httpserv.stop(do_test_finished);
};
function run_test() {
httpserv = new HttpServer();
httpserv.registerPathHandler("/bug412945", bug412945);
httpserv.start(-1);
// make request
var channel = NetUtil.newChannel({
uri: "http://localhost:" + httpserv.identity.primaryPort + "/bug412945",
loadUsingSystemPrincipal: true,
});
channel.QueryInterface(Ci.nsIHttpChannel);
channel.requestMethod = "POST";
channel.asyncOpen(new TestListener(), null);
do_test_pending();
}
function bug412945(metadata) {
if (
!metadata.hasHeader("Content-Length") ||
metadata.getHeader("Content-Length") != "0"
) {
do_throw("Content-Length header not found!");
}
}