Bug 1271120 - Port test_bug1209414.html from chrome to plain; r?masayuki draft
authorAryeh Gregor <ayg@aryeh.name>
Tue, 23 Aug 2016 15:56:23 +0300
changeset 430251 22f610e98d27492446b710feafe44fc24bdb9172
parent 430250 52e430ee04cbc377ccc543b5924add67dbed3b07
child 430252 a0f6d1ab307599bb8b413de2a15a6cdcbb6bf43f
push id33786
push userayg@aryeh.name
push dateThu, 27 Oct 2016 12:00:23 +0000
reviewersmasayuki
bugs1271120, 1209414
milestone52.0a1
Bug 1271120 - Port test_bug1209414.html from chrome to plain; r?masayuki MozReview-Commit-ID: ExX9ZNsVaXq
editor/composer/test/chrome.ini
editor/composer/test/mochitest.ini
editor/composer/test/test_bug1209414.html
--- a/editor/composer/test/chrome.ini
+++ b/editor/composer/test/chrome.ini
@@ -5,11 +5,10 @@ skip-if = buildapp == 'b2g' || os == 'an
 [test_bug338427.html]
 [test_bug434998.xul]
 [test_bug678842.html]
 [test_bug697981.html]
 [test_bug717433.html]
 [test_bug1204147.html]
 [test_bug1200533.html]
 [test_bug1205983.html]
-[test_bug1209414.html]
 [test_bug1219928.html]
 [test_bug1266815.html]
--- a/editor/composer/test/mochitest.ini
+++ b/editor/composer/test/mochitest.ini
@@ -14,8 +14,9 @@ support-files =
   de-DE/de_DE.aff
 
 [test_bug348497.html]
 [test_bug384147.html]
 [test_bug389350.html]
 skip-if = toolkit == 'android'
 [test_bug519928.html]
 [test_bug738440.html]
+[test_bug1209414.html]
--- a/editor/composer/test/test_bug1209414.html
+++ b/editor/composer/test/test_bug1209414.html
@@ -1,83 +1,107 @@
 <!DOCTYPE html>
 <html>
 <!--
 https://bugzilla.mozilla.org/show_bug.cgi?id=1209414
 -->
 <head>
   <title>Test for Bug 1209414</title>
-  <script type="text/javascript" src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
-  <script type="text/javascript" src="chrome://mochikit/content/tests/SimpleTest/EventUtils.js"></script>
-  <link rel="stylesheet" type="text/css" href="chrome://mochikit/content/tests/SimpleTest/test.css" />
+  <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=1209414">Mozilla Bug 1209414</a>
 <p id="display"></p>
 </div>
 
 <textarea id="de-DE" lang="de-DE">heute ist ein guter Tag - today is a good day</textarea>
 
 <pre id="test">
 <script class="testbody" type="text/javascript">
 
 const Ci = SpecialPowers.Ci;
 
 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 editor_de;
-var de_DE;
-var hunspell;
-var chromeWin, contextMenu;
+var script;
 
 /** Test for Bug 1209414 **/
 /*
  * All we want to do in this test is change the spelling using a right-click and selection from the menu.
  * This is necessary since all the other tests use SetCurrentDictionary() which doesn't reflect
  * user behaviour.
  */
 
+var onSpellCheck =
+  SpecialPowers.Cu.import("resource://gre/modules/AsyncSpellCheckTestHelper.jsm")
+               .onSpellCheck;
+
 SimpleTest.waitForExplicitFinish();
 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)
-                  .QueryInterface(Ci.nsIInterfaceRequestor)
-                  .getInterface(Ci.nsIWebNavigation)
-                  .QueryInterface(Ci.nsIDocShellTreeItem)
-                  .rootTreeItem
-                  .QueryInterface(Ci.nsIInterfaceRequestor)
-                  .getInterface(Ci.nsIDOMWindow)
-                  .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"]
+                        .getService(Ci.nsIProperties)
+                        .get("CurWorkD", Ci.nsIFile);
+    dir.append("tests");
+    dir.append("editor");
+    dir.append("composer");
+    dir.append("test");
+
+    var hunspell = Components.classes["@mozilla.org/spellchecker/engine;1"]
+                             .getService(Ci.mozISpellCheckingEngine);
 
-  var dir = Components.classes["@mozilla.org/file/directory_service;1"]
-                      .getService(Components.interfaces.nsIProperties)
-                      .get("CurWorkD", Components.interfaces.nsIFile);
-  dir.append("tests");
-  dir.append("editor");
-  dir.append("composer");
-  dir.append("test");
+    // Install de-DE dictionary.
+    de_DE = dir.clone();
+    de_DE.append("de-DE");
+    hunspell.addDirectory(de_DE);
+
+    addMessageListener("hidepopup", function() {
+      var state = contextMenu.state;
+
+      // Select Language from the menu.  Take a look at
+      // toolkit/modules/InlineSpellChecker.jsm to see how the menu works.
 
-  hunspell = Components.classes["@mozilla.org/spellchecker/engine;1"]
-                       .getService(Components.interfaces.mozISpellCheckingEngine);
+      contextMenu.ownerDocument.getElementById("spell-check-dictionary-en-US")
+                 .doCommand();
+      contextMenu.hidePopup();
 
-  // Install de-DE dictionary.
-  de_DE = dir.clone();
-  de_DE.append("de-DE");
-  is(de_DE.exists(), true, "true expected (de_DE directory should exist)");
-  hunspell.addDirectory(de_DE);
+      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');
-  editor_de = elem_de.QueryInterface(Components.interfaces.nsIDOMNSEditableElement).editor;
+  editor_de = SpecialPowers.wrap(elem_de)
+                           .QueryInterface(Ci.nsIDOMNSEditableElement).editor;
   editor_de.setSpellcheckUserOverride(true);
 
   onSpellCheck(elem_de, function () {
     var inlineSpellChecker = editor_de.getInlineSpellChecker(true);
     var spellchecker = inlineSpellChecker.spellChecker;
     try {
       var currentDictonary = spellchecker.GetCurrentDictionary();
     } catch(e) {}
@@ -92,37 +116,32 @@ SimpleTest.waitForFocus(function() {
     // Make sure all spell checking action is done before right-click to select the en-US dictionary.
     onSpellCheck(elem_de, function () {
       synthesizeMouse(elem_de, 2, 2, { type : "contextmenu", button : 2 }, window);
     });
   });
 });
 
 function handlePopup() {
-
-  is(contextMenu.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();
+  var state = script.sendSyncMessage("hidepopup")[0][0];
+  is(state, "open", "checking if popup is open");
 
   onSpellCheck(elem_de, function () {
     var inlineSpellChecker = editor_de.getInlineSpellChecker(true);
     var spellchecker = inlineSpellChecker.spellChecker;
     try {
       currentDictonary = spellchecker.GetCurrentDictionary();
     } catch(e) {}
 
     // Check that the English dictionary is loaded and that the spell check has worked.
     is(currentDictonary, "en-US", "expected en-US");
     is(getMisspelledWords(editor_de), "heute" + "ist" + "ein" + "guter", "some misspelled words expected: heute ist ein guter");
 
     // Remove the fake de_DE dictionary again.
-    hunspell.removeDirectory(de_DE);
+    script.sendSyncMessage("destroy");
 
     // This will clear the content preferences and reset "spellchecker.dictionary".
     spellchecker.SetCurrentDictionary("");
     SimpleTest.finish();
   });
 }
 
 </script>