summaryrefslogtreecommitdiffstats
path: root/editor/spellchecker/tests/test_bug1761273.html
blob: 543e56e810c07e16e8d0debca2ccb3ab0d6e0e20 (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
<!DOCTYPE html>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=1761273
-->
<head>
  <title>Test for Bug 1761273</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <script src="/tests/SimpleTest/EventUtils.js"></script>
  <link rel="stylesheet" href="/tests/SimpleTest/test.css">
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1761273">Mozilla Bug 1761273</a>
<p id="display"></p>
</div>

<textarea id="editor" lang="en-US">heute ist ein guter Tag - today is a good day</textarea>

<pre id="test">
<script class="testbody" type="text/javascript">

const Ci = SpecialPowers.Ci;

let {
  getDictionaryContentPref,
  onSpellCheck,
} = SpecialPowers.ChromeUtils.import(
  "resource://testing-common/AsyncSpellCheckTestHelper.jsm"
);

/** Test for Bug 1402822 **/
SimpleTest.waitForExplicitFinish();
addLoadEvent(start);
async function start() {
  let script = SpecialPowers.loadChromeScript(() => {
    /* eslint-env mozilla/chrome-script */
    // eslint-disable-next-line mozilla/use-services
    let dir = Cc["@mozilla.org/file/directory_service;1"]
                .getService(Ci.nsIProperties)
                .get("CurWorkD", Ci.nsIFile);
    dir.append("tests");
    dir.append("editor");
    dir.append("spellchecker");
    dir.append("tests");

    let hunspell = Cc["@mozilla.org/spellchecker/engine;1"]
                     .getService(Ci.mozISpellCheckingEngine);

    // Install de-DE dictionary.
    let de_DE = dir.clone();
    de_DE.append("de-DE");
    hunspell.addDirectory(de_DE);

    addMessageListener("destroy", () => hunspell.removeDirectory(de_DE));
    addMessageListener("de_DE-exists", () => de_DE.exists());
  });
  is(await script.sendQuery("de_DE-exists"), true,
     "true expected (de_DE directory should exist)");

  let textarea = document.getElementById("editor");
  textarea.focus();

  onSpellCheck(textarea, async () => {
    let isc = SpecialPowers.wrap(textarea).editor.getInlineSpellChecker(true);
    ok(isc, "Inline spell checker should exist after focus and spell check");
    let spellchecker = isc.spellChecker;

    // Setting the language to the language of the texteditor should not set the
    // content preference.
    await spellchecker.setCurrentDictionaries(["en-US"]);
    let dictionaryContentPref = await getDictionaryContentPref();
    is(dictionaryContentPref, "", "Content pref should be empty");

    await spellchecker.setCurrentDictionaries(["en-US", "de-DE"]);
    dictionaryContentPref = await getDictionaryContentPref();
    is(dictionaryContentPref, "en-US,de-DE,", "Content pref should be en-US,de-DE,");

    await spellchecker.setCurrentDictionaries(["de-DE"]);
    dictionaryContentPref = await getDictionaryContentPref();
    is(dictionaryContentPref, "de-DE,", "Content pref should be de-DE,");

    // Remove the fake de_DE dictionary again.
    await script.sendQuery("destroy");

    // This will clear the content preferences and reset "spellchecker.dictionary".
    await spellchecker.setCurrentDictionaries([]);
    dictionaryContentPref = await getDictionaryContentPref();
    is(dictionaryContentPref, "", "Content pref should be empty");

    SimpleTest.finish();
  });
}
</script>
</pre>
</body>
</html>