summaryrefslogtreecommitdiffstats
path: root/browser/components/translation/test/browser_translation_exceptions.js
blob: 8a5fa630907baca97e23dc12526d7bc258bcc262 (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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
/* 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/. */

// tests the translation infobar, using a fake 'Translation' implementation.

const { Translation } = ChromeUtils.import(
  "resource:///modules/translation/TranslationParent.jsm"
);
const { PermissionTestUtils } = ChromeUtils.import(
  "resource://testing-common/PermissionTestUtils.jsm"
);

const kLanguagesPref = "browser.translation.neverForLanguages";
const kShowUIPref = "browser.translation.ui.show";
const kEnableTranslationPref = "browser.translation.detectLanguage";

function test() {
  waitForExplicitFinish();

  Services.prefs.setBoolPref(kShowUIPref, true);
  Services.prefs.setBoolPref(kEnableTranslationPref, true);
  let tab = BrowserTestUtils.addTab(gBrowser);
  gBrowser.selectedTab = tab;
  registerCleanupFunction(function() {
    gBrowser.removeTab(tab);
    Services.prefs.clearUserPref(kShowUIPref);
    Services.prefs.clearUserPref(kEnableTranslationPref);
  });
  BrowserTestUtils.browserLoaded(tab.linkedBrowser).then(() => {
    (async function() {
      for (let testCase of gTests) {
        info(testCase.desc);
        await testCase.run();
      }
    })().then(finish, ex => {
      ok(false, "Unexpected Exception: " + ex);
      finish();
    });
  });

  BrowserTestUtils.loadURI(gBrowser.selectedBrowser, "http://example.com/");
}

function getLanguageExceptions() {
  let langs = Services.prefs.getCharPref(kLanguagesPref);
  return langs ? langs.split(",") : [];
}

function getDomainExceptions() {
  let results = [];
  for (let perm of Services.perms.all) {
    if (
      perm.type == "translate" &&
      perm.capability == Services.perms.DENY_ACTION
    ) {
      results.push(perm.principal);
    }
  }

  return results;
}

function getInfoBar() {
  return new Promise(resolve => {
    let infobar = gBrowser
      .getNotificationBox()
      .getNotificationWithValue("translation");

    if (!infobar) {
      resolve();
    } else {
      // Wait for all animations to finish
      Promise.all(
        infobar.getAnimations().map(animation => animation.finished)
      ).then(() => resolve(infobar));
    }
  });
}

function openPopup(aPopup) {
  return new Promise(resolve => {
    aPopup.addEventListener(
      "popupshown",
      function() {
        TestUtils.executeSoon(resolve);
      },
      { once: true }
    );

    aPopup.focus();
    // One down event to open the popup.
    EventUtils.synthesizeKey("VK_DOWN", {
      altKey: !navigator.platform.includes("Mac"),
    });
  });
}

function waitForWindowLoad(aWin) {
  return new Promise(resolve => {
    aWin.addEventListener(
      "load",
      function() {
        TestUtils.executeSoon(resolve);
      },
      { capture: true, once: true }
    );
  });
}

var gTests = [
  {
    desc: "clean exception lists at startup",
    run: function checkNeverForLanguage() {
      is(
        getLanguageExceptions().length,
        0,
        "we start with an empty list of languages to never translate"
      );
      is(
        getDomainExceptions().length,
        0,
        "we start with an empty list of sites to never translate"
      );
    },
  },

  {
    desc: "never for language",
    run: async function checkNeverForLanguage() {
      // Show the infobar for example.com and fr.
      let actor = gBrowser.selectedBrowser.browsingContext.currentWindowGlobal.getActor(
        "Translation"
      );
      actor.documentStateReceived({
        state: Translation.STATE_OFFER,
        originalShown: true,
        detectedLanguage: "fr",
      });
      let notif = await getInfoBar();
      ok(notif, "the infobar is visible");

      let principal = gBrowser.selectedBrowser.contentPrincipal;
      ok(
        actor.shouldShowInfoBar(principal, "fr"),
        "check shouldShowInfoBar initially returns true"
      );

      // Open the "options" drop down.
      await openPopup(notif._getAnonElt("options"));
      ok(
        notif._getAnonElt("options").getAttribute("open"),
        "the options menu is open"
      );

      // Check that the item is not disabled.
      ok(
        !notif._getAnonElt("neverForLanguage").disabled,
        "The 'Never translate <language>' item isn't disabled"
      );

      // Click the 'Never for French' item.
      notif._getAnonElt("neverForLanguage").click();
      notif = await getInfoBar();
      ok(!notif, "infobar hidden");

      // Check this has been saved to the exceptions list.
      let langs = getLanguageExceptions();
      is(langs.length, 1, "one language in the exception list");
      is(langs[0], "fr", "correct language in the exception list");
      ok(
        !actor.shouldShowInfoBar(principal, "fr"),
        "the infobar wouldn't be shown anymore"
      );

      // Reopen the infobar.
      PopupNotifications.getNotification("translate").anchorElement.click();
      notif = await getInfoBar();
      // Open the "options" drop down.
      await openPopup(notif._getAnonElt("options"));
      ok(
        notif._getAnonElt("neverForLanguage").disabled,
        "The 'Never translate French' item is disabled"
      );

      // Cleanup.
      Services.prefs.setCharPref(kLanguagesPref, "");
      notif.close();
    },
  },

  {
    desc: "never for site",
    run: async function checkNeverForSite() {
      // Show the infobar for example.com and fr.
      let actor = gBrowser.selectedBrowser.browsingContext.currentWindowGlobal.getActor(
        "Translation"
      );
      actor.documentStateReceived({
        state: Translation.STATE_OFFER,
        originalShown: true,
        detectedLanguage: "fr",
      });
      let notif = await getInfoBar();
      ok(notif, "the infobar is visible");
      let principal = gBrowser.selectedBrowser.contentPrincipal;
      ok(
        actor.shouldShowInfoBar(principal, "fr"),
        "check shouldShowInfoBar initially returns true"
      );

      // Open the "options" drop down.
      await openPopup(notif._getAnonElt("options"));
      ok(
        notif._getAnonElt("options").getAttribute("open"),
        "the options menu is open"
      );

      // Check that the item is not disabled.
      ok(
        !notif._getAnonElt("neverForSite").disabled,
        "The 'Never translate site' item isn't disabled"
      );

      // Click the 'Never for French' item.
      notif._getAnonElt("neverForSite").click();
      notif = await getInfoBar();
      ok(!notif, "infobar hidden");

      // Check this has been saved to the exceptions list.
      let sites = getDomainExceptions();
      is(sites.length, 1, "one site in the exception list");
      is(
        sites[0].origin,
        "http://example.com",
        "correct site in the exception list"
      );
      ok(
        !actor.shouldShowInfoBar(principal, "fr"),
        "the infobar wouldn't be shown anymore"
      );

      // Reopen the infobar.
      PopupNotifications.getNotification("translate").anchorElement.click();
      notif = await getInfoBar();
      // Open the "options" drop down.
      await openPopup(notif._getAnonElt("options"));
      ok(
        notif._getAnonElt("neverForSite").disabled,
        "The 'Never translate French' item is disabled"
      );

      // Cleanup.
      PermissionTestUtils.remove("http://example.com", "translate");
      notif.close();
    },
  },

  {
    desc: "language exception list",
    run: async function checkLanguageExceptions() {
      // Put 2 languages in the pref before opening the window to check
      // the list is displayed on load.
      Services.prefs.setCharPref(kLanguagesPref, "fr,de");

      // Open the translation exceptions dialog.
      let win = openDialog(
        "chrome://browser/content/preferences/dialogs/translation.xhtml",
        "Browser:TranslationExceptions",
        "",
        null
      );
      await waitForWindowLoad(win);

      // Check that the list of language exceptions is loaded.
      let getById = win.document.getElementById.bind(win.document);
      let tree = getById("languagesTree");
      let remove = getById("removeLanguage");
      let removeAll = getById("removeAllLanguages");
      is(tree.view.rowCount, 2, "The language exceptions list has 2 items");
      ok(remove.disabled, "The 'Remove Language' button is disabled");
      ok(!removeAll.disabled, "The 'Remove All Languages' button is enabled");

      // Select the first item.
      tree.view.selection.select(0);
      ok(!remove.disabled, "The 'Remove Language' button is enabled");

      // Click the 'Remove' button.
      remove.click();
      is(tree.view.rowCount, 1, "The language exceptions now contains 1 item");
      is(getLanguageExceptions().length, 1, "One exception in the pref");

      // Clear the pref, and check the last item is removed from the display.
      Services.prefs.setCharPref(kLanguagesPref, "");
      is(tree.view.rowCount, 0, "The language exceptions list is empty");
      ok(remove.disabled, "The 'Remove Language' button is disabled");
      ok(removeAll.disabled, "The 'Remove All Languages' button is disabled");

      // Add an item and check it appears.
      Services.prefs.setCharPref(kLanguagesPref, "fr");
      is(tree.view.rowCount, 1, "The language exceptions list has 1 item");
      ok(remove.disabled, "The 'Remove Language' button is disabled");
      ok(!removeAll.disabled, "The 'Remove All Languages' button is enabled");

      // Click the 'Remove All' button.
      removeAll.click();
      is(tree.view.rowCount, 0, "The language exceptions list is empty");
      ok(remove.disabled, "The 'Remove Language' button is disabled");
      ok(removeAll.disabled, "The 'Remove All Languages' button is disabled");
      is(Services.prefs.getCharPref(kLanguagesPref), "", "The pref is empty");

      win.close();
    },
  },

  {
    desc: "domains exception list",
    run: async function checkDomainExceptions() {
      // Put 2 exceptions before opening the window to check the list is
      // displayed on load.
      PermissionTestUtils.add(
        "http://example.org",
        "translate",
        Services.perms.DENY_ACTION
      );
      PermissionTestUtils.add(
        "http://example.com",
        "translate",
        Services.perms.DENY_ACTION
      );

      // Open the translation exceptions dialog.
      let win = openDialog(
        "chrome://browser/content/preferences/dialogs/translation.xhtml",
        "Browser:TranslationExceptions",
        "",
        null
      );
      await waitForWindowLoad(win);

      // Check that the list of language exceptions is loaded.
      let getById = win.document.getElementById.bind(win.document);
      let tree = getById("sitesTree");
      let remove = getById("removeSite");
      let removeAll = getById("removeAllSites");
      is(tree.view.rowCount, 2, "The sites exceptions list has 2 items");
      ok(remove.disabled, "The 'Remove Site' button is disabled");
      ok(!removeAll.disabled, "The 'Remove All Sites' button is enabled");

      // Select the first item.
      tree.view.selection.select(0);
      ok(!remove.disabled, "The 'Remove Site' button is enabled");

      // Click the 'Remove' button.
      remove.click();
      is(tree.view.rowCount, 1, "The site exceptions now contains 1 item");
      is(getDomainExceptions().length, 1, "One exception in the permissions");

      // Clear the permissions, and check the last item is removed from the display.
      PermissionTestUtils.remove("http://example.org", "translate");
      PermissionTestUtils.remove("http://example.com", "translate");
      is(tree.view.rowCount, 0, "The site exceptions list is empty");
      ok(remove.disabled, "The 'Remove Site' button is disabled");
      ok(removeAll.disabled, "The 'Remove All Site' button is disabled");

      // Add an item and check it appears.
      PermissionTestUtils.add(
        "http://example.com",
        "translate",
        Services.perms.DENY_ACTION
      );
      is(tree.view.rowCount, 1, "The site exceptions list has 1 item");
      ok(remove.disabled, "The 'Remove Site' button is disabled");
      ok(!removeAll.disabled, "The 'Remove All Sites' button is enabled");

      // Click the 'Remove All' button.
      removeAll.click();
      is(tree.view.rowCount, 0, "The site exceptions list is empty");
      ok(remove.disabled, "The 'Remove Site' button is disabled");
      ok(removeAll.disabled, "The 'Remove All Sites' button is disabled");
      is(getDomainExceptions().length, 0, "No exceptions in the permissions");

      win.close();
    },
  },
];