summaryrefslogtreecommitdiffstats
path: root/devtools/client/netmonitor/test/browser_net_send-beacon.js
diff options
context:
space:
mode:
Diffstat (limited to 'devtools/client/netmonitor/test/browser_net_send-beacon.js')
-rw-r--r--devtools/client/netmonitor/test/browser_net_send-beacon.js44
1 files changed, 44 insertions, 0 deletions
diff --git a/devtools/client/netmonitor/test/browser_net_send-beacon.js b/devtools/client/netmonitor/test/browser_net_send-beacon.js
new file mode 100644
index 0000000000..d47299ca7f
--- /dev/null
+++ b/devtools/client/netmonitor/test/browser_net_send-beacon.js
@@ -0,0 +1,44 @@
+/* Any copyright is dedicated to the Public Domain.
+ http://creativecommons.org/publicdomain/zero/1.0/ */
+
+"use strict";
+
+/**
+ * Tests if beacons are handled correctly.
+ */
+
+add_task(async function () {
+ const { tab, monitor } = await initNetMonitor(SEND_BEACON_URL, {
+ requestCount: 1,
+ });
+ const { store, windowRequire } = monitor.panelWin;
+ const Actions = windowRequire("devtools/client/netmonitor/src/actions/index");
+ const { getSortedRequests } = windowRequire(
+ "devtools/client/netmonitor/src/selectors/index"
+ );
+
+ store.dispatch(Actions.batchEnable(false));
+
+ is(
+ store.getState().requests.requests.length,
+ 0,
+ "The requests menu should be empty."
+ );
+
+ // Execute requests.
+ await performRequests(monitor, tab, 1);
+
+ is(
+ store.getState().requests.requests.length,
+ 1,
+ "The beacon should be recorded."
+ );
+
+ const request = getSortedRequests(store.getState())[0];
+ is(request.method, "POST", "The method is correct.");
+ ok(request.url.endsWith("beacon_request"), "The URL is correct.");
+ is(request.status, "404", "The status is correct.");
+ is(request.blockedReason, 0, "The request is not blocked");
+
+ return teardown(monitor);
+});