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
|
/* 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/. */
Services.prefs.setBoolPref("network.http.debug-observations", true);
registerCleanupFunction(function () {
Services.prefs.clearUserPref("network.http.debug-observations");
});
// Test steps:
// 1. Load file_link_header.sjs
// 2.`<link rel="preconnect" href="https://localhost">` is in
// file_link_header.sjs, so we will create a speculative connection.
// 3. We use "speculative-connect-request" topic to observe whether the
// speculative connection is attempted.
// 4. Finally, we check if the observed host and partition key are the same and
// as the expected.
add_task(async function test_link_preconnect() {
let requestUrl = `https://example.com/browser/netwerk/test/browser/file_link_header.sjs`;
let observed = "";
let observer = {
QueryInterface: ChromeUtils.generateQI(["nsIObserver"]),
observe(aSubject, aTopic, aData) {
if (aTopic == "speculative-connect-request") {
Services.obs.removeObserver(observer, "speculative-connect-request");
observed = aData;
}
},
};
Services.obs.addObserver(observer, "speculative-connect-request");
await BrowserTestUtils.withNewTab(
{
gBrowser,
url: requestUrl,
waitForLoad: true,
},
async function () {}
);
// The hash key should be like:
// ".S........[tlsflags0x00000000]localhost:443^partitionKey=%28https%2Cexample.com%29"
// Extracting "localhost:443"
let hostPortRegex = /\[.*\](.*?)\^/;
let hostPortMatch = hostPortRegex.exec(observed);
let hostPort = hostPortMatch ? hostPortMatch[1] : "";
// Extracting "%28https%2Cexample.com%29"
let partitionKeyRegex = /\^partitionKey=(.*)$/;
let partitionKeyMatch = partitionKeyRegex.exec(observed);
let partitionKey = partitionKeyMatch ? partitionKeyMatch[1] : "";
Assert.equal(hostPort, "localhost:443");
Assert.equal(partitionKey, "%28https%2Cexample.com%29");
});
|