Closed Bug 768642 Opened 12 years ago Closed 8 years ago

Add unit test coverage for Error Console filter

Categories

(Toolkit Graveyard :: Error Console, defect)

x86_64
Windows 7
defect
Not set
normal

Tracking

(Not tracked)

RESOLVED WONTFIX

People

(Reporter: jaws, Unassigned)

References

Details

Attachments

(1 file, 2 obsolete files)

Bug 760951 added the filter to the error console and I should have requested that tests be added to ensure the proper functioning of the filter.

Tom, can you add some tests here? https://bugzilla.mozilla.org/show_bug.cgi?id=593540 has a test attachment that shows how this can be done.
I started looking into this, but it's all rather strange.
Attached patch WIP doesn't work (obsolete) — Splinter Review
I copied most of the test code from bug 593540. But I can't really seem to get it working. In my case a newly added row, which should not be displayed, because it doesn't fit the filter. Doesn't get the "filtered-by-string" class and the test fails. Maybe this is some timing issue, or I am looking at the wrong node, I don't know.
Attachment #663056 - Flags: feedback?(jaws)
I haven't had time yet to investigate the cause of the failure. Are you still working on this or are you waiting for some help here?
I wouldn't mind if you could take a look at this. This is very weird to me and I don't have so much time to finish this until I am gone for 3 weeks.
Comment on attachment 663056 [details] [diff] [review]
WIP doesn't work

Review of attachment 663056 [details] [diff] [review]:
-----------------------------------------------------------------

Also, this will need to get reviewed by a Toolkit peer.

I'm not sure why this is failing exactly, but I have a suspicion that it is due to the undeclared pref being referenced.

Sorry for taking so long on this feedback pass.

::: toolkit/components/console/tests/browser/browser_errorConsoleContent.js
@@ +5,5 @@
> + *
> + * Contributor(s):
> + *   Rob Campbell <rcampbell@mozilla.com>
> + *
> + * ***** END LICENSE BLOCK ***** */

The license block should be formatted the same as this one and should drop the contributor list, http://mxr.mozilla.org/mozilla-central/source/browser/base/content/test/newtab/browser_newtab_bug721442.js#1

@@ +26,5 @@
> +  waitForExplicitFinish();
> +  gBrowser.selectedTab = gBrowser.addTab();
> +  content.location = TEST_URI;
> +  let tab = gBrowser.selectedTab;
> +  browser = gBrowser.getBrowserForTab(tab);

browser = gBrowser.selectedBrowser;

@@ +43,5 @@
> +  browser.addEventListener("load", onLoad, true);
> +}
> +
> +function getErrorConsoleContentPref() {
> +  return Services.prefs.getBoolPref("devtools.errorconsole.showContent");

I don't see a pref named devtools.errorconsole.showContent and get this when running the test, 
> TEST-INFO | chrome://mochitests/content/browser/toolkit/components/console/tests/browser/browser_errorConsoleContent.js | Console message: [JavaScript Error: "NS_ERROR_UNEXPECTED: Component returned failure code: 0x8000ffff (NS_ERROR_UNEXPECTED) [nsIPrefBranch.getBoolPref]" {file: "chrome://mochitests/content/browser/toolkit/components/console/tests/browser/browser_errorConsoleContent.js" line: 47}]

@@ +51,5 @@
> +  Services.prefs.setBoolPref("devtools.errorconsole.showContent", aBoolean);
> +}
> +
> +function onLoad(aEvent) {
> +  browser.removeEventListener(aEvent.type, arguments.callee, true);

browser.removeEventListener("load", onLoad, true);

arguments.callee is deprecated (https://developer.mozilla.org/en-US/docs/JavaScript/Reference/Functions_and_function_scope/arguments/callee).

@@ +97,5 @@
> +      if (!nodes)
> +        return false; // no nodes
> +
> +      for (let idx in nodes) {
> +        if (nodes[idx].toString().indexOf(aMsg) != -1)

The above check for |if (!nodes)| isn't needed since the same result will be returned when nodes is empty, and childNodes can't be null here.

for (let node of nodes) {
  if (node.toString().contains(aMsg))
    return true;
}
return false;

::: toolkit/components/console/tests/browser/test-error.html
@@ +11,5 @@
> +      var button = document.getElementsByTagName("button")[0];
> +
> +      button.addEventListener("click", function clicker () {
> +        button.removeEventListener("click", clicker, false);
> +        fooBazBaz.bar();

fooBazBaz isn't defined here. Can you instead just dereference null so the error isn't found until this code is executed? Also, please include a comment to explicitly state that an error here is intended.
Attachment #663056 - Flags: feedback?(jaws) → feedback-
Sorry I totally forgot about this. I actually don't even remember how to run the tests :(
Attached patch wip v2 still doesn't work (obsolete) — Splinter Review
This is an updated version of the previous tests. The chrome test already works, but the browser test doesn't handle tab loads in combination with page loads. Rob you were the original author, can you help me fix this?
Attachment #663056 - Attachment is obsolete: true
Attachment #717345 - Flags: feedback?(rcampbell)
Comment on attachment 717345 [details] [diff] [review]
wip v2 still doesn't work

sorry, Tom. I don't have time to help out with this right now. Maybe Jared can help you out?
Attachment #717345 - Flags: feedback?(rcampbell) → feedback?(jAwS)
Can we find somebody to help me out with this?
(In reply to Tom Schuster [:evilpie] from comment #9)
> Can we find somebody to help me out with this?

Yeah, I'll help you with this. Sorry for the huge delay.
Attached patch PatchSplinter Review
Tom, what do you think of this? Both the browser and chrome tests now pass.
Attachment #726212 - Flags: review?(evilpies)
Attachment #717345 - Attachment is obsolete: true
Attachment #717345 - Flags: feedback?(jAwS)
Attachment #726212 - Flags: review?(evilpies) → feedback?(evilpies)
Attachment #726212 - Flags: review?(neil)
Comment on attachment 726212 [details] [diff] [review]
Patch

Review of attachment 726212 [details] [diff] [review]:
-----------------------------------------------------------------

Seems to do what I wanted it to do. f+

::: toolkit/components/console/tests/chrome/test_errorConsole.js
@@ +69,5 @@
> +            SimpleTest.finish();
> +          }
> +        }
> +      }
> +    }, 1000); /* We need to wait for the console so it actually starts filtering. */

Would be awesome if you could find a better solution than I did. :)
Attachment #726212 - Flags: feedback?(evilpies) → feedback+
(In reply to Tom Schuster [:evilpie] from comment #12)
> Comment on attachment 726212 [details] [diff] [review]
> Patch
> 
> Review of attachment 726212 [details] [diff] [review]:
> -----------------------------------------------------------------
> 
> Seems to do what I wanted it to do. f+
> 
> ::: toolkit/components/console/tests/chrome/test_errorConsole.js
> @@ +69,5 @@
> > +            SimpleTest.finish();
> > +          }
> > +        }
> > +      }
> > +    }, 1000); /* We need to wait for the console so it actually starts filtering. */
> 
> Would be awesome if you could find a better solution than I did. :)

