зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1277803 - Part 8: Add a test case of favicon loading of private browsing. r=ehsan
This commit is contained in:
Родитель
1941ba66ad
Коммит
48b90f2f99
|
@ -15,6 +15,9 @@ support-files =
|
|||
popup.html
|
||||
title.sjs
|
||||
empty_file.html
|
||||
file_favicon.html
|
||||
file_favicon.png
|
||||
file_favicon.png^headers^
|
||||
|
||||
[browser_privatebrowsing_DownloadLastDirWithCPS.js]
|
||||
[browser_privatebrowsing_about.js]
|
||||
|
@ -29,6 +32,7 @@ tags = trackingprotection
|
|||
[browser_privatebrowsing_downloadLastDir.js]
|
||||
[browser_privatebrowsing_downloadLastDir_c.js]
|
||||
[browser_privatebrowsing_downloadLastDir_toggle.js]
|
||||
[browser_privatebrowsing_favicon.js]
|
||||
[browser_privatebrowsing_geoprompt.js]
|
||||
[browser_privatebrowsing_lastpbcontextexited.js]
|
||||
[browser_privatebrowsing_localStorage.js]
|
||||
|
|
|
@ -0,0 +1,253 @@
|
|||
/* This Source Code Form is subject to the terms of the Mozilla Public
|
||||
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
||||
|
||||
// This test make sure that the favicon of the private browsing is isolated.
|
||||
|
||||
const { classes: Cc, Constructor: CC, interfaces: Ci, utils: Cu } = Components;
|
||||
|
||||
const TEST_SITE = "http://mochi.test:8888";
|
||||
const TEST_DIRECTORY = "/browser/browser/components/privatebrowsing/test/browser/";
|
||||
|
||||
const TEST_PAGE = TEST_SITE + TEST_DIRECTORY + "file_favicon.html";
|
||||
const FAVICON_URI = TEST_SITE + TEST_DIRECTORY + "file_favicon.png";
|
||||
|
||||
let systemPrincipal = Services.scriptSecurityManager.getSystemPrincipal();
|
||||
let makeURI = Cu.import("resource://gre/modules/BrowserUtils.jsm", {}).BrowserUtils.makeURI;
|
||||
|
||||
function clearAllImageCaches() {
|
||||
var tools = SpecialPowers.Cc["@mozilla.org/image/tools;1"]
|
||||
.getService(SpecialPowers.Ci.imgITools);
|
||||
var imageCache = tools.getImgCacheForDocument(window.document);
|
||||
imageCache.clearCache(true); // true=chrome
|
||||
imageCache.clearCache(false); // false=content
|
||||
}
|
||||
|
||||
function observeFavicon(aIsPrivate, aExpectedCookie, aPageURI) {
|
||||
let faviconReqXUL = false;
|
||||
let faviconReqPlaces = false;
|
||||
let attr = {};
|
||||
|
||||
if (aIsPrivate) {
|
||||
attr.privateBrowsingId = 1;
|
||||
}
|
||||
|
||||
let expectedPrincipal = Services.scriptSecurityManager
|
||||
.createCodebasePrincipal(aPageURI, attr);
|
||||
|
||||
return new Promise(resolve => {
|
||||
let observer = {
|
||||
observe(aSubject, aTopic, aData) {
|
||||
// Make sure that the topic is 'http-on-modify-request'.
|
||||
if (aTopic === "http-on-modify-request") {
|
||||
// We check the privateBrowsingId for the originAttributes of the loading
|
||||
// channel. All requests for the favicon should contain the correct
|
||||
// privateBrowsingId. There are two requests for a favicon loading, one
|
||||
// from the Places library and one from the XUL image. The difference
|
||||
// of them is the loading principal. The Places will use the content
|
||||
// principal and the XUL image will use the system principal.
|
||||
|
||||
let httpChannel = aSubject.QueryInterface(Ci.nsIHttpChannel);
|
||||
let reqLoadInfo = httpChannel.loadInfo;
|
||||
let loadingPrincipal = reqLoadInfo.loadingPrincipal;
|
||||
let triggeringPrincipal = reqLoadInfo.triggeringPrincipal;
|
||||
|
||||
// Make sure this is a favicon request.
|
||||
if (httpChannel.URI.spec !== FAVICON_URI) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Check the privateBrowsingId.
|
||||
if (aIsPrivate) {
|
||||
is(reqLoadInfo.originAttributes.privateBrowsingId, 1, "The loadInfo has correct privateBrowsingId");
|
||||
} else {
|
||||
is(reqLoadInfo.originAttributes.privateBrowsingId, 0, "The loadInfo has correct privateBrowsingId");
|
||||
}
|
||||
|
||||
if (loadingPrincipal.equals(systemPrincipal)) {
|
||||
faviconReqXUL = true;
|
||||
ok(triggeringPrincipal.equals(expectedPrincipal),
|
||||
"The triggeringPrincipal of favicon loading from XUL should be the content principal.");
|
||||
} else {
|
||||
faviconReqPlaces = true;
|
||||
ok(loadingPrincipal.equals(expectedPrincipal),
|
||||
"The loadingPrincipal of favicon loading from Places should be the content prinicpal");
|
||||
}
|
||||
|
||||
let faviconCookie = httpChannel.getRequestHeader("cookie");
|
||||
|
||||
is(faviconCookie, aExpectedCookie, "The cookie of the favicon loading is correct.");
|
||||
} else {
|
||||
ok(false, "Received unexpected topic: ", aTopic);
|
||||
}
|
||||
|
||||
if (faviconReqXUL && faviconReqPlaces) {
|
||||
resolve();
|
||||
Services.obs.removeObserver(observer, "http-on-modify-request", false);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
Services.obs.addObserver(observer, "http-on-modify-request", false);
|
||||
});
|
||||
}
|
||||
|
||||
function waitOnFaviconResponse(aFaviconURL) {
|
||||
return new Promise(resolve => {
|
||||
let observer = {
|
||||
observe(aSubject, aTopic, aData) {
|
||||
if (aTopic === "http-on-examine-response" ||
|
||||
aTopic === "http-on-examine-cached-response") {
|
||||
|
||||
let httpChannel = aSubject.QueryInterface(Ci.nsIHttpChannel);
|
||||
let loadInfo = httpChannel.loadInfo;
|
||||
|
||||
if (httpChannel.URI.spec !== aFaviconURL) {
|
||||
return;
|
||||
}
|
||||
|
||||
let result = {
|
||||
topic: aTopic,
|
||||
privateBrowsingId: loadInfo.originAttributes.privateBrowsingId
|
||||
};
|
||||
|
||||
resolve(result);
|
||||
Services.obs.removeObserver(observer, "http-on-examine-response", false);
|
||||
Services.obs.removeObserver(observer, "http-on-examine-cached-response", false);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
Services.obs.addObserver(observer, "http-on-examine-response", false);
|
||||
Services.obs.addObserver(observer, "http-on-examine-cached-response", false);
|
||||
});
|
||||
}
|
||||
|
||||
function* assignCookies(aBrowser, aURL, aCookieValue){
|
||||
let tabInfo = yield openTab(aBrowser, aURL);
|
||||
|
||||
yield ContentTask.spawn(tabInfo.browser, aCookieValue, function* (value) {
|
||||
content.document.cookie = value;
|
||||
});
|
||||
|
||||
yield BrowserTestUtils.removeTab(tabInfo.tab);
|
||||
}
|
||||
|
||||
function* openTab(aBrowser, aURL) {
|
||||
let tab = aBrowser.addTab(aURL);
|
||||
|
||||
// Select tab and make sure its browser is focused.
|
||||
aBrowser.selectedTab = tab;
|
||||
tab.ownerGlobal.focus();
|
||||
|
||||
let browser = aBrowser.getBrowserForTab(tab);
|
||||
yield BrowserTestUtils.browserLoaded(browser);
|
||||
return {tab, browser};
|
||||
}
|
||||
|
||||
// A clean up function to prevent affecting other tests.
|
||||
registerCleanupFunction(() => {
|
||||
// Clear all cookies.
|
||||
let cookieMgr = Cc["@mozilla.org/cookiemanager;1"]
|
||||
.getService(Ci.nsICookieManager);
|
||||
cookieMgr.removeAll();
|
||||
|
||||
// Clear all image caches and network caches.
|
||||
clearAllImageCaches();
|
||||
|
||||
let networkCache = Cc["@mozilla.org/netwerk/cache-storage-service;1"]
|
||||
.getService(Ci.nsICacheStorageService);
|
||||
networkCache.clear();
|
||||
});
|
||||
|
||||
add_task(function* test_favicon_privateBrowsing() {
|
||||
// Clear all image caches before running the test.
|
||||
clearAllImageCaches();
|
||||
|
||||
// Create a private browsing window.
|
||||
let privateWindow = yield BrowserTestUtils.openNewBrowserWindow({ private: true });
|
||||
let pageURI = makeURI(TEST_PAGE);
|
||||
|
||||
// Generate two random cookies for non-private window and private window
|
||||
// respectively.
|
||||
let cookies = [];
|
||||
cookies.push(Math.random().toString());
|
||||
cookies.push(Math.random().toString());
|
||||
|
||||
// Open a tab in non-private window and add a cookie into it.
|
||||
yield assignCookies(gBrowser, TEST_SITE, cookies[0]);
|
||||
|
||||
// Open a tab in private window and add a cookie into it.
|
||||
yield assignCookies(privateWindow.gBrowser, TEST_SITE, cookies[1]);
|
||||
|
||||
// Add the observer earlier in case we don't capture events in time.
|
||||
let promiseObserveFavicon = observeFavicon(false, cookies[0], pageURI);
|
||||
|
||||
// Open a tab for the non-private window.
|
||||
let tabInfo = yield openTab(gBrowser, TEST_PAGE);
|
||||
|
||||
// Waiting until favicon requests are all made.
|
||||
yield promiseObserveFavicon;
|
||||
|
||||
// Close the tab.
|
||||
yield BrowserTestUtils.removeTab(tabInfo.tab);
|
||||
|
||||
// Add the observer earlier in case we don't capture events in time.
|
||||
promiseObserveFavicon = observeFavicon(true, cookies[1], pageURI);
|
||||
|
||||
// Open a tab for the private window.
|
||||
tabInfo = yield openTab(privateWindow.gBrowser, TEST_PAGE);
|
||||
|
||||
// Waiting until favicon requests are all made.
|
||||
yield promiseObserveFavicon;
|
||||
|
||||
yield BrowserTestUtils.removeTab(tabInfo.tab);
|
||||
yield BrowserTestUtils.closeWindow(privateWindow);
|
||||
});
|
||||
|
||||
add_task(function* test_favicon_cache_privateBrowsing() {
|
||||
// Clear all image cahces and network cache before running the test.
|
||||
clearAllImageCaches();
|
||||
|
||||
let networkCache = Cc["@mozilla.org/netwerk/cache-storage-service;1"]
|
||||
.getService(Ci.nsICacheStorageService);
|
||||
networkCache.clear();
|
||||
|
||||
// Create a private browsing window.
|
||||
let privateWindow = yield BrowserTestUtils.openNewBrowserWindow({ private: true });
|
||||
|
||||
// Open a tab for the private window.
|
||||
let tabInfoPrivateA = yield openTab(privateWindow.gBrowser, TEST_PAGE);
|
||||
|
||||
// Wait for the favicon response of the private tab.
|
||||
let response = yield waitOnFaviconResponse(FAVICON_URI);
|
||||
|
||||
// Make sure the favicon is loaded through the network and its privateBrowsingId is correct.
|
||||
is(response.topic, "http-on-examine-response", "The favicon image should be loaded through the network.");
|
||||
is(response.privateBrowsingId, 1, "We should observe the network response for the private tab.");
|
||||
|
||||
// Open the tab again for checking the favicon is not cached for private tab.
|
||||
let tabInfoPrivateB = yield openTab(privateWindow.gBrowser, TEST_PAGE);
|
||||
|
||||
// Wait for the favicon response of the private tab.
|
||||
response = yield waitOnFaviconResponse(FAVICON_URI);
|
||||
|
||||
// Make sure the favicon is loaded through the network again and its privateBrowsingId is correct.
|
||||
is(response.topic, "http-on-examine-response", "The favicon image should be loaded through the network.");
|
||||
is(response.privateBrowsingId, 1, "We should observe the network response for the private tab.");
|
||||
|
||||
// Open a tab for the non-private window.
|
||||
let tabInfoNonPrivate = yield openTab(gBrowser, TEST_PAGE);
|
||||
|
||||
response = yield waitOnFaviconResponse(FAVICON_URI);
|
||||
|
||||
// Check that the favicon response has come from the network and it has the
|
||||
// correct privateBrowsingId.
|
||||
is(response.topic, "http-on-examine-response", "The favicon image should be loaded through network again.");
|
||||
is(response.privateBrowsingId, 0, "We should observe the network response for the non-private tab.");
|
||||
|
||||
yield BrowserTestUtils.removeTab(tabInfoPrivateA.tab);
|
||||
yield BrowserTestUtils.removeTab(tabInfoPrivateB.tab);
|
||||
yield BrowserTestUtils.removeTab(tabInfoNonPrivate.tab);
|
||||
yield BrowserTestUtils.closeWindow(privateWindow);
|
||||
});
|
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE HTML>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset='utf-8'>
|
||||
<title>Favicon Test for originAttributes</title>
|
||||
<link rel="icon" type="image/png" href="file_favicon.png" />
|
||||
</head>
|
||||
<body>
|
||||
Favicon!!
|
||||
</body>
|
||||
</html>
|
Двоичный файл не отображается.
После Ширина: | Высота: | Размер: 344 B |
|
@ -0,0 +1 @@
|
|||
Cache-Control: no-cache
|
Загрузка…
Ссылка в новой задаче