forked from mirrors/gecko-dev
		
	This patch was autogenerated by my decomponents.py
It covers almost every file with the extension js, jsm, html, py,
xhtml, or xul.
It removes blank lines after removed lines, when the removed lines are
preceded by either blank lines or the start of a new block. The "start
of a new block" is defined fairly hackily: either the line starts with
//, ends with */, ends with {, <![CDATA[, """ or '''. The first two
cover comments, the third one covers JS, the fourth covers JS embedded
in XUL, and the final two cover JS embedded in Python. This also
applies if the removed line was the first line of the file.
It covers the pattern matching cases like "var {classes: Cc,
interfaces: Ci, utils: Cu, results: Cr} = Components;". It'll remove
the entire thing if they are all either Ci, Cr, Cc or Cu, or it will
remove the appropriate ones and leave the residue behind. If there's
only one behind, then it will turn it into a normal, non-pattern
matching variable definition. (For instance, "const { classes: Cc,
Constructor: CC, interfaces: Ci, utils: Cu } = Components" becomes
"const CC = Components.Constructor".)
MozReview-Commit-ID: DeSHcClQ7cG
--HG--
extra : rebase_source : d9c41878036c1ef7766ef5e91a7005025bc1d72b
		
	
			
		
			
				
	
	
		
			169 lines
		
	
	
	
		
			7 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			169 lines
		
	
	
	
		
			7 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
/*
 | 
						|
 * Test that the Tracking Protection section is visible in the Control Center
 | 
						|
 * and has the correct state for the cases when:
 | 
						|
 *   1) A page with no tracking elements is loaded.
 | 
						|
 *   2) A page with tracking elements is loaded and they are blocked.
 | 
						|
 *   3) A page with tracking elements is loaded and they are not blocked.
 | 
						|
 * See also Bugs 1175327, 1043801, 1178985
 | 
						|
 */
 | 
						|
 | 
						|
const PREF = "privacy.trackingprotection.enabled";
 | 
						|
const PB_PREF = "privacy.trackingprotection.pbmode.enabled";
 | 
						|
const BENIGN_PAGE = "http://tracking.example.org/browser/browser/base/content/test/general/benignPage.html";
 | 
						|
const TRACKING_PAGE = "http://tracking.example.org/browser/browser/base/content/test/general/trackingPage.html";
 | 
						|
var TrackingProtection = null;
 | 
						|
var tabbrowser = null;
 | 
						|
 | 
						|
var {UrlClassifierTestUtils} = ChromeUtils.import("resource://testing-common/UrlClassifierTestUtils.jsm", {});
 | 
						|
 | 
						|
registerCleanupFunction(function() {
 | 
						|
  TrackingProtection = tabbrowser = null;
 | 
						|
  UrlClassifierTestUtils.cleanupTestTrackers();
 | 
						|
  Services.prefs.clearUserPref(PREF);
 | 
						|
  Services.prefs.clearUserPref(PB_PREF);
 | 
						|
  while (gBrowser.tabs.length > 1) {
 | 
						|
    gBrowser.removeCurrentTab();
 | 
						|
  }
 | 
						|
});
 | 
						|
 | 
						|
function hidden(sel) {
 | 
						|
  let win = tabbrowser.ownerGlobal;
 | 
						|
  let el = win.document.querySelector(sel);
 | 
						|
  let display = win.getComputedStyle(el).getPropertyValue("display", null);
 | 
						|
  let opacity = win.getComputedStyle(el).getPropertyValue("opacity", null);
 | 
						|
  return display === "none" || opacity === "0";
 | 
						|
}
 | 
						|
 | 
						|
function clickButton(sel) {
 | 
						|
  let win = tabbrowser.ownerGlobal;
 | 
						|
  let el = win.document.querySelector(sel);
 | 
						|
  el.doCommand();
 | 
						|
}
 | 
						|
 | 
						|
