Bug 1258033 - Part 4: Testcase for DNT. r=francois

MozReview-Commit-ID: IqPIMwDQluy

--HG--
extra : rebase_source : 1124e9f6e0e436caccfe3233fa68065caac62e70
This commit is contained in:
dimi 2016-06-02 16:33:13 +08:00
Родитель 74a630e7b1
Коммит 87a2b36792
5 изменённых файлов: 193 добавлений и 0 удалений

Просмотреть файл

@ -17,3 +17,4 @@ tags = trackingprotection
tags = trackingprotection
[test_trackingprotection_whitelist.html]
tags = trackingprotection
[test_donottrack.html]

Просмотреть файл

@ -0,0 +1,31 @@
<html>
<head>
<title></title>
<script type="text/javascript">
function makeXHR(url, callback) {
var xhr = new XMLHttpRequest();
xhr.open('GET', url, true);
xhr.onload = function() {
callback(xhr.response);
};
xhr.send();
}
function loaded(type) {
window.parent.postMessage("navigator.doNotTrack=" + navigator.doNotTrack, "*");
makeXHR("dnt.sjs", (res) => {
window.parent.postMessage("DNT=" + res, "*");
window.parent.postMessage("finish", "*");
});
}
</script>
</head>
<body onload="loaded('onload')">
</body>
</html>

Просмотреть файл

@ -0,0 +1,9 @@
function handleRequest(request, response) {
var dnt = "unspecified";
if (request.hasHeader("DNT")) {
dnt = "1";
}
response.setHeader("Content-Type", "text/plain", false);
response.write(dnt);
}

Просмотреть файл

@ -20,6 +20,8 @@ support-files =
workerFrame.html
ping.sjs
basic.vtt
dnt.html
dnt.sjs
[test_classifier.html]
skip-if = (os == 'linux' && debug) #Bug 1199778

Просмотреть файл

@ -0,0 +1,150 @@
<!DOCTYPE HTML>
<html>
<head>
<title>Bug 1258033 - Fix the DNT loophole for tracking protection</title>
<script type="text/javascript" src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css">
</head>
<body>
<p id="display"></p>
<div id="content" style="display: none">
</div>
<pre id="test">
<script class="testbody" type="text/javascript">
var Cc = SpecialPowers.Cc;
var Ci = SpecialPowers.Ci;
var mainWindow = window.QueryInterface(Ci.nsIInterfaceRequestor)
.getInterface(Ci.nsIWebNavigation)
.QueryInterface(Ci.nsIDocShellTreeItem)
.rootTreeItem
.QueryInterface(Ci.nsIInterfaceRequestor)
.getInterface(Ci.nsIDOMWindow);
const tests = [
// DNT turned on and TP turned off, DNT signal sent in both private browsing
// and normal mode.
{
setting: {dntPref:true, tpPref:false, tppbPref:false, pbMode:true},
expected: {dnt: "1"},
},
{
setting: {dntPref:true, tpPref:false, tppbPref:false, pbMode:false},
expected: {dnt: "1"}
},
// DNT turned off and TP turned on globally, DNT signal sent in both private
// browsing and normal mode.
{
setting: {dntPref:false, tpPref:true, tppbPref:false, pbMode:true},
expected: {dnt: "1"}
},
{
setting: {dntPref:false, tpPref:true, tppbPref:false, pbMode:false},
expected: {dnt: "1"}
},
// DNT turned off and TP in Private Browsing only, DNT signal sent in private
// browsing mode only.
{
setting: {dntPref:false, tpPref:false, tppbPref:true, pbMode:true},
expected: {dnt: "1"}
},
{
setting: {dntPref:false, tpPref:false, tppbPref:true, pbMode:false},
expected: {dnt: "unspecified"}
},
// DNT turned off and TP turned off, DNT signal is never sent.
{
setting: {dntPref:false, tpPref:false, tppbPref:false, pbMode:true},
expected: {dnt: "unspecified"}
},
{
setting: {dntPref:false, tpPref:false, tppbPref:false, pbMode:false},
expected: {dnt: "unspecified"}
},
]
const DNT_PREF = 'privacy.donottrackheader.enabled';
const TP_PREF = 'privacy.trackingprotection.enabled';
const TP_PB_PREF = 'privacy.trackingprotection.pbmode.enabled';
const contentPage =
"http://mochi.test:8888/tests/toolkit/components/url-classifier/tests/mochitest/dnt.html";
Components.utils.import("resource://gre/modules/Services.jsm");
function whenDelayedStartupFinished(aWindow, aCallback) {
Services.obs.addObserver(function observer(aSubject, aTopic) {
if (aWindow == aSubject) {
Services.obs.removeObserver(observer, aTopic);
setTimeout(aCallback, 0);
}
}, "browser-delayed-startup-finished", false);
}
function executeTest(test) {
SpecialPowers.pushPrefEnv({"set" : [
[DNT_PREF, test.setting.dntPref],
[TP_PREF, test.setting.tpPref],
[TP_PB_PREF, test.setting.tppbPref]
]});
var win = mainWindow.OpenBrowserWindow({private: test.setting.pbMode});
return new Promise(function(resolve, reject) {
win.addEventListener("load", function onLoad() {
win.removeEventListener("load", onLoad, false);
whenDelayedStartupFinished(win, function() {
win.addEventListener("DOMContentLoaded", function onInnerLoad() {
if (win.content.location.href != contentPage) {
win.gBrowser.loadURI(contentPage);
return;
}
win.removeEventListener("DOMContentLoaded", onInnerLoad, true);
win.content.addEventListener('message', function (event) {
let [key, value] = event.data.split("=");
if (key == "finish") {
win.close();
resolve();
} else if (key == "navigator.doNotTrack") {
is(value, test.expected.dnt, "navigator.doNotTrack should be " + test.expected.dnt);
} else if (key == "DNT") {
let msg = test.expected.dnt == "1" ? "" : "not ";
is(value, test.expected.dnt, "DNT header should " + msg + "be sent");
} else {
ok(false, "unexpected message");
}
});
}, true);
SimpleTest.executeSoon(function() { win.gBrowser.loadURI(contentPage); });
});
}, true);
});
}
let loop = function loop(index) {
if (index >= tests.length) {
SimpleTest.finish();
return;
}
let test = tests[index];
let next = function next() {
loop(index + 1);
};
let result = executeTest(test);
result.then(next, next);
};
SimpleTest.waitForExplicitFinish();
loop(0);
</script>
</pre>
</body>
</html>