Bug 1271120 - Port test_bug1209414.html from chrome to plain; r=masayuki

MozReview-Commit-ID: ExX9ZNsVaXq
This commit is contained in:
Aryeh Gregor 2016-08-23 15:56:23 +03:00
parent a1960cc86a
commit f00c374e3b
3 changed files with 63 additions and 43 deletions

View File

@ -2,6 +2,5 @@
skip-if = buildapp == 'b2g' || os == 'android' skip-if = buildapp == 'b2g' || os == 'android'
[test_bug434998.xul] [test_bug434998.xul]
[test_bug1209414.html]
[test_bug1219928.html] [test_bug1219928.html]
[test_bug1266815.html] [test_bug1266815.html]

View File

@ -35,3 +35,5 @@ skip-if = os == 'android'
skip-if = os == 'android' skip-if = os == 'android'
[test_bug1205983.html] [test_bug1205983.html]
skip-if = os == 'android' skip-if = os == 'android'
[test_bug1209414.html]
skip-if = os == 'android'

View File

@ -5,9 +5,9 @@ https://bugzilla.mozilla.org/show_bug.cgi?id=1209414
--> -->
<head> <head>
<title>Test for Bug 1209414</title> <title>Test for Bug 1209414</title>
<script type="text/javascript" src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script> <script src="/tests/SimpleTest/SimpleTest.js"></script>
<script type="text/javascript" src="chrome://mochikit/content/tests/SimpleTest/EventUtils.js"></script> <script src="/tests/SimpleTest/EventUtils.js"></script>
<link rel="stylesheet" type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css" /> <link rel="stylesheet" href="/tests/SimpleTest/test.css">
</head> </head>
<body> <body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1209414">Mozilla Bug 1209414</a> <a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1209414">Mozilla Bug 1209414</a>
@ -22,14 +22,12 @@ https://bugzilla.mozilla.org/show_bug.cgi?id=1209414
const Ci = SpecialPowers.Ci; const Ci = SpecialPowers.Ci;
function getMisspelledWords(editor) { function getMisspelledWords(editor) {
return editor.selectionController.getSelection(Components.interfaces.nsISelectionController.SELECTION_SPELLCHECK).toString(); return editor.selectionController.getSelection(Ci.nsISelectionController.SELECTION_SPELLCHECK).toString();
} }
var elem_de; var elem_de;
var editor_de; var editor_de;
var de_DE; var script;
var hunspell;
var chromeWin, contextMenu;
/** Test for Bug 1209414 **/ /** Test for Bug 1209414 **/
/* /*
@ -38,41 +36,67 @@ var chromeWin, contextMenu;
* user behaviour. * user behaviour.
*/ */
var onSpellCheck =
SpecialPowers.Cu.import("resource://gre/modules/AsyncSpellCheckTestHelper.jsm")
.onSpellCheck;
SimpleTest.waitForExplicitFinish(); SimpleTest.waitForExplicitFinish();
SimpleTest.waitForFocus(function() { SimpleTest.waitForFocus(function() {
Components.utils.import("resource://gre/modules/AsyncSpellCheckTestHelper.jsm"); script = SpecialPowers.loadChromeScript(function() {
const Ci = Components.interfaces;
var chromeWin = browserElement.ownerDocument.defaultView
.QueryInterface(Ci.nsIInterfaceRequestor)
.getInterface(Ci.nsIWebNavigation)
.QueryInterface(Ci.nsIDocShellTreeItem)
.rootTreeItem
.QueryInterface(Ci.nsIInterfaceRequestor)
.getInterface(Ci.nsIDOMWindow)
.QueryInterface(Ci.nsIDOMChromeWindow);
var contextMenu = chromeWin.document.getElementById("contentAreaContextMenu");
contextMenu.addEventListener("popupshown",
() => sendAsyncMessage("popupshown"), false);
chromeWin = SpecialPowers.wrap(window) var dir = Components.classes["@mozilla.org/file/directory_service;1"]
.QueryInterface(Ci.nsIInterfaceRequestor) .getService(Ci.nsIProperties)
.getInterface(Ci.nsIWebNavigation) .get("CurWorkD", Ci.nsIFile);
.QueryInterface(Ci.nsIDocShellTreeItem) dir.append("tests");
.rootTreeItem dir.append("editor");
.QueryInterface(Ci.nsIInterfaceRequestor) dir.append("composer");
.getInterface(Ci.nsIDOMWindow) dir.append("test");
.QueryInterface(Ci.nsIDOMChromeWindow);
contextMenu = chromeWin.document.getElementById("contentAreaContextMenu");
is(contextMenu!=null, true, "Got context menu XUL");
contextMenu.addEventListener("popupshown", handlePopup, false);
var dir = Components.classes["@mozilla.org/file/directory_service;1"] var hunspell = Components.classes["@mozilla.org/spellchecker/engine;1"]
.getService(Components.interfaces.nsIProperties) .getService(Ci.mozISpellCheckingEngine);
.get("CurWorkD", Components.interfaces.nsIFile);
dir.append("tests");
dir.append("editor");
dir.append("composer");
dir.append("test");
hunspell = Components.classes["@mozilla.org/spellchecker/engine;1"] // Install de-DE dictionary.
.getService(Components.interfaces.mozISpellCheckingEngine); de_DE = dir.clone();
de_DE.append("de-DE");
hunspell.addDirectory(de_DE);
// Install de-DE dictionary. addMessageListener("hidepopup", function() {
de_DE = dir.clone(); var state = contextMenu.state;
de_DE.append("de-DE");
is(de_DE.exists(), true, "true expected (de_DE directory should exist)"); // Select Language from the menu. Take a look at
hunspell.addDirectory(de_DE); // toolkit/modules/InlineSpellChecker.jsm to see how the menu works.
contextMenu.ownerDocument.getElementById("spell-check-dictionary-en-US")
.doCommand();
contextMenu.hidePopup();
return state;
});
addMessageListener("destroy", () => hunspell.removeDirectory(de_DE));
addMessageListener("contextMenu-not-null", () => contextMenu != null);
addMessageListener("de_DE-exists", () => de_DE.exists());
});
is(script.sendSyncMessage("contextMenu-not-null")[0][0], true,
"Got context menu XUL");
is(script.sendSyncMessage("de_DE-exists")[0][0], true,
"true expected (de_DE directory should exist)");
script.addMessageListener("popupshown", handlePopup);
elem_de = document.getElementById('de-DE'); elem_de = document.getElementById('de-DE');
editor_de = elem_de.QueryInterface(Components.interfaces.nsIDOMNSEditableElement).editor; editor_de = SpecialPowers.wrap(elem_de)
.QueryInterface(Ci.nsIDOMNSEditableElement).editor;
editor_de.setSpellcheckUserOverride(true); editor_de.setSpellcheckUserOverride(true);
onSpellCheck(elem_de, function () { onSpellCheck(elem_de, function () {
@ -97,13 +121,8 @@ SimpleTest.waitForFocus(function() {
}); });
function handlePopup() { function handlePopup() {
var state = script.sendSyncMessage("hidepopup")[0][0];
is(contextMenu.state, "open", "checking if popup is open"); is(state, "open", "checking if popup is open");
// Select Language from the menu.
// Take a look at toolkit/modules/InlineSpellChecker.jsm to see how the menu works.
contextMenu.ownerDocument.getElementById("spell-check-dictionary-en-US").doCommand();
contextMenu.hidePopup();
onSpellCheck(elem_de, function () { onSpellCheck(elem_de, function () {
var inlineSpellChecker = editor_de.getInlineSpellChecker(true); var inlineSpellChecker = editor_de.getInlineSpellChecker(true);
@ -117,7 +136,7 @@ function handlePopup() {
is(getMisspelledWords(editor_de), "heute" + "ist" + "ein" + "guter", "some misspelled words expected: heute ist ein guter"); is(getMisspelledWords(editor_de), "heute" + "ist" + "ein" + "guter", "some misspelled words expected: heute ist ein guter");
// Remove the fake de_DE dictionary again. // Remove the fake de_DE dictionary again.
hunspell.removeDirectory(de_DE); script.sendSyncMessage("destroy");
// This will clear the content preferences and reset "spellchecker.dictionary". // This will clear the content preferences and reset "spellchecker.dictionary".
spellchecker.SetCurrentDictionary(""); spellchecker.SetCurrentDictionary("");