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
|
/* 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";
registerCleanupFunction(async () => {
http3_clear_prefs();
});
let httpsUri;
add_task(async function pre_setup() {
let h2Port = Services.env.get("MOZHTTP2_PORT");
Assert.notEqual(h2Port, null);
Assert.notEqual(h2Port, "");
httpsUri = "https://foo.example.com:" + h2Port + "/";
Services.prefs.setBoolPref("network.http.http3.support_version1", true);
});
add_task(async function setup() {
await http3_setup_tests("h3");
});
function chanPromise(chan, listener) {
return new Promise(resolve => {
function finish() {
resolve();
}
listener.finish = finish;
chan.asyncOpen(listener);
});
}
function makeH2Chan() {
let chan = NetUtil.newChannel({
uri: httpsUri,
loadUsingSystemPrincipal: true,
}).QueryInterface(Ci.nsIHttpChannel);
chan.loadFlags = Ci.nsIChannel.LOAD_INITIAL_DOCUMENT_URI;
return chan;
}
let Http3Listener = function () {};
Http3Listener.prototype = {
version1enabled: "",
onStartRequest: function testOnStartRequest(request) {},
onDataAvailable: function testOnDataAvailable(request, stream, off, cnt) {
read_stream(stream, cnt);
},
onStopRequest: function testOnStopRequest(request, status) {
let httpVersion = "";
try {
httpVersion = request.protocolVersion;
} catch (e) {}
if (this.version1enabled) {
Assert.equal(httpVersion, "h3");
} else {
Assert.equal(httpVersion, "h2");
}
this.finish();
},
};
add_task(async function test_version1_enabled_1() {
Services.prefs.setBoolPref("network.http.http3.support_version1", true);
let listener = new Http3Listener();
listener.version1enabled = true;
let chan = makeH2Chan("https://foo.example.com/");
await chanPromise(chan, listener);
});
add_task(async function test_version1_disabled() {
Services.obs.notifyObservers(null, "net:cancel-all-connections");
Services.prefs.setBoolPref("network.http.http3.support_version1", false);
let listener = new Http3Listener();
listener.version1enabled = false;
let chan = makeH2Chan("https://foo.example.com/");
await chanPromise(chan, listener);
});
add_task(async function test_version1_enabled_2() {
Services.obs.notifyObservers(null, "net:cancel-all-connections");
Services.prefs.setBoolPref("network.http.http3.support_version1", true);
let listener = new Http3Listener();
listener.version1enabled = true;
let chan = makeH2Chan("https://foo.example.com/");
await chanPromise(chan, listener);
});
|