summaryrefslogtreecommitdiffstats
path: root/devtools/client/netmonitor/test/sjs_sorting-test-server.sjs
blob: 98cf2328611adbf30821a6c43342a772ccdeca3e (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
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";

function handleRequest(request, response) {
  response.processAsync();

  const params = request.queryString.split("&");
  const index = params.filter(s => s.includes("index="))[0].split("=")[1];

  let timer = Cc["@mozilla.org/timer;1"].createInstance(Ci.nsITimer);
  timer.initWithCallback(
    () => {
      // to avoid garbage collection
      timer = null;
      response.setStatusLine(
        request.httpVersion,
        index == 1 ? 101 : index * 100,
        "Meh"
      );

      response.setHeader(
        "Cache-Control",
        "no-cache, no-store, must-revalidate"
      );
      response.setHeader("Pragma", "no-cache");
      response.setHeader("Expires", "0");

      response.setHeader("Content-Type", "text/" + index, false);
      response.write(new Array(index * 10).join(index)); // + 0.01 KB
      response.finish();
    },
    10,
    Ci.nsITimer.TYPE_ONE_SHOT
  ); // Make sure this request takes a few ms.
}