summaryrefslogtreecommitdiffstats
path: root/netwerk/test/httpserver/test/test_setstatusline.js
blob: b4749fd8e59dead3bddc9bdfad12522925ee0bb1 (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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
/* -*- 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/. */

// exercise nsIHttpResponse.setStatusLine, ensure its atomicity, and ensure the
// specified behavior occurs if it's not called

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

var srv;

function run_test() {
  srv = createServer();

  srv.registerPathHandler("/no/setstatusline", noSetstatusline);
  srv.registerPathHandler("/http1_0", http1_0);
  srv.registerPathHandler("/http1_1", http1_1);
  srv.registerPathHandler("/invalidVersion", invalidVersion);
  srv.registerPathHandler("/invalidStatus", invalidStatus);
  srv.registerPathHandler("/invalidDescription", invalidDescription);
  srv.registerPathHandler("/crazyCode", crazyCode);
  srv.registerPathHandler("/nullVersion", nullVersion);

  srv.start(-1);

  runHttpTests(tests, testComplete(srv));
}

/** ***********
 * UTILITIES *
 *************/

function checkStatusLine(
  channel,
  httpMaxVer,
  httpMinVer,
  httpCode,
  statusText
) {
  Assert.equal(channel.responseStatus, httpCode);
  Assert.equal(channel.responseStatusText, statusText);

  var respMaj = {},
    respMin = {};
  channel.getResponseVersion(respMaj, respMin);
  Assert.equal(respMaj.value, httpMaxVer);
  Assert.equal(respMin.value, httpMinVer);
}

/** *******
 * TESTS *
 *********/

ChromeUtils.defineLazyGetter(this, "tests", function () {
  return [
    new Test(URL + "/no/setstatusline", null, startNoSetStatusLine, stop),
    new Test(URL + "/http1_0", null, startHttp1_0, stop),
    new Test(URL + "/http1_1", null, startHttp1_1, stop),
    new Test(URL + "/invalidVersion", null, startPassedTrue, stop),
    new Test(URL + "/invalidStatus", null, startPassedTrue, stop),
    new Test(URL + "/invalidDescription", null, startPassedTrue, stop),
    new Test(URL + "/crazyCode", null, startCrazy, stop),
    new Test(URL + "/nullVersion", null, startNullVersion, stop),
  ];
});

// /no/setstatusline
function noSetstatusline() {}
function startNoSetStatusLine(ch) {
  checkStatusLine(ch, 1, 1, 200, "OK");
}
function stop(ch, status) {
  Assert.ok(Components.isSuccessCode(status));
}

// /http1_0
function http1_0(metadata, response) {
  response.setStatusLine("1.0", 200, "OK");
}
function startHttp1_0(ch) {
  checkStatusLine(ch, 1, 0, 200, "OK");
}

// /http1_1
function http1_1(metadata, response) {
  response.setStatusLine("1.1", 200, "OK");
}
function startHttp1_1(ch) {
  checkStatusLine(ch, 1, 1, 200, "OK");
}

// /invalidVersion
function invalidVersion(metadata, response) {
  try {
    response.setStatusLine(" 1.0", 200, "FAILED");
  } catch (e) {
    response.setHeader("Passed", "true", false);
  }
}
function startPassedTrue(ch) {
  checkStatusLine(ch, 1, 1, 200, "OK");
  Assert.equal(ch.getResponseHeader("Passed"), "true");
}

// /invalidStatus
function invalidStatus(metadata, response) {
  try {
    response.setStatusLine("1.0", 1000, "FAILED");
  } catch (e) {
    response.setHeader("Passed", "true", false);
  }
}

// /invalidDescription
function invalidDescription(metadata, response) {
  try {
    response.setStatusLine("1.0", 200, "FAILED\x01");
  } catch (e) {
    response.setHeader("Passed", "true", false);
  }
}

// /crazyCode
function crazyCode(metadata, response) {
  response.setStatusLine("1.1", 617, "Crazy");
}
function startCrazy(ch) {
  checkStatusLine(ch, 1, 1, 617, "Crazy");
}

// /nullVersion
function nullVersion(metadata, response) {
  response.setStatusLine(null, 255, "NULL");
}
function startNullVersion(ch) {
  // currently, this server implementation defaults to 1.1
  checkStatusLine(ch, 1, 1, 255, "NULL");
}