summaryrefslogtreecommitdiffstats
path: root/browser/components/translation/test/browser_translations_settings.js
blob: 87860ad9bf7a105da33cc7d5052deb3fe55b6982 (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
/* 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 { PermissionTestUtils } = ChromeUtils.importESModule(
  "resource://testing-common/PermissionTestUtils.sys.mjs"
);

const TRANSLATIONS_PERMISSION = "translations";
const ENABLE_TRANSLATIONS_PREF = "browser.translations.enable";
const ALWAYS_TRANSLATE_LANGS_PREF =
  "browser.translations.alwaysTranslateLanguages";
const NEVER_TRANSLATE_LANGS_PREF =
  "browser.translations.neverTranslateLanguages";

function test() {
  waitForExplicitFinish();
  Services.prefs.setBoolPref(ENABLE_TRANSLATIONS_PREF, true);
  Services.prefs.setCharPref(ALWAYS_TRANSLATE_LANGS_PREF, "");
  Services.prefs.setCharPref(NEVER_TRANSLATE_LANGS_PREF, "");
  let tab = BrowserTestUtils.addTab(gBrowser);
  gBrowser.selectedTab = tab;
  registerCleanupFunction(function () {
    gBrowser.removeTab(tab);
    Services.prefs.clearUserPref(ENABLE_TRANSLATIONS_PREF);
    Services.prefs.clearUserPref(ALWAYS_TRANSLATE_LANGS_PREF);
    Services.prefs.clearUserPref(NEVER_TRANSLATE_LANGS_PREF);
  });
  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.loadURIString(
    gBrowser.selectedBrowser,
    "https://example.com/"
  );
}

/**
 * Retrieves the always-translate language list as an array.
 * @returns {Array<string>}
 */
function getAlwaysTranslateLanguages() {
  let langs = Services.prefs.getCharPref(ALWAYS_TRANSLATE_LANGS_PREF);
  return langs ? langs.split(",") : [];
}

/**
 * Retrieves the always-translate language list as an array.
 * @returns {Array<string>}
 */
function getNeverTranslateLanguages() {
  let langs = Services.prefs.getCharPref(NEVER_TRANSLATE_LANGS_PREF);
  return langs ? langs.split(",") : [];
}

/**
 * Retrieves the always-translate site list as an array.
 * @returns {Array<string>}
 */
function getNeverTranslateSites() {
  let results = [];
  for (let perm of Services.perms.all) {
    if (
      perm.type == TRANSLATIONS_PERMISSION &&
      perm.capability == Services.perms.DENY_ACTION
    ) {
      results.push(perm.principal);
    }
  }

  return results;
}

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");
  });
}

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

