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 toggling the details pane works as expected. |
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 | |
michael@0 | 15 | RequestsMenu.lazyUpdate = false; |
michael@0 | 16 | |
michael@0 | 17 | is(document.querySelector("#details-pane-toggle") |
michael@0 | 18 | .hasAttribute("disabled"), true, |
michael@0 | 19 | "The pane toggle button should be disabled when the frontend is opened."); |
michael@0 | 20 | is(document.querySelector("#details-pane-toggle") |
michael@0 | 21 | .hasAttribute("pane-collapsed"), true, |
michael@0 | 22 | "The pane toggle button should indicate that the details pane is " + |
michael@0 | 23 | "collapsed when the frontend is opened."); |
michael@0 | 24 | is(NetMonitorView.detailsPaneHidden, true, |
michael@0 | 25 | "The details pane should be hidden when the frontend is opened."); |
michael@0 | 26 | is(RequestsMenu.selectedItem, null, |
michael@0 | 27 | "There should be no selected item in the requests menu."); |
michael@0 | 28 | |
michael@0 | 29 | aMonitor.panelWin.once(aMonitor.panelWin.EVENTS.NETWORK_EVENT, () => { |
michael@0 | 30 | is(document.querySelector("#details-pane-toggle") |
michael@0 | 31 | .hasAttribute("disabled"), false, |
michael@0 | 32 | "The pane toggle button should be enabled after the first request."); |
michael@0 | 33 | is(document.querySelector("#details-pane-toggle") |
michael@0 | 34 | .hasAttribute("pane-collapsed"), true, |
michael@0 | 35 | "The pane toggle button should still indicate that the details pane is " + |
michael@0 | 36 | "collapsed after the first request."); |
michael@0 | 37 | is(NetMonitorView.detailsPaneHidden, true, |
michael@0 | 38 | "The details pane should still be hidden after the first request."); |
michael@0 | 39 | is(RequestsMenu.selectedItem, null, |
michael@0 | 40 | "There should still be no selected item in the requests menu."); |
michael@0 | 41 | |
michael@0 | 42 | EventUtils.sendMouseEvent({ type: "mousedown" }, |
michael@0 | 43 | document.getElementById("details-pane-toggle")); |
michael@0 | 44 | |
michael@0 | 45 | is(document.querySelector("#details-pane-toggle") |
michael@0 | 46 | .hasAttribute("disabled"), false, |
michael@0 | 47 | "The pane toggle button should still be enabled after being pressed."); |
michael@0 | 48 | is(document.querySelector("#details-pane-toggle") |
michael@0 | 49 | .hasAttribute("pane-collapsed"), false, |
michael@0 | 50 | "The pane toggle button should now indicate that the details pane is " + |
michael@0 | 51 | "not collapsed anymore after being pressed."); |
michael@0 | 52 | is(NetMonitorView.detailsPaneHidden, false, |
michael@0 | 53 | "The details pane should not be hidden after toggle button was pressed."); |
michael@0 | 54 | isnot(RequestsMenu.selectedItem, null, |
michael@0 | 55 | "There should be a selected item in the requests menu."); |
michael@0 | 56 | is(RequestsMenu.selectedIndex, 0, |
michael@0 | 57 | "The first item should be selected in the requests menu."); |
michael@0 | 58 | |
michael@0 | 59 | EventUtils.sendMouseEvent({ type: "mousedown" }, |
michael@0 | 60 | document.getElementById("details-pane-toggle")); |
michael@0 | 61 | |
michael@0 | 62 | is(document.querySelector("#details-pane-toggle") |
michael@0 | 63 | .hasAttribute("disabled"), false, |
michael@0 | 64 | "The pane toggle button should still be enabled after being pressed again."); |
michael@0 | 65 | is(document.querySelector("#details-pane-toggle") |
michael@0 | 66 | .hasAttribute("pane-collapsed"), true, |
michael@0 | 67 | "The pane toggle button should now indicate that the details pane is " + |
michael@0 | 68 | "collapsed after being pressed again."); |
michael@0 | 69 | is(NetMonitorView.detailsPaneHidden, true, |
michael@0 | 70 | "The details pane should now be hidden after the toggle button was pressed again."); |
michael@0 | 71 | is(RequestsMenu.selectedItem, null, |
michael@0 | 72 | "There should now be no selected item in the requests menu."); |
michael@0 | 73 | |
michael@0 | 74 | teardown(aMonitor).then(finish); |
michael@0 | 75 | }); |
michael@0 | 76 | |
michael@0 | 77 | aDebuggee.location.reload(); |
michael@0 | 78 | }); |
michael@0 | 79 | } |