Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | /* Any copyright is dedicated to the Public Domain. |
michael@0 | 2 | http://creativecommons.org/publicdomain/zero/1.0/ */ |
michael@0 | 3 | |
michael@0 | 4 | /** |
michael@0 | 5 | * Tests if the clear button empties the request menu. |
michael@0 | 6 | */ |
michael@0 | 7 | |
michael@0 | 8 | function test() { |
michael@0 | 9 | initNetMonitor(SIMPLE_URL).then(([aTab, aDebuggee, aMonitor]) => { |
michael@0 | 10 | info("Starting test... "); |
michael@0 | 11 | |
michael@0 | 12 | let { document, $, NetMonitorView } = aMonitor.panelWin; |
michael@0 | 13 | let { RequestsMenu } = NetMonitorView; |
michael@0 | 14 | let detailsPane = $("#details-pane"); |
michael@0 | 15 | let detailsPaneToggleButton = $('#details-pane-toggle'); |
michael@0 | 16 | let clearButton = $('#requests-menu-clear-button'); |
michael@0 | 17 | |
michael@0 | 18 | RequestsMenu.lazyUpdate = false; |
michael@0 | 19 | |
michael@0 | 20 | // Make sure we start in a sane state |
michael@0 | 21 | assertNoRequestState(RequestsMenu, detailsPaneToggleButton); |
michael@0 | 22 | |
michael@0 | 23 | // Load one request and assert it shows up in the lis |
michael@0 | 24 | aMonitor.panelWin.once(aMonitor.panelWin.EVENTS.NETWORK_EVENT, () => { |
michael@0 | 25 | assertSingleRequestState(RequestsMenu, detailsPaneToggleButton); |
michael@0 | 26 | |
michael@0 | 27 | // Click clear and make sure the requests are gone |
michael@0 | 28 | EventUtils.sendMouseEvent({ type: "click" }, clearButton); |
michael@0 | 29 | assertNoRequestState(RequestsMenu, detailsPaneToggleButton); |
michael@0 | 30 | |
michael@0 | 31 | // Load a second request and make sure they still show up |
michael@0 | 32 | aMonitor.panelWin.once(aMonitor.panelWin.EVENTS.NETWORK_EVENT, () => { |
michael@0 | 33 | assertSingleRequestState(RequestsMenu, detailsPaneToggleButton); |
michael@0 | 34 | |
michael@0 | 35 | // Make sure we can now open the details pane |
michael@0 | 36 | NetMonitorView.toggleDetailsPane({ visible: true, animated: false }); |
michael@0 | 37 | ok(!detailsPane.hasAttribute("pane-collapsed") && |
michael@0 | 38 | !detailsPaneToggleButton.hasAttribute("pane-collapsed"), |
michael@0 | 39 | "The details pane should be visible after clicking the toggle button."); |
michael@0 | 40 | |
michael@0 | 41 | // Click clear and make sure the details pane closes |
michael@0 | 42 | EventUtils.sendMouseEvent({ type: "click" }, clearButton); |
michael@0 | 43 | assertNoRequestState(RequestsMenu, detailsPaneToggleButton); |
michael@0 | 44 | ok(detailsPane.hasAttribute("pane-collapsed") && |
michael@0 | 45 | detailsPaneToggleButton.hasAttribute("pane-collapsed"), |
michael@0 | 46 | "The details pane should not be visible clicking 'clear'."); |
michael@0 | 47 | |
michael@0 | 48 | teardown(aMonitor).then(finish); |
michael@0 | 49 | }); |
michael@0 | 50 | |
michael@0 | 51 | aDebuggee.location.reload(); |
michael@0 | 52 | }); |
michael@0 | 53 | |
michael@0 | 54 | aDebuggee.location.reload(); |
michael@0 | 55 | }); |
michael@0 | 56 | |
michael@0 | 57 | /** |
michael@0 | 58 | * Asserts the state of the network monitor when one request has loaded |
michael@0 | 59 | */ |
michael@0 | 60 | function assertSingleRequestState(RequestsMenu, detailsPaneToggleButton) { |
michael@0 | 61 | is(RequestsMenu.itemCount, 1, |
michael@0 | 62 | "The request menu should have one item at this point."); |
michael@0 | 63 | is(detailsPaneToggleButton.hasAttribute("disabled"), false, |
michael@0 | 64 | "The pane toggle button should be enabled after a request is made."); |
michael@0 | 65 | } |
michael@0 | 66 | |
michael@0 | 67 | /** |
michael@0 | 68 | * Asserts the state of the network monitor when no requests have loaded |
michael@0 | 69 | */ |
michael@0 | 70 | function assertNoRequestState(RequestsMenu, detailsPaneToggleButton) { |
michael@0 | 71 | is(RequestsMenu.itemCount, 0, |
michael@0 | 72 | "The request menu should be empty at this point."); |
michael@0 | 73 | is(detailsPaneToggleButton.hasAttribute("disabled"), true, |
michael@0 | 74 | "The pane toggle button should be disabled when the request menu is cleared."); |
michael@0 | 75 | } |
michael@0 | 76 | } |