summaryrefslogtreecommitdiffstats
path: root/netwerk/test/unit/test_bug561042.js
blob: 6bdf4d59a602a2a0f640ec484687ec1c649a4059 (plain)
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
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

"use strict";

const { HttpServer } = ChromeUtils.importESModule(
  "resource://testing-common/httpd.sys.mjs"
);

const SERVER_PORT = 8080;
const baseURL = "http://localhost:" + SERVER_PORT + "/";

var cookie = "";
for (let i = 0; i < 10000; i++) {
  cookie += " big cookie";
}

var listener = {
  onStartRequest(request) {},

  onDataAvailable(request, stream) {},

  onStopRequest(request, status) {
    Assert.equal(status, Cr.NS_OK);
    server.stop(do_test_finished);
  },
};

var server = new HttpServer();
function run_test() {
  server.start(SERVER_PORT);
  server.registerPathHandler("/", function (metadata, response) {
    response.setStatusLine(metadata.httpVersion, 200, "OK");
    response.setHeader("Set-Cookie", "BigCookie=" + cookie, false);
    response.write("Hello world");
  });
  var chan = NetUtil.newChannel({
    uri: baseURL,
    loadUsingSystemPrincipal: true,
  }).QueryInterface(Ci.nsIHttpChannel);
  chan.asyncOpen(listener);
  do_test_pending();
}