forked from mirrors/gecko-dev
321 lines
8.1 KiB
JavaScript
321 lines
8.1 KiB
JavaScript
/* -*- Mode: indent-tabs-mode: nil; js-indent-level: 2 -*- */
|
|
/* vim: set sts=2 sw=2 et tw=80: */
|
|
"use strict";
|
|
|
|
const { newURI } = Services.io;
|
|
|
|
const server = createHttpServer({ hosts: ["example.com"] });
|
|
server.registerDirectory("/data/", do_get_file("data"));
|
|
|
|
async function test_url_matching({
|
|
manifestVersion = 2,
|
|
allowedOrigins = [],
|
|
checkPermissions,
|
|
expectMatches,
|
|
}) {
|
|
let policy = new WebExtensionPolicy({
|
|
id: "foo@bar.baz",
|
|
mozExtensionHostname: "88fb51cd-159f-4859-83db-7065485bc9b2",
|
|
baseURL: "file:///foo",
|
|
|
|
manifestVersion,
|
|
allowedOrigins: new MatchPatternSet(allowedOrigins),
|
|
localizeCallback() {},
|
|
});
|
|
|
|
let contentScript = new WebExtensionContentScript(policy, {
|
|
checkPermissions,
|
|
|
|
matches: new MatchPatternSet(["http://*.foo.com/bar", "*://bar.com/baz/*"]),
|
|
|
|
excludeMatches: new MatchPatternSet(["*://bar.com/baz/quux"]),
|
|
|
|
includeGlobs: ["*flerg*", "*.com/bar", "*/quux"].map(
|
|
glob => new MatchGlob(glob)
|
|
),
|
|
|
|
excludeGlobs: ["*glorg*"].map(glob => new MatchGlob(glob)),
|
|
});
|
|
|
|
equal(
|
|
expectMatches,
|
|
contentScript.matchesURI(newURI("http://www.foo.com/bar")),
|
|
`Simple matches include should ${expectMatches ? "" : "not "} match.`
|
|
);
|
|
|
|
equal(
|
|
expectMatches,
|
|
contentScript.matchesURI(newURI("https://bar.com/baz/xflergx")),
|
|
`Simple matches include should ${expectMatches ? "" : "not "} match.`
|
|
);
|
|
|
|
ok(
|
|
!contentScript.matchesURI(newURI("https://bar.com/baz/xx")),
|
|
"Failed includeGlobs match pattern should not match"
|
|
);
|
|
|
|
ok(
|
|
!contentScript.matchesURI(newURI("https://bar.com/baz/quux")),
|
|
"Excluded match pattern should not match"
|
|
);
|
|
|
|
ok(
|
|
!contentScript.matchesURI(newURI("https://bar.com/baz/xflergxglorgx")),
|
|
"Excluded match glob should not match"
|
|
);
|
|
}
|
|
|
|
add_task(function test_WebExtensionContentScript_urls_mv2() {
|
|
return test_url_matching({ manifestVersion: 2, expectMatches: true });
|
|
});
|
|
|
|
add_task(function test_WebExtensionContentScript_urls_mv2_checkPermissions() {
|
|
return test_url_matching({
|
|
manifestVersion: 2,
|
|
checkPermissions: true,
|
|
expectMatches: false,
|
|
});
|
|
});
|
|
|
|
add_task(function test_WebExtensionContentScript_urls_mv2_with_permissions() {
|
|
return test_url_matching({
|
|
manifestVersion: 2,
|
|
checkPermissions: true,
|
|
allowedOrigins: ["<all_urls>"],
|
|
expectMatches: true,
|
|
});
|
|
});
|
|
|
|
add_task(function test_WebExtensionContentScript_urls_mv3() {
|
|
// checkPermissions ignored here because it's forced for MV3.
|
|
return test_url_matching({
|
|
manifestVersion: 3,
|
|
checkPermissions: false,
|
|
expectMatches: false,
|
|
});
|
|
});
|
|
|
|
add_task(function test_WebExtensionContentScript_mv3_all_urls() {
|
|
return test_url_matching({
|
|
manifestVersion: 3,
|
|
allowedOrigins: ["<all_urls>"],
|
|
expectMatches: true,
|
|
});
|
|
});
|
|
|
|
add_task(function test_WebExtensionContentScript_mv3_wildcards() {
|
|
return test_url_matching({
|
|
manifestVersion: 3,
|
|
allowedOrigins: ["*://*.foo.com/*", "*://*.bar.com/*"],
|
|
expectMatches: true,
|
|
});
|
|
});
|
|
|
|
add_task(function test_WebExtensionContentScript_mv3_specific() {
|
|
return test_url_matching({
|
|
manifestVersion: 3,
|
|
allowedOrigins: ["http://www.foo.com/*", "https://bar.com/*"],
|
|
expectMatches: true,
|
|
});
|
|
});
|
|
|
|
add_task(function test_WebExtensionContentScript_restricted() {
|
|
let tests = [
|
|
{
|
|
manifestVersion: 2,
|
|
permissions: [],
|
|
expect: false,
|
|
},
|
|
{
|
|
manifestVersion: 2,
|
|
permissions: ["mozillaAddons"],
|
|
expect: true,
|
|
},
|
|
{
|
|
manifestVersion: 3,
|
|
permissions: [],
|
|
expect: false,
|
|
},
|
|
{
|
|
manifestVersion: 3,
|
|
permissions: ["mozillaAddons"],
|
|
expect: true,
|
|
},
|
|
];
|
|
|
|
for (let { manifestVersion, permissions, expect } of tests) {
|
|
let policy = new WebExtensionPolicy({
|
|
id: "foo@bar.baz",
|
|
mozExtensionHostname: "88fb51cd-159f-4859-83db-7065485bc9b2",
|
|
baseURL: "file:///foo",
|
|
|
|
manifestVersion,
|
|
permissions,
|
|
allowedOrigins: new MatchPatternSet(["<all_urls>"]),
|
|
localizeCallback() {},
|
|
});
|
|
let contentScript = new WebExtensionContentScript(policy, {
|
|
checkPermissions: true,
|
|
matches: new MatchPatternSet(["<all_urls>"]),
|
|
});
|
|
|
|
// AMO is on the extensions.webextensions.restrictedDomains list.
|
|
equal(
|
|
expect,
|
|
contentScript.matchesURI(newURI("https://addons.mozilla.org/foo")),
|
|
`Expect extension with [${permissions}] to ${expect ? "" : "not"} match`
|
|
);
|
|
}
|
|
});
|
|
|
|
async function test_frame_matching(meta) {
|
|
if (AppConstants.platform == "linux") {
|
|
// The windowless browser currently does not load correctly on Linux on
|
|
// infra.
|
|
return;
|
|
}
|
|
|
|
let baseURL = `http://example.com/data`;
|
|
let urls = {
|
|
topLevel: `${baseURL}/file_toplevel.html`,
|
|
iframe: `${baseURL}/file_iframe.html`,
|
|
srcdoc: "about:srcdoc",
|
|
aboutBlank: "about:blank",
|
|
};
|
|
|
|
let contentPage = await ExtensionTestUtils.loadContentPage(urls.topLevel);
|
|
|
|
let tests = [
|
|
{
|
|
matches: ["http://example.com/data/*"],
|
|
contentScript: {},
|
|
topLevel: true,
|
|
iframe: false,
|
|
aboutBlank: false,
|
|
srcdoc: false,
|
|
},
|
|
|
|
{
|
|
matches: ["http://example.com/data/*"],
|
|
contentScript: {
|
|
frameID: 0,
|
|
},
|
|
topLevel: true,
|
|
iframe: false,
|
|
aboutBlank: false,
|
|
srcdoc: false,
|
|
},
|
|
|
|
{
|
|
matches: ["http://example.com/data/*"],
|
|
contentScript: {
|
|
allFrames: true,
|
|
},
|
|
topLevel: true,
|
|
iframe: true,
|
|
aboutBlank: false,
|
|
srcdoc: false,
|
|
},
|
|
|
|
{
|
|
matches: ["http://example.com/data/*"],
|
|
contentScript: {
|
|
allFrames: true,
|
|
matchAboutBlank: true,
|
|
},
|
|
topLevel: true,
|
|
iframe: true,
|
|
aboutBlank: true,
|
|
srcdoc: true,
|
|
},
|
|
|
|
{
|
|
matches: ["http://foo.com/data/*"],
|
|
contentScript: {
|
|
allFrames: true,
|
|
matchAboutBlank: true,
|
|
},
|
|
topLevel: false,
|
|
iframe: false,
|
|
aboutBlank: false,
|
|
srcdoc: false,
|
|
},
|
|
];
|
|
|
|
// matchesWindowGlobal tests against content frames
|
|
await contentPage.spawn({ tests, urls, meta }, args => {
|
|
let { manifestVersion = 2, allowedOrigins = [], expectMatches } = args.meta;
|
|
|
|
this.windows = new Map();
|
|
this.windows.set(this.content.location.href, this.content);
|
|
for (let c of Array.from(this.content.frames)) {
|
|
this.windows.set(c.location.href, c);
|
|
}
|
|
this.policy = new WebExtensionPolicy({
|
|
id: "foo@bar.baz",
|
|
mozExtensionHostname: "88fb51cd-159f-4859-83db-7065485bc9b2",
|
|
baseURL: "file:///foo",
|
|
|
|
manifestVersion,
|
|
allowedOrigins: new MatchPatternSet(allowedOrigins),
|
|
localizeCallback() {},
|
|
});
|
|
|
|
let tests = args.tests.map(t => {
|
|
t.contentScript.matches = new MatchPatternSet(t.matches);
|
|
t.script = new WebExtensionContentScript(this.policy, t.contentScript);
|
|
return t;
|
|
});
|
|
for (let [i, test] of tests.entries()) {
|
|
for (let [frame, url] of Object.entries(args.urls)) {
|
|
let should = test[frame] ? "should" : "should not";
|
|
let wgc = this.windows.get(url).windowGlobalChild;
|
|
Assert.equal(
|
|
test.script.matchesWindowGlobal(wgc),
|
|
test[frame] && expectMatches,
|
|
`Script ${i} ${should} match the ${frame} frame`
|
|
);
|
|
}
|
|
}
|
|
});
|
|
|
|
await contentPage.close();
|
|
}
|
|
|
|
add_task(function test_WebExtensionContentScript_frames_mv2() {
|
|
return test_frame_matching({
|
|
manifestVersion: 2,
|
|
expectMatches: true,
|
|
});
|
|
});
|
|
|
|
add_task(function test_WebExtensionContentScript_frames_mv3() {
|
|
return test_frame_matching({
|
|
manifestVersion: 3,
|
|
expectMatches: false,
|
|
});
|
|
});
|
|
|
|
add_task(function test_WebExtensionContentScript_frames_mv3_all_urls() {
|
|
return test_frame_matching({
|
|
manifestVersion: 3,
|
|
allowedOrigins: ["<all_urls>"],
|
|
expectMatches: true,
|
|
});
|
|
});
|
|
|
|
add_task(function test_WebExtensionContentScript_frames_mv3_wildcards() {
|
|
return test_frame_matching({
|
|
manifestVersion: 3,
|
|
allowedOrigins: ["*://*.example.com/*"],
|
|
expectMatches: true,
|
|
});
|
|
});
|
|
|
|
add_task(function test_WebExtensionContentScript_frames_mv3_specific() {
|
|
return test_frame_matching({
|
|
manifestVersion: 3,
|
|
allowedOrigins: ["http://example.com/*"],
|
|
expectMatches: true,
|
|
});
|
|
});
|