mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
122 lines
4.4 KiB
HTML
122 lines
4.4 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<!--
|
|
https://bugzilla.mozilla.org/show_bug.cgi?id={770731}
|
|
-->
|
|
<head>
|
|
<title>Test for Bug {770731} Permissions</title>
|
|
<script type="text/javascript" src="/MochiKit/MochiKit.js"></script>
|
|
<script type="text/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
|
|
</head>
|
|
<body>
|
|
|
|
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id={770731}">Mozilla Bug {674720}</a>
|
|
<p id="display"></p>
|
|
<div id="content" style="display: none">
|
|
|
|
</div>
|
|
<pre id="test">
|
|
<script class="testbody" type="text/javascript">
|
|
|
|
"use strict";
|
|
|
|
var testPrivApp = {
|
|
'manifestURL' : 'https://aprivileged.com/manifest.webapp'
|
|
};
|
|
|
|
var testCertApp = {
|
|
'manifestURL' : 'https://acertified.com/manifest.webapp'
|
|
};
|
|
|
|
SpecialPowers.addPermission("permissions", true, document);
|
|
SpecialPowers.pushPrefEnv({ "set": [["dom.mozPermissionSettings.enabled", true]] },
|
|
function() {
|
|
SpecialPowers.removePermission("permissions", document);
|
|
});
|
|
|
|
SpecialPowers.Cu.import("resource://gre/modules/PermissionSettings.jsm");
|
|
var mozPermissions = window.navigator.mozPermissionSettings;
|
|
|
|
function permissionTest() {
|
|
// Any permission explicit for privileged and implicit for certified serves
|
|
var testPerm = "contacts-read";
|
|
// Any permission explicit for privileged and certified apps
|
|
var explicitPerm = "geolocation";
|
|
|
|
// Simulate that the app requested the permissions
|
|
SpecialPowers.addPermission(testPerm, true, testPrivApp);
|
|
SpecialPowers.addPermission(testPerm, true, testCertApp);
|
|
SpecialPowers.addPermission(explicitPerm, true, testPrivApp);
|
|
SpecialPowers.addPermission(explicitPerm, true, testCertApp);
|
|
|
|
if (gPermissionsEnabled) {
|
|
var certAppManifest = testCertApp.manifestURL;
|
|
var privAppManifest = testPrivApp.manifestURL;
|
|
var originPriv = "https://aprivileged.com";
|
|
var originCert = "https://acertified.com";
|
|
var originOther = "http://test";
|
|
|
|
// Trying to make any change to implicit permissions should fail
|
|
try {
|
|
mozPermissions.set(testPerm, "allow", certAppManifest, originCert, false);
|
|
ok(false, "Change implicit permission");
|
|
} catch (e) {
|
|
ok(true, "Change implicit permission");
|
|
}
|
|
|
|
var result=mozPermissions.get(testPerm, certAppManifest, originCert, false);
|
|
is(result, "allow", "same result");
|
|
|
|
// Removing a permission from the same origin, even an explicit one, should fail
|
|
try {
|
|
mozPermissions.set(testPerm, "unknown", privAppManifest, originPriv);
|
|
ok(false, "Setting a permission to unknown");
|
|
} catch (e) {
|
|
ok(true, "Setting a permission to unknown");
|
|
}
|
|
|
|
// Removing an explicit permission from a different origin should work
|
|
var testRemove = function(aPerm, aManifest, aOrigin, aTestMsg) {
|
|
try {
|
|
mozPermissions.remove(aPerm, aManifest, aOrigin);
|
|
var status = mozPermissions.get(aPerm, aManifest, aOrigin, false);
|
|
is(status, "unknown", aTestMsg);
|
|
} catch (e) {
|
|
ok(false, aTestMsg);
|
|
}
|
|
}
|
|
|
|
testRemove(explicitPerm, privAppManifest, originOther,
|
|
"Remove explicit permission of privileged app");
|
|
testRemove(explicitPerm, certAppManifest, originOther,
|
|
"Remove explicit permission of certified app");
|
|
|
|
mozPermissions.set(testPerm, "allow", privAppManifest, originPriv, false);
|
|
result = mozPermissions.get(testPerm, privAppManifest, originPriv, false);
|
|
is(result, "allow", "Set to allow");
|
|
mozPermissions.set(testPerm, "deny", privAppManifest, originPriv, false);
|
|
result = mozPermissions.get(testPerm, privAppManifest, originPriv, false);
|
|
is(result, "deny", "Set to deny");
|
|
mozPermissions.set(testPerm, "prompt", privAppManifest, originPriv, false);
|
|
result = mozPermissions.get(testPerm, privAppManifest, originPriv, false);
|
|
is(result, "prompt", "Set to prompt");
|
|
SimpleTest.finish();
|
|
} else {
|
|
is(mozPermissions, null, "mozPermissionSettings is null when not enabled.");
|
|
SimpleTest.finish();
|
|
}
|
|
SpecialPowers.removePermission(testPerm, testPrivApp);
|
|
SpecialPowers.removePermission(testPerm, testCertApp);
|
|
}
|
|
|
|
var gPermissionsEnabled = SpecialPowers.getBoolPref("dom.mozPermissionSettings.enabled");
|
|
SimpleTest.waitForExplicitFinish();
|
|
addLoadEvent(permissionTest);
|
|
|
|
ok(true, "test passed");
|
|
</script>
|
|
</pre>
|
|
</body>
|
|
</html>
|