forked from mirrors/gecko-dev
MozReview-Commit-ID: IMu1sJLxQYy --HG-- extra : rebase_source : aa5a6f1a67ad0d4d83bcb0308d3dd6fe0de0ee0f
31 lines
937 B
JavaScript
31 lines
937 B
JavaScript
/* 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(function* () {
|
|
let { tab, monitor } = yield initNetMonitor(SEND_BEACON_URL);
|
|
let { RequestsMenu } = monitor.panelWin.NetMonitorView;
|
|
|
|
RequestsMenu.lazyUpdate = false;
|
|
|
|
is(RequestsMenu.itemCount, 0, "The requests menu should be empty.");
|
|
|
|
let wait = waitForNetworkEvents(monitor, 1);
|
|
yield ContentTask.spawn(tab.linkedBrowser, {}, function* () {
|
|
content.wrappedJSObject.performRequest();
|
|
});
|
|
yield wait;
|
|
|
|
is(RequestsMenu.itemCount, 1, "The beacon should be recorded.");
|
|
let request = RequestsMenu.getItemAtIndex(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.");
|
|
|
|
return teardown(monitor);
|
|
});
|