function testBenignPage() {
 | 
						|
  info("Non-tracking content must not be blocked");
 | 
						|
  ok(!TrackingProtection.container.hidden, "The container is visible");
 | 
						|
  ok(!TrackingProtection.content.hasAttribute("state"), "content: no state");
 | 
						|
  ok(!TrackingProtection.icon.hasAttribute("state"), "icon: no state");
 | 
						|
  ok(!TrackingProtection.icon.hasAttribute("tooltiptext"), "icon: no tooltip");
 | 
						|
 | 
						|
  ok(hidden("#tracking-protection-icon"), "icon is hidden");
 | 
						|
  ok(hidden("#tracking-action-block"), "blockButton is hidden");
 | 
						|
  ok(hidden("#tracking-action-unblock"), "unblockButton is hidden");
 | 
						|
 | 
						|
  // Make sure that the no tracking elements message appears
 | 
						|
  ok(!hidden("#tracking-not-detected"), "labelNoTracking is visible");
 | 
						|
  ok(hidden("#tracking-loaded"), "labelTrackingLoaded is hidden");
 | 
						|
  ok(hidden("#tracking-blocked"), "labelTrackingBlocked is hidden");
 | 
						|
}
 | 
						|
 | 
						|
function testTrackingPage(window) {
 | 
						|
  info("Tracking content must be blocked");
 | 
						|
  ok(!TrackingProtection.container.hidden, "The container is visible");
 | 
						|
  is(TrackingProtection.content.getAttribute("state"), "blocked-tracking-content",
 | 
						|
      'content: state="blocked-tracking-content"');
 | 
						|
  is(TrackingProtection.icon.getAttribute("state"), "blocked-tracking-content",
 | 
						|
      'icon: state="blocked-tracking-content"');
 | 
						|
  is(TrackingProtection.icon.getAttribute("tooltiptext"),
 | 
						|
     gNavigatorBundle.getString("trackingProtection.icon.activeTooltip"), "correct tooltip");
 | 
						|
 | 
						|
  ok(!hidden("#tracking-protection-icon"), "icon is visible");
 | 
						|
  ok(hidden("#tracking-action-block"), "blockButton is hidden");
 | 
						|
 | 
						|
 | 
						|
  if (PrivateBrowsingUtils.isWindowPrivate(window)) {
 | 
						|
    ok(hidden("#tracking-action-unblock"), "unblockButton is hidden");
 | 
						|
    ok(!hidden("#tracking-action-unblock-private"), "unblockButtonPrivate is visible");
 | 
						|
  } else {
 | 
						|
    ok(!hidden("#tracking-action-unblock"), "unblockButton is visible");
 | 
						|
    ok(hidden("#tracking-action-unblock-private"), "unblockButtonPrivate is hidden");
 | 
						|
  }
 | 
						|
 | 
						|
  // Make sure that the blocked tracking elements message appears
 | 
						|
  ok(hidden("#tracking-not-detected"), "labelNoTracking is hidden");
 | 
						|
  ok(hidden("#tracking-loaded"), "labelTrackingLoaded is hidden");
 | 
						|
  ok(!hidden("#tracking-blocked"), "labelTrackingBlocked is visible");
 | 
						|
}
 | 
						|
 | 
						|
function testTrackingPageUnblocked() {
 | 
						|
  info("Tracking content must be white-listed and not blocked");
 | 
						|
  ok(!TrackingProtection.container.hidden, "The container is visible");
 | 
						|
  is(TrackingProtection.content.getAttribute("state"), "loaded-tracking-content",
 | 
						|
      'content: state="loaded-tracking-content"');
 | 
						|
  is(TrackingProtection.icon.getAttribute("state"), "loaded-tracking-content",
 | 
						|
      'icon: state="loaded-tracking-content"');
 | 
						|
  is(TrackingProtection.icon.getAttribute("tooltiptext"),
 | 
						|
     gNavigatorBundle.getString("trackingProtection.icon.disabledTooltip"), "correct tooltip");
 | 
						|
 | 
						|
  ok(!hidden("#tracking-protection-icon"), "icon is visible");
 | 
						|
  ok(!hidden("#tracking-action-block"), "blockButton is visible");
 | 
						|
  ok(hidden("#tracking-action-unblock"), "unblockButton is hidden");
 | 
						|
 | 
						|
  // Make sure that the blocked tracking elements message appears
 | 
						|
  ok(hidden("#tracking-not-detected"), "labelNoTracking is hidden");
 | 
						|
  ok(!hidden("#tracking-loaded"), "labelTrackingLoaded is visible");
 | 
						|
  ok(hidden("#tracking-blocked"), "labelTrackingBlocked is hidden");
 | 
						|
}
 | 
						|
 | 
						|
