summaryrefslogtreecommitdiffstats
path: root/browser/components/preferences/tests/browser_telemetry.js
blob: fbd44db3e747d0a54ed2929e7eaceee04c3327f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/* Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/publicdomain/zero/1.0/ */

"use strict";

const PREF_TELEMETRY_ENABLED = "toolkit.telemetry.enabled";

function runPaneTest(fn) {
  open_preferences(async win => {
    let doc = win.document;
    await win.gotoPref("paneAdvanced");
    let advancedPrefs = doc.getElementById("advancedPrefs");
    let tab = doc.getElementById("dataChoicesTab");
    advancedPrefs.selectedTab = tab;
    fn(win, doc);
  });
}

function test() {
  waitForExplicitFinish();
  resetPreferences();
  registerCleanupFunction(resetPreferences);
  runPaneTest(testTelemetryState);
}

function testTelemetryState(win, doc) {
  let fhrCheckbox = doc.getElementById("submitHealthReportBox");
  Assert.ok(
    fhrCheckbox.checked,
    "Health Report checkbox is checked on app first run."
  );

  let telmetryCheckbox = doc.getElementById("submitTelemetryBox");
  Assert.ok(
    !telmetryCheckbox.disabled,
    "Telemetry checkbox must be enabled if FHR is checked."
  );
  Assert.ok(
    Services.prefs.getBoolPref(PREF_TELEMETRY_ENABLED),
    "Telemetry must be enabled if the checkbox is ticked."
  );

  // Uncheck the FHR checkbox and make sure that Telemetry checkbox gets disabled.
  fhrCheckbox.click();

  Assert.ok(
    telmetryCheckbox.disabled,
    "Telemetry checkbox must be disabled if FHR is unchecked."
  );
  Assert.ok(
    !Services.prefs.getBoolPref(PREF_TELEMETRY_ENABLED),
    "Telemetry must be disabled if the checkbox is unticked."
  );

  win.close();
  finish();
}

function resetPreferences() {
  Services.prefs.clearUserPref("datareporting.healthreport.uploadEnabled");
  Services.prefs.clearUserPref(PREF_TELEMETRY_ENABLED);
}