summaryrefslogtreecommitdiffstats
path: root/remote/cdp/test/browser/browser_httpd.js
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 09:22:09 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 09:22:09 +0000
commit43a97878ce14b72f0981164f87f2e35e14151312 (patch)
tree620249daf56c0258faa40cbdcf9cfba06de2a846 /remote/cdp/test/browser/browser_httpd.js
parentInitial commit. (diff)
downloadfirefox-43a97878ce14b72f0981164f87f2e35e14151312.tar.xz
firefox-43a97878ce14b72f0981164f87f2e35e14151312.zip
Adding upstream version 110.0.1.upstream/110.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'remote/cdp/test/browser/browser_httpd.js')
-rw-r--r--remote/cdp/test/browser/browser_httpd.js40
1 files changed, 40 insertions, 0 deletions
diff --git a/remote/cdp/test/browser/browser_httpd.js b/remote/cdp/test/browser/browser_httpd.js
new file mode 100644
index 0000000000..98a0b80183
--- /dev/null
+++ b/remote/cdp/test/browser/browser_httpd.js
@@ -0,0 +1,40 @@
+/* Any copyright is dedicated to the Public Domain.
+ * http://creativecommons.org/publicdomain/zero/1.0/ */
+
+"use strict";
+
+add_task(async function json_version() {
+ const { userAgent } = Cc[
+ "@mozilla.org/network/protocol;1?name=http"
+ ].getService(Ci.nsIHttpProtocolHandler);
+
+ const json = await requestJSON("/version");
+ is(
+ json.Browser,
+ `${Services.appinfo.name}/${Services.appinfo.version}`,
+ "Browser name and version found"
+ );
+ is(json["Protocol-Version"], "1.3", "Protocol version found");
+ is(json["User-Agent"], userAgent, "User agent found");
+ is(json["V8-Version"], "1.0", "V8 version found");
+ is(json["WebKit-Version"], "1.0", "Webkit version found");
+ is(
+ json.webSocketDebuggerUrl,
+ RemoteAgent.cdp.targetList.getMainProcessTarget().wsDebuggerURL,
+ "Websocket URL for main process target found"
+ );
+});
+
+function requestJSON(path) {
+ const url = `http://${RemoteAgent.debuggerAddress}`;
+
+ return new Promise(resolve => {
+ var xhr = new XMLHttpRequest();
+ xhr.open("GET", `${url}/json${path}`);
+ xhr.responseType = "json";
+ xhr.onloadend = () => {
+ resolve(xhr.response);
+ };
+ xhr.send();
+ });
+}