summaryrefslogtreecommitdiffstats
path: root/netwerk/test/httpserver/test/test_qi.js
blob: ecd376afc70ba3ebef17b8154136e9278a3a64c7 (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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
/* vim:set ts=2 sw=2 sts=2 et: */
/* 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/. */
/* eslint-disable no-control-regex */

/*
 * Verify the presence of explicit QueryInterface methods on XPCOM objects
 * exposed by httpd.js, rather than allowing QueryInterface to be implicitly
 * created by XPConnect.
 */

XPCOMUtils.defineLazyGetter(this, "tests", function () {
  return [
    new Test(
      "http://localhost:" + srv.identity.primaryPort + "/test",
      null,
      start_test,
      null
    ),
    new Test(
      "http://localhost:" + srv.identity.primaryPort + "/sjs/qi.sjs",
      null,
      start_sjs_qi,
      null
    ),
  ];
});

var srv;

function run_test() {
  srv = createServer();

  try {
    srv.identity.QueryInterface(Ci.nsIHttpServerIdentity);
  } catch (e) {
    var exstr = ("" + e).split(/[\x09\x20-\x7f\x81-\xff]+/)[0];
    do_throw("server identity didn't QI: " + exstr);
    return;
  }

  srv.registerPathHandler("/test", testHandler);
  srv.registerDirectory("/", do_get_file("data/"));
  srv.registerContentType("sjs", "sjs");
  srv.start(-1);

  runHttpTests(tests, testComplete(srv));
}

// TEST DATA

function start_test(ch) {
  Assert.equal(ch.responseStatusText, "QI Tests Passed");
  Assert.equal(ch.responseStatus, 200);
}

function start_sjs_qi(ch) {
  Assert.equal(ch.responseStatusText, "SJS QI Tests Passed");
  Assert.equal(ch.responseStatus, 200);
}

function testHandler(request, response) {
  var exstr;
  var qid;

  response.setStatusLine(request.httpVersion, 500, "FAIL");

  var passed = false;
  try {
    qid = request.QueryInterface(Ci.nsIHttpRequest);
    passed = qid === request;
  } catch (e) {
    exstr = ("" + e).split(/[\x09\x20-\x7f\x81-\xff]+/)[0];
    response.setStatusLine(
      request.httpVersion,
      500,
      "request doesn't QI: " + exstr
    );
    return;
  }
  if (!passed) {
    response.setStatusLine(request.httpVersion, 500, "request QI'd wrongly?");
    return;
  }

  passed = false;
  try {
    qid = response.QueryInterface(Ci.nsIHttpResponse);
    passed = qid === response;
  } catch (e) {
    exstr = ("" + e).split(/[\x09\x20-\x7f\x81-\xff]+/)[0];
    response.setStatusLine(
      request.httpVersion,
      500,
      "response doesn't QI: " + exstr
    );
    return;
  }
  if (!passed) {
    response.setStatusLine(request.httpVersion, 500, "response QI'd wrongly?");
    return;
  }

  response.setStatusLine(request.httpVersion, 200, "QI Tests Passed");
}