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
97
98
99
100
101
102
|
"use strict";
let server = createHttpServer({ hosts: ["example.com"] });
createAppInfo("xpcshell@tests.mozilla.org", "XPCShell", "45", "45");
Services.prefs.setBoolPref("extensions.getAddons.cache.enabled", true);
Services.prefs.setBoolPref(PREF_EM_CHECK_UPDATE_SECURITY, false);
// Tests that cookies are not sent with background requests.
add_task(async function test_cookies() {
const ID = "bg-cookies@tests.mozilla.org";
// Add a new handler to the test web server for the given file path.
// The handler appends the incoming requests to `results` and replies
// with the provided body.
function makeHandler(path, results, body) {
server.registerPathHandler(path, (request, response) => {
results.push(request);
response.write(body);
});
}
let gets = [];
makeHandler("/get", gets, JSON.stringify({ results: [] }));
Services.prefs.setCharPref(PREF_GETADDONS_BYIDS, "http://example.com/get");
let updates = [];
makeHandler(
"/update",
updates,
JSON.stringify({
addons: {
[ID]: {
updates: [
{
version: "2.0",
update_link: "http://example.com/update.xpi",
applications: {
gecko: {},
},
},
],
},
},
})
);
let xpiFetches = [];
makeHandler("/update.xpi", xpiFetches, "");
const COOKIE = "test";
// cookies.add() takes a time in seconds
let expiration = Date.now() / 1000 + 60 * 60;
Services.cookies.add(
"example.com",
"/",
COOKIE,
"testing",
false,
false,
false,
expiration,
{},
Ci.nsICookie.SAMESITE_NONE,
Ci.nsICookie.SCHEME_HTTP
);
await promiseStartupManager();
let addon = await promiseInstallWebExtension({
manifest: {
version: "1.0",
browser_specific_settings: {
gecko: {
id: ID,
update_url: "http://example.com/update",
},
},
},
});
equal(gets.length, 1, "Saw one addon metadata request");
equal(gets[0].hasHeader("Cookie"), false, "Metadata request has no cookies");
await Promise.all([
AddonTestUtils.promiseInstallEvent("onDownloadFailed"),
AddonManagerPrivate.backgroundUpdateCheck(),
]);
equal(updates.length, 1, "Saw one update check request");
equal(updates[0].hasHeader("Cookie"), false, "Update request has no cookies");
equal(xpiFetches.length, 1, "Saw one request for updated xpi");
equal(
xpiFetches[0].hasHeader("Cookie"),
false,
"Request for updated XPI has no cookies"
);
await addon.uninstall();
});
|