summaryrefslogtreecommitdiffstats
path: root/remote/cdp/test/browser/io
diff options
context:
space:
mode:
Diffstat (limited to 'remote/cdp/test/browser/io')
-rw-r--r--remote/cdp/test/browser/io/browser.toml23
-rw-r--r--remote/cdp/test/browser/io/browser_close.js38
-rw-r--r--remote/cdp/test/browser/io/browser_read.js146
-rw-r--r--remote/cdp/test/browser/io/head.js20
4 files changed, 227 insertions, 0 deletions
diff --git a/remote/cdp/test/browser/io/browser.toml b/remote/cdp/test/browser/io/browser.toml
new file mode 100644
index 0000000000..5b43f8b9fa
--- /dev/null
+++ b/remote/cdp/test/browser/io/browser.toml
@@ -0,0 +1,23 @@
+[DEFAULT]
+tags = "cdp"
+subsuite = "remote"
+args = [
+ "--remote-debugging-port",
+ "--remote-allow-origins=null",
+]
+prefs = [ # Bug 1600054: Make CDP Fission compatible
+ "fission.bfcacheInParent=false",
+ "fission.webContentIsolationStrategy=0",
+]
+skip-if = [
+ "display == 'wayland'" # Bug 1861933: Timestamp unreliable due to worker setup
+]
+support-files = [
+ "!/remote/cdp/test/browser/chrome-remote-interface.js",
+ "!/remote/cdp/test/browser/head.js",
+ "head.js",
+]
+
+["browser_close.js"]
+
+["browser_read.js"]
diff --git a/remote/cdp/test/browser/io/browser_close.js b/remote/cdp/test/browser/io/browser_close.js
new file mode 100644
index 0000000000..37a10b4963
--- /dev/null
+++ b/remote/cdp/test/browser/io/browser_close.js
@@ -0,0 +1,38 @@
+/* Any copyright is dedicated to the Public Domain.
+ * http://creativecommons.org/publicdomain/zero/1.0/ */
+
+"use strict";
+
+add_task(async function fileRemovedAfterClose({ client }) {
+ const { IO } = client;
+ const contents = "Lorem ipsum";
+ const { handle, stream } = await registerFileStream(contents);
+
+ await IO.close({ handle });
+ ok(
+ !(await IOUtils.exists(stream.path)),
+ "Discarded the temporary backing storage"
+ );
+});
+
+add_task(async function unknownHandle({ client }) {
+ const { IO } = client;
+ const handle = "1000000";
+
+ await Assert.rejects(
+ IO.close({ handle }),
+ err => err.message.includes(`Invalid stream handle`),
+ "Error contains expected message"
+ );
+});
+
+add_task(async function invalidHandleTypes({ client }) {
+ const { IO } = client;
+ for (const handle of [null, true, 1, [], {}]) {
+ await Assert.rejects(
+ IO.close({ handle }),
+ err => err.message.includes(`handle: string value expected`),
+ "Error contains expected message"
+ );
+ }
+});
diff --git a/remote/cdp/test/browser/io/browser_read.js b/remote/cdp/test/browser/io/browser_read.js
new file mode 100644
index 0000000000..4af05e4ba2
--- /dev/null
+++ b/remote/cdp/test/browser/io/browser_read.js
@@ -0,0 +1,146 @@
+/* Any copyright is dedicated to the Public Domain.
+ * http://creativecommons.org/publicdomain/zero/1.0/ */
+
+"use strict";
+
+add_task(async function seekByOffsets({ client }) {
+ const { IO } = client;
+ const contents = "Lorem ipsum";
+ const { handle } = await registerFileStream(contents);
+
+ for (const offset of [0, 5, 10, 100, 0, -1]) {
+ const result = await IO.read({ handle, offset });
+ ok(result.base64Encoded, `Data for offset ${offset} is base64 encoded`);
+ ok(result.eof, `All data has been read for offset ${offset}`);
+ is(
+ atob(result.data),
+ contents.substring(offset >= 0 ? offset : 0),
+ `Found expected data for offset ${offset}`
+ );
+ }
+});
+
+add_task(async function remembersOffsetAfterRead({ client }) {
+ const { IO } = client;
+ const contents = "Lorem ipsum";
+ const { handle } = await registerFileStream(contents);
+
+ let expectedOffset = 0;
+ const size = 3;
+ do {
+ const result = await IO.read({ handle, size });
+ is(
+ atob(result.data),
+ contents.substring(expectedOffset, expectedOffset + size),
+ `Found expected data for expectedOffset ${expectedOffset}`
+ );
+ ok(
+ result.base64Encoded,
+ `Data up to expected offset ${expectedOffset} is base64 encoded`
+ );
+
+ is(
+ result.eof,
+ expectedOffset + size >= contents.length,
+ `All data has been read up to expected offset ${expectedOffset}`
+ );
+
+ expectedOffset = Math.min(expectedOffset + size, contents.length);
+ } while (expectedOffset < contents.length);
+});
+
+add_task(async function readBySize({ client }) {
+ const { IO } = client;
+ const contents = "Lorem ipsum";
+ const { handle } = await registerFileStream(contents);
+
+ for (const size of [0, 5, 10, 100, 0, -1]) {
+ const result = await IO.read({ handle, offset: 0, size });
+ ok(result.base64Encoded, `Data for size ${size} is base64 encoded`);
+ is(
+ result.eof,
+ size >= contents.length,
+ `All data has been read for size ${size}`
+ );
+ is(
+ atob(result.data),
+ contents.substring(0, size),
+ `Found expected data for size ${size}`
+ );
+ }
+});
+
+add_task(async function readAfterClose({ client }) {
+ const { IO } = client;
+ const contents = "Lorem ipsum";
+
+ // If we omit remove: false, then by the time the registered cleanup function
+ // runs we will have deleted our temp file (in the following call to IO.close)
+ // *but* another test will have created a file with the same name (due to the
+ // way IOUtils.createUniqueFile works). That file's stream will not be closed
+ // and so we won't be able to delete it, resulting in an exception and
+ // therefore a test failure.
+ const { handle, stream } = await registerFileStream(contents, {
+ remove: false,
+ });
+
+ await IO.close({ handle });
+
+ ok(!(await IOUtils.exists(stream.path)), "File should no longer exist");
+
+ await Assert.rejects(
+ IO.read({ handle }),
+ err => err.message.includes(`Invalid stream handle`),
+ "Error contains expected message"
+ );
+});
+
+add_task(async function unknownHandle({ client }) {
+ const { IO } = client;
+ const handle = "1000000";
+
+ await Assert.rejects(
+ IO.read({ handle }),
+ err => err.message.includes(`Invalid stream handle`),
+ "Error contains expected message"
+ );
+});
+
+add_task(async function invalidHandleTypes({ client }) {
+ const { IO } = client;
+ for (const handle of [null, true, 1, [], {}]) {
+ await Assert.rejects(
+ IO.read({ handle }),
+ err => err.message.includes(`handle: string value expected`),
+ "Error contains expected message"
+ );
+ }
+});
+
+add_task(async function invalidOffsetTypes({ client }) {
+ const { IO } = client;
+ const contents = "Lorem ipsum";
+ const { handle } = await registerFileStream(contents);
+
+ for (const offset of [null, true, "1", [], {}]) {
+ await Assert.rejects(
+ IO.read({ handle, offset }),
+ err => err.message.includes(`offset: integer value expected`),
+ "Error contains expected message"
+ );
+ }
+});
+
+add_task(async function invalidSizeTypes({ client }) {
+ const { IO } = client;
+ const contents = "Lorem ipsum";
+ const { handle } = await registerFileStream(contents);
+
+ for (const size of [null, true, "1", [], {}]) {
+ await Assert.rejects(
+ IO.read({ handle, size }),
+ err => err.message.includes(`size: integer value expected`),
+ "Error contains expected message"
+ );
+ }
+});
diff --git a/remote/cdp/test/browser/io/head.js b/remote/cdp/test/browser/io/head.js
new file mode 100644
index 0000000000..4c6a67178e
--- /dev/null
+++ b/remote/cdp/test/browser/io/head.js
@@ -0,0 +1,20 @@
+/* Any copyright is dedicated to the Public Domain.
+ * http://creativecommons.org/publicdomain/zero/1.0/ */
+
+"use strict";
+
+Services.scriptloader.loadSubScript(
+ "chrome://mochitests/content/browser/remote/cdp/test/browser/head.js",
+ this
+);
+
+const { streamRegistry } = ChromeUtils.importESModule(
+ "chrome://remote/content/cdp/domains/parent/IO.sys.mjs"
+);
+
+async function registerFileStream(contents, options) {
+ const stream = await createFileStream(contents, options);
+ const handle = streamRegistry.add(stream);
+
+ return { handle, stream };
+}