From f603468239a45fb2fd2ec8a272d5a619763b376c Mon Sep 17 00:00:00 2001 From: Jan Odvarko Date: Thu, 1 Mar 2018 10:48:41 +0100 Subject: [PATCH] Bug 1419350 - Update tests; r=ochameau MozReview-Commit-ID: ArLb7ItI9hT --HG-- extra : rebase_source : b8ccd200f913ffcd93d3b9bb44b77c9555654572 --- .../tests/devtools/addon/content/damp.js | 50 ++++++++++++++----- .../panels-in-background.html | 30 +++++++++++ .../sjs_simple-test-server.sjs | 7 +++ 3 files changed, 74 insertions(+), 13 deletions(-) create mode 100644 testing/talos/talos/tests/devtools/addon/content/pages/custom/panels-in-background/panels-in-background.html create mode 100644 testing/talos/talos/tests/devtools/addon/content/pages/custom/panels-in-background/sjs_simple-test-server.sjs diff --git a/testing/talos/talos/tests/devtools/addon/content/damp.js b/testing/talos/talos/tests/devtools/addon/content/damp.js index 7d0beef1b67b..a929d02efd60 100644 --- a/testing/talos/talos/tests/devtools/addon/content/damp.js +++ b/testing/talos/talos/tests/devtools/addon/content/damp.js @@ -23,9 +23,12 @@ XPCOMUtils.defineLazyGetter(this, "TargetFactory", function() { const webserver = Services.prefs.getCharPref("addon.test.damp.webserver"); -const SIMPLE_URL = webserver + "/tests/devtools/addon/content/pages/simple.html"; +const PAGES_BASE_URL = webserver + "/tests/devtools/addon/content/pages/"; +const SIMPLE_URL = PAGES_BASE_URL + "simple.html"; const COMPLICATED_URL = webserver + "/tests/tp5n/bild.de/www.bild.de/index.html"; -const CUSTOM_URL = webserver + "/tests/devtools/addon/content/pages/custom/$TOOL/index.html"; +const CUSTOM_URL = PAGES_BASE_URL + "custom/$TOOL/index.html"; +const PANELS_IN_BACKGROUND = PAGES_BASE_URL + + "custom/panels-in-background/panels-in-background.html"; // Record allocation count in new subtests if DEBUG_DEVTOOLS_ALLOCATIONS is set to // "normal". Print allocation sites to stdout if DEBUG_DEVTOOLS_ALLOCATIONS is set to @@ -711,27 +714,48 @@ async _consoleOpenWithCachedMessagesTest() { }, async _panelsInBackgroundReload() { - let url = "data:text/html;charset=UTF-8," + encodeURIComponent(` - - `); - await this.testSetup(url); - let toolbox = await this.openToolbox("webconsole"); + await this.testSetup(PANELS_IN_BACKGROUND); - // Select the options panel to make the console be in background. + // Make sure the Console and Network panels are initialized + let toolbox = await this.openToolbox("webconsole"); + let monitor = await toolbox.selectTool("netmonitor"); + + // Select the options panel to make both the Console and Network + // panel be in background. // Options panel should not do anything on page reload. await toolbox.selectTool("options"); + // Reload the page and wait for all HTTP requests + // to finish (1 doc + 600 XHRs). + let payloadReady = this.waitForPayload(601, monitor.panelWin); await this.reloadPageAndLog("panelsInBackground", toolbox); + await payloadReady; + // Clean up await this.closeToolbox(); await this.testTeardown(); }, + waitForPayload(count, panelWin) { + return new Promise(resolve => { + let payloadReady = 0; + + function onPayloadReady(_, id) { + payloadReady++; + maybeResolve(); + } + + function maybeResolve() { + if (payloadReady >= count) { + panelWin.off(EVENTS.PAYLOAD_READY, onPayloadReady); + resolve(); + } + } + + panelWin.on(EVENTS.PAYLOAD_READY, onPayloadReady); + }); + }, + async reloadInspectorAndLog(label, toolbox) { let onReload = async function() { let inspector = toolbox.getPanel("inspector"); diff --git a/testing/talos/talos/tests/devtools/addon/content/pages/custom/panels-in-background/panels-in-background.html b/testing/talos/talos/tests/devtools/addon/content/pages/custom/panels-in-background/panels-in-background.html new file mode 100644 index 000000000000..d902cb400110 --- /dev/null +++ b/testing/talos/talos/tests/devtools/addon/content/pages/custom/panels-in-background/panels-in-background.html @@ -0,0 +1,30 @@ + + + + + + Custom page for panels running in background + + + + + diff --git a/testing/talos/talos/tests/devtools/addon/content/pages/custom/panels-in-background/sjs_simple-test-server.sjs b/testing/talos/talos/tests/devtools/addon/content/pages/custom/panels-in-background/sjs_simple-test-server.sjs new file mode 100644 index 000000000000..55dc7c2d26cb --- /dev/null +++ b/testing/talos/talos/tests/devtools/addon/content/pages/custom/panels-in-background/sjs_simple-test-server.sjs @@ -0,0 +1,7 @@ +/* Any copyright is dedicated to the Public Domain. + http://creativecommons.org/publicdomain/zero/1.0/ */ + +function handleRequest(request, response) { + response.setHeader("Content-Type", "text/plain; charset=utf-8", false); + response.write("Hello world!"); +}