fune/netwerk/cookie/test/unit/test_parser_0001.js
Natalia Csoregi e87ecf485e Backed out 3 changesets (bug 1834222, bug 1834176) for causing RemoteProcessMonitor failures. CLOSED TREE
Backed out changeset 346d3a1568dd (bug 1834222)
Backed out changeset ea1d8b634bfc (bug 1834176)
Backed out changeset 74d1880272d3 (bug 1834176)
2023-05-24 04:29:45 +03:00

30 lines
911 B
JavaScript

const { NetUtil } = ChromeUtils.import("resource://gre/modules/NetUtil.jsm");
function inChildProcess() {
return Services.appinfo.processType != Ci.nsIXULRuntime.PROCESS_TYPE_DEFAULT;
}
function run_test() {
// Allow all cookies if the pref service is available in this process.
if (!inChildProcess()) {
Services.prefs.setIntPref("network.cookie.cookieBehavior", 0);
Services.prefs.setBoolPref(
"network.cookieJarSettings.unblocked_for_testing",
true
);
}
let uri = NetUtil.newURI("http://example.org/");
let channel = NetUtil.newChannel({
uri,
loadUsingSystemPrincipal: true,
contentPolicyType: Ci.nsIContentPolicy.TYPE_DOCUMENT,
});
let set = "foo=bar";
Services.cookies.setCookieStringFromHttp(uri, set, channel);
let expected = "foo=bar";
let actual = Services.cookies.getCookieStringFromHttp(uri, channel);
Assert.equal(actual, expected);
}