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 very large response contents are just displayed as plain text. |
michael@0 | 6 | */ |
michael@0 | 7 | |
michael@0 | 8 | function test() { |
michael@0 | 9 | initNetMonitor(CUSTOM_GET_URL).then(([aTab, aDebuggee, aMonitor]) => { |
michael@0 | 10 | info("Starting test... "); |
michael@0 | 11 | |
michael@0 | 12 | // This test could potentially be slow because over 100 KB of stuff |
michael@0 | 13 | // is going to be requested and displayed in the source editor. |
michael@0 | 14 | requestLongerTimeout(2); |
michael@0 | 15 | |
michael@0 | 16 | let { document, Editor, NetMonitorView } = aMonitor.panelWin; |
michael@0 | 17 | let { RequestsMenu } = NetMonitorView; |
michael@0 | 18 | |
michael@0 | 19 | RequestsMenu.lazyUpdate = false; |
michael@0 | 20 | |
michael@0 | 21 | waitForNetworkEvents(aMonitor, 1).then(() => { |
michael@0 | 22 | verifyRequestItemTarget(RequestsMenu.getItemAtIndex(0), |
michael@0 | 23 | "GET", CONTENT_TYPE_SJS + "?fmt=html-long", { |
michael@0 | 24 | status: 200, |
michael@0 | 25 | statusText: "OK" |
michael@0 | 26 | }); |
michael@0 | 27 | |
michael@0 | 28 | aMonitor.panelWin.once(aMonitor.panelWin.EVENTS.RESPONSE_BODY_DISPLAYED, () => { |
michael@0 | 29 | NetMonitorView.editor("#response-content-textarea").then((aEditor) => { |
michael@0 | 30 | ok(aEditor.getText().match(/^<p>/), |
michael@0 | 31 | "The text shown in the source editor is incorrect."); |
michael@0 | 32 | is(aEditor.getMode(), Editor.modes.text, |
michael@0 | 33 | "The mode active in the source editor is incorrect."); |
michael@0 | 34 | |
michael@0 | 35 | teardown(aMonitor).then(finish); |
michael@0 | 36 | }); |
michael@0 | 37 | }); |
michael@0 | 38 | |
michael@0 | 39 | EventUtils.sendMouseEvent({ type: "mousedown" }, |
michael@0 | 40 | document.getElementById("details-pane-toggle")); |
michael@0 | 41 | EventUtils.sendMouseEvent({ type: "mousedown" }, |
michael@0 | 42 | document.querySelectorAll("#details-pane tab")[3]); |
michael@0 | 43 | }); |
michael@0 | 44 | |
michael@0 | 45 | aDebuggee.performRequests(1, CONTENT_TYPE_SJS + "?fmt=html-long"); |
michael@0 | 46 | }); |
michael@0 | 47 | |
michael@0 | 48 | // This test uses a lot of memory, so force a GC to help fragmentation. |
michael@0 | 49 | info("Forcing GC after netmonitor test."); |
michael@0 | 50 | Cu.forceGC(); |
michael@0 | 51 | } |