Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

/* Any copyright is dedicated to the Public Domain.
function check_enumerator(principal, permissions) {
let perms = Services.perms.getAllForPrincipal(principal);
for (let [type, capability] of permissions) {
let perm = perms.shift();
Assert.ok(perm != null);
Assert.equal(perm.type, type);
Assert.equal(perm.capability, capability);
Assert.equal(perm.expireType, Services.perms.EXPIRE_NEVER);
}
Assert.ok(!perms.length);
}
function run_test() {
let pm = Services.perms;
let principal =
Services.scriptSecurityManager.createContentPrincipalFromOrigin(
);
let subPrincipal =
Services.scriptSecurityManager.createContentPrincipalFromOrigin(
);
check_enumerator(principal, []);
pm.addFromPrincipal(principal, "test/getallforuri", pm.ALLOW_ACTION);
check_enumerator(principal, [["test/getallforuri", pm.ALLOW_ACTION]]);
// check that uris are matched exactly
check_enumerator(subPrincipal, []);
pm.addFromPrincipal(subPrincipal, "test/getallforuri", pm.PROMPT_ACTION);
pm.addFromPrincipal(subPrincipal, "test/getallforuri2", pm.DENY_ACTION);
check_enumerator(subPrincipal, [
["test/getallforuri", pm.PROMPT_ACTION],
["test/getallforuri2", pm.DENY_ACTION],
]);
// check that the original uri list has not changed
check_enumerator(principal, [["test/getallforuri", pm.ALLOW_ACTION]]);
// check that UNKNOWN_ACTION permissions are ignored
pm.addFromPrincipal(principal, "test/getallforuri2", pm.UNKNOWN_ACTION);
pm.addFromPrincipal(principal, "test/getallforuri3", pm.DENY_ACTION);
check_enumerator(principal, [
["test/getallforuri", pm.ALLOW_ACTION],
["test/getallforuri3", pm.DENY_ACTION],
]);
// check that permission updates are reflected
pm.addFromPrincipal(principal, "test/getallforuri", pm.PROMPT_ACTION);
check_enumerator(principal, [
["test/getallforuri", pm.PROMPT_ACTION],
["test/getallforuri3", pm.DENY_ACTION],
]);
// check that permission removals are reflected
pm.removeFromPrincipal(principal, "test/getallforuri");
check_enumerator(principal, [["test/getallforuri3", pm.DENY_ACTION]]);
pm.removeAll();
check_enumerator(principal, []);
check_enumerator(subPrincipal, []);
}