summaryrefslogtreecommitdiffstats
path: root/devtools/client/webconsole/test/browser/sjs_slow-response-test-server.sjs
blob: d7b85efad46daf57342de51131d064ee6dba2540 (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
/* 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 = new Map(
    request.queryString
      .replace("?", "")
      .split("&")
      .map(s => s.split("="))
  );
  const delay = params.has("delay") ? params.get("delay") : 300;
  const status = params.has("status") ? params.get("status") : 200;

  let timer = Cc["@mozilla.org/timer;1"].createInstance(Ci.nsITimer);
  timer.initWithCallback(
    () => {
      // to avoid garbage collection
      timer = null;
      response.setStatusLine(request.httpVersion, status, "OK");
      response.setHeader("Content-Type", "text/plain", false);
      response.setHeader(
        "Set-Cookie",
        "foo=bar; Max-Age=10; HttpOnly; SameSite=Lax",
        true
      );
      response.write("Some response data");
      response.finish();
    },
    delay,
    Ci.nsITimer.TYPE_ONE_SHOT
  );
}