async function testTrackingProtectionForTab(tab) {
 | 
						|
  info("Load a test page not containing tracking elements");
 | 
						|
  await promiseTabLoadEvent(tab, BENIGN_PAGE);
 | 
						|
  testBenignPage();
 | 
						|
 | 
						|
  info("Load a test page containing tracking elements");
 | 
						|
  await promiseTabLoadEvent(tab, TRACKING_PAGE);
 | 
						|
  testTrackingPage(tab.ownerGlobal);
 | 
						|
 | 
						|
  info("Disable TP for the page (which reloads the page)");
 | 
						|
  let tabReloadPromise = promiseTabLoadEvent(tab);
 | 
						|
  clickButton("#tracking-action-unblock");
 | 
						|
  await tabReloadPromise;
 | 
						|
  testTrackingPageUnblocked();
 | 
						|
 | 
						|
  info("Re-enable TP for the page (which reloads the page)");
 | 
						|
  tabReloadPromise = promiseTabLoadEvent(tab);
 | 
						|
  clickButton("#tracking-action-block");
 | 
						|
  await tabReloadPromise;
 | 
						|
  testTrackingPage(tab.ownerGlobal);
 | 
						|
}
 | 
						|
 | 
						|
add_task(async function testNormalBrowsing() {
 | 
						|
  await UrlClassifierTestUtils.addTestTrackers();
 | 
						|
 | 
						|
  tabbrowser = gBrowser;
 | 
						|
  let tab = tabbrowser.selectedTab = tabbrowser.addTab();
 | 
						|
 | 
						|
  TrackingProtection = gBrowser.ownerGlobal.TrackingProtection;
 | 
						|
  ok(TrackingProtection, "TP is attached to the browser window");
 | 
						|
  is(TrackingProtection.enabled, Services.prefs.getBoolPref(PREF),
 | 
						|
    "TP.enabled is based on the original pref value");
 | 
						|
 | 
						|
  Services.prefs.setBoolPref(PREF, true);
 | 
						|
  ok(TrackingProtection.enabled, "TP is enabled after setting the pref");
 | 
						|
 | 
						|
  await testTrackingProtectionForTab(tab);
 | 
						|
 | 
						|
  Services.prefs.setBoolPref(PREF, false);
 | 
						|
  ok(!TrackingProtection.enabled, "TP is disabled after setting the pref");
 | 
						|
});
 | 
						|
 | 
						|
add_task(async function testPrivateBrowsing() {
 | 
						|
  let privateWin = await promiseOpenAndLoadWindow({private: true}, true);
 | 
						|
  tabbrowser = privateWin.gBrowser;
 | 
						|
  let tab = tabbrowser.selectedTab = tabbrowser.addTab();
 | 
						|
 | 
						|
  TrackingProtection = tabbrowser.ownerGlobal.TrackingProtection;
 | 
						|
  ok(TrackingProtection, "TP is attached to the private window");
 | 
						|
  is(TrackingProtection.enabled, Services.prefs.getBoolPref(PB_PREF),
 | 
						|
    "TP.enabled is based on the pb pref value");
 | 
						|
 | 
						|
  Services.prefs.setBoolPref(PB_PREF, true);
 | 
						|
  ok(TrackingProtection.enabled, "TP is enabled after setting the pref");
 | 
						|
 | 
						|
  await testTrackingProtectionForTab(tab);
 | 
						|
 | 
						|
  Services.prefs.setBoolPref(PB_PREF, false);
 | 
						|
  ok(!TrackingProtection.enabled, "TP is disabled after setting the pref");
 | 
						|
 | 
						|
  privateWin.close();
 | 
						|
});
 |