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
94
95
96
|
const { NetUtil } = ChromeUtils.importESModule(
"resource://gre/modules/NetUtil.sys.mjs"
);
const URI = Services.io.newURI("http://example.org/");
const { COOKIE_CHANGED, COOKIE_ADDED } = Ci.nsICookieNotification;
function run_test() {
// Allow all cookies.
Services.prefs.setIntPref("network.cookie.cookieBehavior", 0);
// Clear cookies.
Services.cookies.removeAll();
// Add a new cookie.
setCookie("foo=bar", {
type: COOKIE_ADDED,
isSession: true,
isSecure: false,
isHttpOnly: false,
});
// Update cookie with isHttpOnly=true.
setCookie("foo=bar; HttpOnly", {
type: COOKIE_CHANGED,
isSession: true,
isSecure: false,
isHttpOnly: true,
});
// Update cookie with isSecure=true.
setCookie("foo=bar; Secure", {
type: COOKIE_CHANGED,
isSession: true,
isSecure: true,
isHttpOnly: false,
});
// Update cookie with isSession=false.
let expiry = new Date();
expiry.setUTCFullYear(expiry.getUTCFullYear() + 2);
setCookie(`foo=bar; Expires=${expiry.toGMTString()}`, {
type: COOKIE_CHANGED,
isSession: false,
isSecure: false,
isHttpOnly: false,
});
// Reset cookie.
setCookie("foo=bar", {
type: COOKIE_CHANGED,
isSession: true,
isSecure: false,
isHttpOnly: false,
});
}
function setCookie(value, expected) {
function setCookieInternal(valueInternal, expectedInternal = null) {
function observer(subject) {
if (!expectedInternal) {
do_throw("no notification expected");
return;
}
let notification = subject.QueryInterface(Ci.nsICookieNotification);
// Check we saw the right notification.
Assert.equal(notification.action, expectedInternal.type);
// Check cookie details.
let cookie = notification.cookie.QueryInterface(Ci.nsICookie);
Assert.equal(cookie.isSession, expectedInternal.isSession);
Assert.equal(cookie.isSecure, expectedInternal.isSecure);
Assert.equal(cookie.isHttpOnly, expectedInternal.isHttpOnly);
}
Services.obs.addObserver(observer, "cookie-changed");
let channel = NetUtil.newChannel({
uri: URI,
loadUsingSystemPrincipal: true,
contentPolicyType: Ci.nsIContentPolicy.TYPE_DOCUMENT,
});
Services.cookies.setCookieStringFromHttp(URI, valueInternal, channel);
Services.obs.removeObserver(observer, "cookie-changed");
}
// Check that updating/inserting the cookie works.
setCookieInternal(value, expected);
// Check that we ignore identical cookies.
setCookieInternal(value);
}
|