mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-23 21:01:08 +00:00
d87184a011
Differential Revision: https://phabricator.services.mozilla.com/D202975
44 lines
1.1 KiB
JavaScript
44 lines
1.1 KiB
JavaScript
"use strict";
|
|
|
|
const { HttpServer } = ChromeUtils.importESModule(
|
|
"resource://testing-common/httpd.sys.mjs"
|
|
);
|
|
|
|
var server;
|
|
const BUGID = "331825";
|
|
|
|
function TestListener() {}
|
|
TestListener.prototype.onStartRequest = function () {};
|
|
TestListener.prototype.onStopRequest = function (request) {
|
|
var channel = request.QueryInterface(Ci.nsIHttpChannel);
|
|
Assert.equal(channel.responseStatus, 304);
|
|
|
|
server.stop(do_test_finished);
|
|
};
|
|
|
|
function run_test() {
|
|
// start server
|
|
server = new HttpServer();
|
|
|
|
server.registerPathHandler("/bug" + BUGID, bug331825);
|
|
|
|
server.start(-1);
|
|
|
|
// make request
|
|
var channel = NetUtil.newChannel({
|
|
uri: "http://localhost:" + server.identity.primaryPort + "/bug" + BUGID,
|
|
loadUsingSystemPrincipal: true,
|
|
});
|
|
|
|
channel.QueryInterface(Ci.nsIHttpChannel);
|
|
channel.setRequestHeader("If-None-Match", "foobar", false);
|
|
channel.asyncOpen(new TestListener());
|
|
|
|
do_test_pending();
|
|
}
|
|
|
|
// PATH HANDLER FOR /bug331825
|
|
function bug331825(metadata, response) {
|
|
response.setStatusLine(metadata.httpVersion, 304, "Not Modified");
|
|
}
|