browser/devtools/netmonitor/test/browser_net_aaa_leaktest.js

Thu, 15 Jan 2015 21:03:48 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 21:03:48 +0100
branch
TOR_BUG_9701
changeset 11
deefc01c0e14
permissions
-rw-r--r--

Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)

     1 /* Any copyright is dedicated to the Public Domain.
     2    http://creativecommons.org/publicdomain/zero/1.0/ */
     4 /**
     5  * Tests if the network monitor leaks on initialization and sudden destruction.
     6  * You can also use this initialization format as a template for other tests.
     7  */
     9 function test() {
    10   initNetMonitor(SIMPLE_URL).then(([aTab, aDebuggee, aMonitor]) => {
    11     info("Starting test... ");
    13     let { document, NetMonitorView, NetMonitorController } = aMonitor.panelWin;
    14     let { RequestsMenu, NetworkDetails } = NetMonitorView;
    16     ok(aTab, "Should have a tab available.");
    17     ok(aDebuggee, "Should have a debuggee available.");
    18     ok(aMonitor, "Should have a network monitor pane available.");
    20     ok(document, "Should have a document available.");
    21     ok(NetMonitorView, "Should have a NetMonitorView object available.");
    22     ok(NetMonitorController, "Should have a NetMonitorController object available.");
    23     ok(RequestsMenu, "Should have a RequestsMenu object available.");
    24     ok(NetworkDetails, "Should have a NetworkDetails object available.");
    26     teardown(aMonitor).then(finish);
    27   });
    28 }

mercurial