blob: 84915aa74897238dcb44fa95b35f4600477c74e6 (
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
|
/* 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/. */
"use strict";
const { HttpServer } = ChromeUtils.import("resource://testing-common/httpd.js");
function makeChan(url) {
return NetUtil.newChannel({
uri: url,
loadUsingSystemPrincipal: true,
}).QueryInterface(Ci.nsIHttpChannel);
}
let body = "abcd";
function request_handler1(metadata, response) {
response.seizePower();
response.write("HTTP/1.1 200 OK\r\n");
response.write("Content-Type: text/plain\r\n");
response.write("X-header-first: FIRSTVALUE\r\n");
response.write("X-header-second: 1; second\r\n");
response.write(`Content-Length: ${body.length}\r\n`);
response.write("\r\n");
response.write(body);
response.finish();
}
// This handler is for obs-fold
// The line that contains X-header-second starts with a space. As a consequence
// it gets folded into the previous line.
function request_handler2(metadata, response) {
response.seizePower();
response.write("HTTP/1.1 200 OK\r\n");
response.write("Content-Type: text/plain\r\n");
response.write("X-header-first: FIRSTVALUE\r\n");
// Note the space at the begining of the line
response.write(" X-header-second: 1; second\r\n");
response.write(`Content-Length: ${body.length}\r\n`);
response.write("\r\n");
response.write(body);
response.finish();
}
add_task(async function test() {
let http_server = new HttpServer();
http_server.registerPathHandler("/test1", request_handler1);
http_server.registerPathHandler("/test2", request_handler2);
http_server.start(-1);
const port = http_server.identity.primaryPort;
let chan1 = makeChan(`http://localhost:${port}/test1`);
await new Promise(resolve => {
chan1.asyncOpen(new ChannelListener(resolve));
});
equal(chan1.getResponseHeader("X-header-first"), "FIRSTVALUE");
equal(chan1.getResponseHeader("X-header-second"), "1; second");
let chan2 = makeChan(`http://localhost:${port}/test2`);
await new Promise(resolve => {
chan2.asyncOpen(new ChannelListener(resolve));
});
equal(
chan2.getResponseHeader("X-header-first"),
"FIRSTVALUE X-header-second: 1; second"
);
Assert.throws(
() => chan2.getResponseHeader("X-header-second"),
/NS_ERROR_NOT_AVAILABLE/
);
await new Promise(resolve => http_server.stop(resolve));
});
|