var gTests = [
  {
    desc: "ensure lists are empty on startup",
    run: function checkPreferencesAreEmpty() {
      is(
        getAlwaysTranslateLanguages().length,
        0,
        "we start with an empty list of languages to always translate"
      );
      is(
        getNeverTranslateLanguages().length,
        0,
        "we start with an empty list of languages to never translate"
      );
      is(
        getNeverTranslateSites().length,
        0,
        "we start with an empty list of sites to never translate"
      );
    },
  },

  {
    desc: "ensure always-translate languages function correctly",
    run: async function testAlwaysTranslateLanguages() {
      // Put 2 languages in the pref before opening the window to check
      // the list is displayed on load.
      Services.prefs.setCharPref(ALWAYS_TRANSLATE_LANGS_PREF, "fr,de");

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

      // Check that the list of always-translate languages is loaded.
      let getById = win.document.getElementById.bind(win.document);
      let tree = getById("alwaysTranslateLanguagesTree");
      let remove = getById("removeAlwaysTranslateLanguage");
      let removeAll = getById("removeAllAlwaysTranslateLanguages");
      is(
        tree.view.rowCount,
        2,
        "The always-translate languages 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 always-translate languages list now contains 1 item"
      );
      is(
        getAlwaysTranslateLanguages().length,
        1,
        "One language tag in the pref"
      );

      // Clear the pref, and check the last item is removed from the display.
      Services.prefs.setCharPref(ALWAYS_TRANSLATE_LANGS_PREF, "");
      is(tree.view.rowCount, 0, "The always-translate languages 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(ALWAYS_TRANSLATE_LANGS_PREF, "fr,en,es");
      is(
        tree.view.rowCount,
        3,
        "The always-translate languages list has 3 items"
      );
      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 always-translate languages 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(ALWAYS_TRANSLATE_LANGS_PREF),
        "",
        "The pref is empty"
      );

      win.close();
    },
  },

  {
    desc: "ensure never-translate languages function correctly",
    run: async function testNeverTranslateLanguages() {
      // Put 2 languages in the pref before opening the window to check
      // the list is displayed on load.
      Services.prefs.setCharPref(NEVER_TRANSLATE_LANGS_PREF, "fr,de");

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

      // Check that the list of never-translate languages is loaded.
      let getById = win.document.getElementById.bind(win.document);
      let tree = getById("neverTranslateLanguagesTree");
      let remove = getById("removeNeverTranslateLanguage");
      let removeAll = getById("removeAllNeverTranslateLanguages");
      is(
        tree.view.rowCount,
        2,
        "The never-translate languages 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 never-translate language list now contains 1 item"
      );
      is(getNeverTranslateLanguages().length, 1, "One langtag in the pref");

      // Clear the pref, and check the last item is removed from the display.
      Services.prefs.setCharPref(NEVER_TRANSLATE_LANGS_PREF, "");
      is(tree.view.rowCount, 0, "The never-translate languages 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(NEVER_TRANSLATE_LANGS_PREF, "fr,en,es");
      is(
        tree.view.rowCount,
        3,
        "The never-translate languages list has 3 items"
      );
      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 never-translate languages 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(NEVER_TRANSLATE_LANGS_PREF),
        "",
        "The pref is empty"
      );

      win.close();
    },
  },

  {
    desc: "ensure never-translate sites function correctly",
    run: async function testNeverTranslateSites() {
      // Add two deny permissions before opening the window to
      // check the list is displayed on load.
      PermissionTestUtils.add(
        "https://example.org",
        TRANSLATIONS_PERMISSION,
        Services.perms.DENY_ACTION
      );
      PermissionTestUtils.add(
        "https://example.com",
        TRANSLATIONS_PERMISSION,
        Services.perms.DENY_ACTION
      );

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

      // Check that the list of never-translate sites is loaded.
      let getById = win.document.getElementById.bind(win.document);
      let tree = getById("neverTranslateSitesTree");
      let remove = getById("removeNeverTranslateSite");
      let removeAll = getById("removeAllNeverTranslateSites");
      is(tree.view.rowCount, 2, "The never-translate sites 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 never-translate sites list now contains 1 item"
      );
      is(
        getNeverTranslateSites().length,
        1,
        "One domain in the site permissions"
      );

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

      // Add items back and check that they appear
      PermissionTestUtils.add(
        "https://example.org",
        TRANSLATIONS_PERMISSION,
        Services.perms.DENY_ACTION
      );
      PermissionTestUtils.add(
        "https://example.com",
        TRANSLATIONS_PERMISSION,
        Services.perms.DENY_ACTION
      );
      PermissionTestUtils.add(
        "https://example.net",
        TRANSLATIONS_PERMISSION,
        Services.perms.DENY_ACTION
      );

      is(tree.view.rowCount, 3, "The never-translate sites list has 3 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 never-translate sites list is empty");
      ok(remove.disabled, "The 'Remove Site' button is disabled");
      ok(removeAll.disabled, "The 'Remove All Sites' button is disabled");
      is(
        getNeverTranslateSites().length,
        0,
        "No domains in the site permissions"
      );

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