Thanks for catching that. Switching this to the doCommand, executeSoon approach from the other test should allow us to remove the setTimeout. I'll wait for Neil's review before updating the patch.
Review ping. I want to get finally this done, although probably I shouldn't be the assignee anymore.
Attachment #726212 - Flags: feedback?(dtownsend+bugmail)
Attachment #726212 - Flags: feedback?(bmcbride)
Comment on attachment 726212 [details] [diff] [review]
Patch

Seeing if we can kick-start a review here :)
Attachment #726212 - Flags: review?(dtownsend+bugmail)
Attachment #726212 - Flags: review?(bmcbride)
Attachment #726212 - Flags: feedback?(dtownsend+bugmail)
Attachment #726212 - Flags: feedback?(bmcbride)
Comment on attachment 726212 [details] [diff] [review]
Patch

Review of attachment 726212 [details] [diff] [review]:
-----------------------------------------------------------------

Doesn't seem to be any reason for this to be split across two different test files let alone two test suites, combine both the tests into the browser-chrome test.

You should also test that changing the filter correctly updates the list.

::: toolkit/components/console/tests/chrome/test_errorConsole.js
@@ +41,5 @@
> +    consoleFilter.focus()
> +    sendString("important", win);
> +
> +    setTimeout(function() {
> +      var observer = new MutationObserver(subtreeModified);

Seems overkill, can't you just report the errors then check the console lists them? What am I missing here?

@@ +69,5 @@
> +            SimpleTest.finish();
> +          }
> +        }
> +      }
> +    }, 1000); /* We need to wait for the console so it actually starts filtering. */

Why is this needed?
Attachment #726212 - Flags: review?(neil)
Attachment #726212 - Flags: review?(dtownsend+bugmail)
Attachment #726212 - Flags: review?(bmcbride)
Attachment #726212 - Flags: review-
Assignee: evilpies → jaws
Assignee: jaws → nobody
Status: ASSIGNED → NEW
The Error Console has been removed in favor of the Browser Console (see Bug 1278368), and the component is going to be removed.  If this bug is also relevant in the Browser Console, please reopen and move this into Firefox -> Developer Tools: Console.
Status: NEW → RESOLVED
Closed: 8 years ago
Resolution: --- → WONTFIX
I am mass-reopening and re-componenting every single one of the Toolkit:Error Console bugs that appear to have been closed without anyone even *glancing* at whether they were relevant to the Browser Console.

If you want to close a whole bunch of old bugs -- FOR ANY REASON -- it is YOUR RESPONSIBILITY to check EVERY SINGLE ONE OF THEM and make sure they are no longer valid.  Do not push that work onto the bug reporters.

(It's okay to close bugs that haven't been touched in years when they don't have enough information for you to figure out whether the problem is still relevant to the current software - the reporter probably isn't coming back to clarify.  But that is the ONLY situation where it is okay.)

(I'm going to have to do this in two steps because of the way the "change several bugs at once" form works.  Apologies for the extra bugspam.)
Status: RESOLVED → REOPENED
Component: Error Console → Developer Tools: Console
Product: Toolkit → Firefox
Resolution: WONTFIX → ---
Version: 16 Branch → Trunk
Doesn't translate to browser console, so resolving
Status: REOPENED → RESOLVED
Closed: 8 years ago8 years ago
Component: Developer Tools: Console → Error Console
Product: Firefox → Toolkit
Resolution: --- → WONTFIX
Product: Toolkit → Toolkit Graveyard
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: