summaryrefslogtreecommitdiffstats
path: root/netwerk/test/unit/test_channel_close.js
blob: 756675e10184c6ddc5d6b34b8d095d8a6b2a87f8 (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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
"use strict";

const { HttpServer } = ChromeUtils.import("resource://testing-common/httpd.js");

var httpProtocolHandler = Cc[
  "@mozilla.org/network/protocol;1?name=http"
].getService(Ci.nsIHttpProtocolHandler);

XPCOMUtils.defineLazyGetter(this, "URL", function () {
  return "http://localhost:" + httpserver.identity.primaryPort;
});

var httpserver = new HttpServer();
var testpath = "/simple";
var httpbody = "0123456789";

var live_channels = [];

function run_test() {
  httpserver.registerPathHandler(testpath, serverHandler);
  httpserver.start(-1);

  httpProtocolHandler.EnsureHSTSDataReady().then(function () {
    var local_channel;

    // Opened channel that has no remaining references on shutdown
    local_channel = setupChannel(testpath);
    local_channel.asyncOpen(new ChannelListener(checkRequest, local_channel));

    // Opened channel that has no remaining references after being opened
    setupChannel(testpath).asyncOpen(new ChannelListener(function () {}, null));

    // Unopened channel that has remaining references on shutdown
    live_channels.push(setupChannel(testpath));

    // Opened channel that has remaining references on shutdown
    live_channels.push(setupChannel(testpath));
    live_channels[1].asyncOpen(
      new ChannelListener(checkRequestFinish, live_channels[1])
    );
  });

  do_test_pending();
}

function setupChannel(path) {
  var chan = NetUtil.newChannel({
    uri: URL + path,
    loadUsingSystemPrincipal: true,
  });
  chan.QueryInterface(Ci.nsIHttpChannel);
  chan.requestMethod = "GET";
  return chan;
}

function serverHandler(metadata, response) {
  response.setHeader("Content-Type", "text/plain", false);
  response.bodyOutputStream.write(httpbody, httpbody.length);
}

function checkRequest(request, data, context) {
  Assert.equal(data, httpbody);
}

function checkRequestFinish(request, data, context) {
  checkRequest(request, data, context);
  httpserver.stop(do_test_finished);
}