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
|
/* 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";
// simulate user initiated loads by entering the URL in the URL-bar code based on
// https://searchfox.org/mozilla-central/rev/5644fae86d5122519a0e34ee03117c88c6ed9b47/browser/components/urlbar/tests/browser/browser_enter.js
ChromeUtils.defineESModuleGetters(this, {
UrlbarTestUtils: "resource://testing-common/UrlbarTestUtils.sys.mjs",
});
const {
request_count_checking,
test_hint_preload_internal,
test_hint_preload,
} = ChromeUtils.importESModule(
"resource://testing-common/early_hint_preload_test_helper.sys.mjs"
);
const START_VALUE =
"https://example.com/browser/netwerk/test/browser/early_hint_asset_html.sjs?as=style&hinted=1";
add_setup(async function () {
await SpecialPowers.pushPrefEnv({
set: [["browser.urlbar.suggest.quickactions", false]],
});
});
Services.prefs.setBoolPref("network.early-hints.enabled", true);
// bug 1780822
add_task(async function user_initiated_load() {
// reset the count
let headers = new Headers();
headers.append("X-Early-Hint-Count-Start", "");
await fetch(
"https://example.com/browser/netwerk/test/browser/early_hint_pixel_count.sjs",
{ headers }
);
info("Simple user initiated load");
let tab = await BrowserTestUtils.openNewForegroundTab(gBrowser);
// under normal test conditions using the systemPrincipal as loadingPrincipal
// doesn't elicit a crash, changing the behavior for this test:
// https://searchfox.org/mozilla-central/rev/5644fae86d5122519a0e34ee03117c88c6ed9b47/dom/security/nsContentSecurityManager.cpp#1149-1150
Services.prefs.setBoolPref(
"security.disallow_non_local_systemprincipal_in_tests",
true
);
gURLBar.value = START_VALUE;
gURLBar.focus();
EventUtils.synthesizeKey("KEY_Enter");
await BrowserTestUtils.browserLoaded(gBrowser.selectedBrowser);
// reset the config option
Services.prefs.clearUserPref(
"security.disallow_non_local_systemprincipal_in_tests"
);
// Check url bar and selected tab.
is(
gURLBar.value,
UrlbarTestUtils.trimURL(START_VALUE),
"Urlbar should preserve the value on return keypress"
);
is(gBrowser.selectedTab, tab, "New URL was loaded in the current tab");
let gotRequestCount = await fetch(
"https://example.com/browser/netwerk/test/browser/early_hint_pixel_count.sjs"
).then(response => response.json());
let expectedRequestCount = { hinted: 1, normal: 0 };
await request_count_checking(
"test_preload_user_initiated",
gotRequestCount,
expectedRequestCount
);
// Cleanup.
BrowserTestUtils.removeTab(gBrowser.selectedTab);
});
|